diff --git a/.gitignore b/.gitignore index 9b351cb..86afd9e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,5 @@ -BoweiAgent.log +*.log __pycache__/* -.vscode/launch.json -src/__pycache__/* -.cursor/rules/use.mdc -test_runcode.log -BoweiAgent1.log +.vscode/* +.cursor/* +logs/* diff --git a/config.yaml b/config.yaml index d4298ba..1ca24d1 100644 --- a/config.yaml +++ b/config.yaml @@ -8,8 +8,21 @@ neo4j: business_object_structure_path: ./data/business_object_structure.md bowei_api_docs_path: ./data/bowei_api_docs.md +max_retries: 0 openai: + api_keys: + - sk-gycpzfjfxldpmqmqvrtgtvtpusnsrscowhscqfbppmjdlzoi + - sk-lhvfliriyohnaspzuoddgulmdiovpbjcdmfdfdvghapprfru + - sk-tzxcxzberpdpvszhjfyikepjlgslbtgssypxpmwllgithtwz + - sk-ybhbyjkzdydsllxredzntqdyrderxighdieiayudcubvhxsw + - sk-xtjzktvgrkzikkvetzygzozfyjxzgasednowyjqjeudfqiha + - sk-ufjdohciujtmpfwrrqhiocufexdzqpiotnjwzhbumcpvkpcw + - sk-nvnuzkdgxwzvibtuymwhatfajnerekgsbieqmqadjaqyhkob + - sk-erdnqkazveyiaojrpojawtwlxpnrikhedurlphmyviaixyrg + - sk-xhddshwxrhejbzitozgieightaecdeozqzdgypmedzdydthr + - sk-czilnjaxqwicwoyvfaxgzvqcjhmdzpwvzhbxvnqnvaeocojk + api_key: sk-xlrnesfcuwrpevdwbuhthivpygwyzwbxxsyvhzzwrkpzjduk api_base: https://api.siliconflow.cn/v1 #api_version: "" # 可选,某些API版本需要指定 @@ -20,6 +33,18 @@ openai: #model_name: deepseek-ai/DeepSeek-V3 openai_coder: + api_keys: + - sk-gycpzfjfxldpmqmqvrtgtvtpusnsrscowhscqfbppmjdlzoi + - sk-lhvfliriyohnaspzuoddgulmdiovpbjcdmfdfdvghapprfru + - sk-tzxcxzberpdpvszhjfyikepjlgslbtgssypxpmwllgithtwz + - sk-ybhbyjkzdydsllxredzntqdyrderxighdieiayudcubvhxsw + - sk-xtjzktvgrkzikkvetzygzozfyjxzgasednowyjqjeudfqiha + - sk-ufjdohciujtmpfwrrqhiocufexdzqpiotnjwzhbumcpvkpcw + - sk-nvnuzkdgxwzvibtuymwhatfajnerekgsbieqmqadjaqyhkob + - sk-erdnqkazveyiaojrpojawtwlxpnrikhedurlphmyviaixyrg + - sk-xhddshwxrhejbzitozgieightaecdeozqzdgypmedzdydthr + - sk-czilnjaxqwicwoyvfaxgzvqcjhmdzpwvzhbxvnqnvaeocojk + api_key: sk-xlrnesfcuwrpevdwbuhthivpygwyzwbxxsyvhzzwrkpzjduk api_base: https://api.siliconflow.cn/v1 #api_version: "" # 可选,某些API版本需要指定 diff --git a/project.py b/data/bowei_api_docs - 副本.md similarity index 75% rename from project.py rename to data/bowei_api_docs - 副本.md index 40ba9ba..22c6202 100644 --- a/project.py +++ b/data/bowei_api_docs - 副本.md @@ -17,6 +17,7 @@ class ProjectToolkit(ABC): self.project_division_set = ProjectDivisionItem() # 项目划分集对象 # 项目划分查询方法 + @abstractmethod def get_division_by_name(self, name): """ @@ -37,7 +38,6 @@ class ProjectToolkit(ABC): """ pass - # 项目划分查询方法 @abstractmethod def get_division_item_by_path(self, path): """ @@ -58,7 +58,6 @@ class ProjectToolkit(ABC): """ pass - # 项目划分查询方法 @abstractmethod def get_division_node_by_parent_and_name(self, parent_path, partial_name): """ @@ -95,7 +94,6 @@ class ProjectToolkit(ABC): """ pass - # 工程量查询方法 @abstractmethod def get_quantities_node_by_parent_and_code(self, parent_path, quantity_type=None, code=None): """ @@ -115,7 +113,6 @@ class ProjectToolkit(ABC): """ pass - # 工程量查询方法 @abstractmethod def get_quantities_node_by_parent_and_name(self, parent_path, partial_name, quantity_type=None): """ @@ -155,14 +152,13 @@ class ProjectToolkit(ABC): pass @abstractmethod - def get_material_equipment_by_parent_and_code(self, parent_path, code): + def get_material_equipment_by_parent_and_name(self, parent_path, partial_name): """ 通过父节点路径和模糊名称获取材机对象 Args: parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 - - code (str): 目标节点编码 + partial_name (str): 目标节点的模糊或不完整名称 Returns: Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 @@ -193,7 +189,6 @@ class ProjectToolkit(ABC): """ pass - # 取费查询方法 @abstractmethod def get_fee_template_by_parent_and_name(self, parent_path, partial_name): """ @@ -201,7 +196,7 @@ class ProjectToolkit(ABC): Args: parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 - node_name (str): 目标节点的名称 + node_name (str): 目标节点的名称,例如:直接费 Returns: Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 @@ -239,7 +234,6 @@ class ProjectToolkit(ABC): """ pass - # 费用表查询方法 @abstractmethod def get_fee_schedule_on_other_expense_table(self, table_name, fee_name, fee): """ @@ -263,7 +257,6 @@ class ProjectToolkit(ABC): """ pass - # 费用表查询方法 @abstractmethod def get_fee_schedule_on_land_acquisition_fee_table_table(self, table_name, fee_name, fee): """ @@ -287,7 +280,6 @@ class ProjectToolkit(ABC): """ pass - # 费用表查询方法 @abstractmethod def get_fee_schedule_on_installation_price_difference_table(self, table_name, fee_name, fee): """ @@ -311,11 +303,10 @@ class ProjectToolkit(ABC): """ pass - # 费用表查询方法 @abstractmethod def get_fee_schedule_on_Engineering_Cost_table(self, table_name, fee_name, fee): """ - 在工程费用表中查找费用值 + 在工程费用表中查找费用 Args: table_name (str): 费用表名称 @@ -335,147 +326,6 @@ class ProjectToolkit(ABC): """ pass - # 工程属性查询方法 - @abstractmethod - def get_project_property(self, property_name): - """ - 通过属性名称获取工程属性 - - Args: - property_name (str): 属性名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - pass - - # 项目划分节点下查找费用预览中的费用 - @abstractmethod - def get_fee_table_by_project_division(self, project_division_path, fee_name): - """ - 通过项目划分名称和费用名称在费用预览中查找费用 - - Args: - project_division_path (str): 项目划分节点路径 - fee_name (str): 费用名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - pass - - # 清单查找取费表 - @abstractmethod - def get_fee_table_by_list(self, parent_path, list_code, list_unit, fee_name): - """ - 通过清单名称和取费名称查找费用 - - Args: - parent_path (str): 父级路径 - list_code (str): 清单编号 - list_unit (str): 清单单位 - fee_name (str): 取费名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - pass - - # 定额节点查找合价 - @abstractmethod - def get_fee_table_by_quoto_code(self, parent_path, quantity_type, code, fee_name): - """ - 通过父级路径、工程量类型、定额编码和取费名称查找费用 - - Args: - parent_path (str): 父级路径 - quantity_type (str): 工程量类型 - code (str): 定额编码 - fee_name (str): 取费名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - pass - - # 工程量节点查找合价 - @abstractmethod - def get_fee_table_by_quantities_name(self, parent_path, quantity_type, quantity_name, fee_name): - """ - 通过父级路径、工程量类型、工程量名称和取费名称查找费用 - - Args: - parent_path (str): 父级路径 - quantity_type (str): 工程量类型 - quantity_name (str): 工程量名称 - fee_name (str): 取费名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - pass - - # 材机节点查找市场价 - @abstractmethod - def get_fee_by_material_equipment_code(self, parent_path, material_equipment_code, fee_name): - """ - 通过父级路径、材机编码和取费名称查找费用 - - Args: - parent_path (str): 父级路径 - material_equipment_code (str): 材机编码 - fee_name (str): 取费名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - pass - - # 查找清单节点 - @abstractmethod - def get_fee_table_by_list_name(self, parent_path, list_code, unit): - """ - 通过父级路径、清单编号和单位查找清单 - - - Args: - parent_path (str): 父级路径 - list_code (str): 清单编号 - unit (str): 单位 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - pass - class ProjectDivisionSet: """ @@ -545,28 +395,6 @@ class ProjectQuantity: self.cost_set = None # xsd:CostSet -class CostItem: - """ - 费用预览集 - 描述: 代表一个费用预览集,通常包含多个费用预览项 - """ - - def __init__(self): - self.GUID = None # xsd:string - self.name = None # xsd:string - - -class CostSet: - """ - 费用预览项 - 描述: 代表一个费用预览 - """ - - def __init__(self): - self.cost = None # xsd:string - self.name = None # xsd:string - - class Ration(ProjectQuantity): """ 定额 @@ -749,43 +577,3 @@ class Fee: self.施工费 = None # xsd:string (可选) self.单位投资 = None # xsd:string (可选) - -class ProjectBuilder: - # 存储注册的工具类 - _registry = None - _config = {} - - """项目工具工厂类""" - - def __init__(self): - pass - - @classmethod - def register(cls, toolkit_class: type, config: dict): - """ - 注册工具类到工厂 - - 参数: - toolkit_class: 继承自ProjectToolkit的具体工具类 - """ - if not issubclass(toolkit_class, ProjectToolkit): - raise TypeError(f"{toolkit_class.__name__} 必须继承自 ProjectToolkit") - - _registry = toolkit_class cls._config = config - cls._registry = toolkit_class - - @classmethod - def build(cls) -> ProjectToolkit: - """ - 创建工具实例 - - 参数: - - 返回: - 实例化的工具对象 - """ - if cls._registry is None: - raise KeyError(f"未注册的类,请先注册类") - - - return cls._registry(cls._config) diff --git a/data/bowei_api_docs.md b/data/bowei_api_docs.md index 54f02e2..66eaaf0 100644 --- a/data/bowei_api_docs.md +++ b/data/bowei_api_docs.md @@ -24,17 +24,14 @@ class ProjectToolkit(ABC): 通过名称获取项目划分对象 Args: - path (str): 项目划分节点的名称 + name_part (str): 项目划分节点名称 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回的项目划分对象数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表,如果未找到节点,则包含父节点下所有ProjectDivisionItem节点 - - Note: - 当路径为空字符串时,会返回None + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (List[Dict[str, Any]]): 成功时返回的数据列表,失败时为空列表 """ pass @@ -47,14 +44,11 @@ class ProjectToolkit(ABC): path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回的项目划分对象数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表,如果未找到节点,则包含父节点下所有ProjectDivisionItem节点 - - Note: - 当路径为空字符串时,会返回None + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Dict[str, Any]): 成功时返回的项目划分对象数据,失败时为空字典 """ pass @@ -68,11 +62,11 @@ class ProjectToolkit(ABC): partial_name (str): 目标节点的模糊或不完整名称 Returns: - Tuple[str, List[Dict[str, Any]], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (List[Dict[str, Any]]): 成功时返回的数据列表 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (List[Dict[str, Any]]): 成功时返回的数据列表,失败时为空列表 """ pass @@ -86,11 +80,11 @@ class ProjectToolkit(ABC): paths_str (str): 以'/'分隔的多级节点路径 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: - - status: 'success'或'error' - - data: 成功时返回的节点数据字典,失败时为{} - - error: 错误信息,成功时为'' - - helper_info: 辅助信息列表(当目标节点不存在时返回父节点下的所有ProjectQuantity节点名称) + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Dict[str, Any]): 成功时返回的节点数据字典,失败时为空字典 {} """ pass @@ -105,11 +99,11 @@ class ProjectToolkit(ABC): code (str): 工程量编码,以'/'分隔的多个编码 Returns: - Tuple[str, List[Dict[str, Any]], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (List[Dict[str, Any]]): 成功时返回的数据列表 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[List[Dict[str, Any]], Dict]): 成功时返回的数据列表或字典,失败时为空列表 [] """ pass @@ -121,14 +115,14 @@ class ProjectToolkit(ABC): Args: parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 partial_name (str): 目标节点的模糊或不完整名称 - quantity_type (str): 工程量类型('定额'、'主材'、'设备'或None表示所有类型) + quantity_type (str): 工程量类型('定额'、'主材'、'设备') Returns: - Tuple[str, List[Dict[str, Any]], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (List[Dict[str, Any]]): 成功时返回的数据列表 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[List[Dict[str, Any]], Dict]): 成功时返回的数据列表,失败时为空列表 [] """ pass @@ -142,31 +136,29 @@ class ProjectToolkit(ABC): path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回的节点属性数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 如果未找到目标节点,则包含父节点下所有 MaterialOrEquipment 节点名称 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} """ pass @abstractmethod - def get_material_equipment_by_parent_and_name(self, parent_path, partial_name): + def get_material_equipment_by_parent_and_code(self, parent_path, code): """ - 通过父节点路径和模糊名称获取材机对象 + 通过父节点路径和编码获取材机对象 Args: - parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 - partial_name (str): 目标节点的模糊或不完整名称 + parent_path (str): 父节点的部分路径,以'/'分隔的多级节点路径 + code (str): 目标节点的编码属性值 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回的节点属性数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 如果未找到目标节点,则包含父节点下所有 MaterialOrEquipment 节点名称 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} """ pass @@ -174,39 +166,37 @@ class ProjectToolkit(ABC): @abstractmethod def get_fee_template_by_path(self, paths_str): """ - 通过路径获取取费节点 + 通过路径获取取费表模板节点 Args: path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 + 例如:工程数据/取费表模板/余物清理/线路取费表(余物清理)/直接费 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回的节点属性数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 如果未找到目标节点,则包含父节点下所有 FeeCollection 节点名称 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} """ pass @abstractmethod def get_fee_template_by_parent_and_name(self, parent_path, partial_name): """ - 通过父节点路径和节点名称获取取费节点 + 通过父节点路径和节点名称获取取费表模板节点 Args: parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 + 例如:工程数据/取费表模板/余物清理/线路取费表(余物清理) node_name (str): 目标节点的名称,例如:直接费 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回的节点属性数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 如果未找到父节点,则包含父节点的父节点下所有节点名称 - - 如果未找到目标节点,则包含父节点下所有 FeeCollection 节点名称 - - 否则为空 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} """ pass @@ -222,15 +212,11 @@ class ProjectToolkit(ABC): fee_attribute (str): 费用值属性名 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 第一步失败:返回"工程数据"节点下所有子节点名称 - - 第二步失败:返回费用表节点下所有子节点名称(递归查找) - - 第三步失败:返回费用节点的所有可用属性名称 - - 否则为空 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} """ pass @@ -245,22 +231,18 @@ class ProjectToolkit(ABC): fee_attribute (str): 费用值属性名 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 第一步失败:返回"工程数据"节点下所有子节点名称 - - 第二步失败:返回费用表节点下所有子节点名称(递归查找) - - 第三步失败:返回费用节点的所有可用属性名称 - - 否则为空 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} """ pass @abstractmethod def get_fee_schedule_on_land_acquisition_fee_table_table(self, table_name, fee_name, fee): """ - 在其中:土地征用费表中查找费用 + 在其中:场地征用费用表中查找费用 Args: table_name (str): 费用表名称 @@ -268,22 +250,18 @@ class ProjectToolkit(ABC): fee_attribute (str): 费用值属性名 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 第一步失败:返回"工程数据"节点下所有子节点名称 - - 第二步失败:返回费用表节点下所有子节点名称(递归查找) - - 第三步失败:返回费用节点的所有可用属性名称 - - 否则为空 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} """ pass @abstractmethod def get_fee_schedule_on_installation_price_difference_table(self, table_name, fee_name, fee): """ - 在安装价差表中查找费用 + 在安装价差费用表中查找费用 Args: table_name (str): 费用表名称 @@ -291,15 +269,11 @@ class ProjectToolkit(ABC): fee_attribute (str): 费用值属性名 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 第一步失败:返回"工程数据"节点下所有子节点名称 - - 第二步失败:返回费用表节点下所有子节点名称(递归查找) - - 第三步失败:返回费用节点的所有可用属性名称 - - 否则为空 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} """ pass @@ -314,15 +288,151 @@ class ProjectToolkit(ABC): fee_attribute (str): 费用值属性名 Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 第一步失败:返回"工程数据"节点下所有子节点名称 - - 第二步失败:返回费用表节点下所有子节点名称(递归查找) - - 第三步失败:返回费用节点的所有可用属性名称 - - 否则为空 + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} + """ + pass + + # 工程属性查询方法 + @abstractmethod + def get_project_property(self, property_name): + """ + 通过属性名称获取工程属性 + + Args: + property_name (str): 属性名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 项目划分查找取费表 + @abstractmethod + def get_fee_table_by_project_division(self, project_division_path, fee_name): + """ + 通过项目划分路径和取费名称查找费用 + + Args: + project_division_path (str): 项目划分节点的路径 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 清单查找取费表 + @abstractmethod + def get_fee_table_by_list(self, parent_path, list_code, list_unit, fee_name): + """ + 通过清单名称和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + list_code (str): 清单编号 + list_unit (str): 清单单位 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 定额节点查找合价 + @abstractmethod + def get_fee_table_by_quoto_code(self, parent_path, quantity_type, code, fee_name): + """ + 通过父级路径、工程量类型、定额编码和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + quantity_type (str): 工程量类型 + code (str): 定额编码 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 工程量节点查找合价 + @abstractmethod + def get_fee_table_by_quantities_name(self, parent_path, quantity_type, quantity_name, fee_name): + """ + 通过父级路径、工程量类型、工程量名称和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + quantity_type (str): 工程量类型 + quantity_name (str): 工程量名称 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 材机节点查找市场价 + @abstractmethod + def get_fee_by_material_equipment_code(self, parent_path, material_equipment_code, fee_name): + """ + 通过父级路径、材机编码和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + material_equipment_code (str): 材机编码 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 查找清单节点 + @abstractmethod + def get_fee_table_by_list_name(self, parent_path, list_code, unit): + """ + 通过父级路径、清单编号和单位查找清单 + + Args: + parent_path (str): 父级路径 + list_code (str): 清单编号 + unit (str): 单位 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} """ pass @@ -583,34 +693,36 @@ class ProjectBuilder: _config = {} """项目工具工厂类""" + def __init__(self): pass - + @classmethod def register(cls, toolkit_class: type, config: dict): """ 注册工具类到工厂 - + 参数: toolkit_class: 继承自ProjectToolkit的具体工具类 """ if not issubclass(toolkit_class, ProjectToolkit): raise TypeError(f"{toolkit_class.__name__} 必须继承自 ProjectToolkit") - + cls._config = config cls._registry = toolkit_class - + @classmethod def build(cls) -> ProjectToolkit: """ 创建工具实例 - + 参数: - + 返回: 实例化的工具对象 """ if cls._registry is None: raise KeyError(f"未注册的类,请先注册类") + return cls._registry(cls._config) diff --git a/data/business_object_structure.md b/data/business_object_structure.md index 6b4831b..0e94cfa 100644 --- a/data/business_object_structure.md +++ b/data/business_object_structure.md @@ -1,59 +1,70 @@ EngineeringData(工程) │ ├── ProjectPropertySet(工程属性集) -│ └── ProjectProperty(项目编码、电压等级、主变规模) +│ ├── ProjectProperty(工程属性)[name:项目划分, value: 架空输电线路工程] +│ ├── ProjectProperty(工程属性)[name:电压等级, value: 220] +│ └── ProjectProperty(工程属性)[name:专业类型, value: 送电] │ ├── ProjectDivisionSet(项目划分集) │ │ -│ ├── ProjectDivisionTree(安装) -│ │ ├── ProjectDivisionItem(架空输电线路本体工程)[父节点] -│ │ │ ├── ProjectDivisionItem(基础工程)[叶节点] -│ │ │ │ ├── ProjectQuantity(现浇混凝土)[类型:Quota, 量:1500m³, 定额:GD5-2023-025] -│ │ │ │ └── ProjectQuantity(钢筋)[类型:MainMaterial, 量:950t, 型号:HRB400] -│ │ │ │ -│ │ │ └── ProjectDivisionItem(GIS室)[叶节点] +│ ├── ProjectDivisionTree(项目划分树)[name: 安装] +│ │ ├── ProjectDivisionItem(项目划分)[name: 架空输电线路本体工程] +│ │ │ ├── ProjectDivisionItem(项目划分)[name: 基础工程] +│ │ │ │ ├──ProjectQuantity(工程量)[name: 汽车运输 金具、绝缘子、零星钢材 装卸, 类型: 定额, 数量: 84.486092, 单位: t, 编码: YX1-97] +│ │ │ │ │ └── CostSet(费用预览集) +│ │ │ │ │ ├──CostItem(费用项)[name: 直接工程费_FFZ1, cost: 354010.98] +│ │ │ │ │ ├──CostItem(费用项)[name: 编制年价差_机械价差_JJC, cost: 21869.0211] +│ │ │ │ │ └──CostItem(费用项)[name: 社会保险费_BZHF, cost: 16758.8798] +│ │ │ │ ├── ProjectQuantity(工程量)[name: 商品混凝土(立柱), 类型: 主材, 数量: 39.944, 单位: m³, 编码: SP1004] +│ │ │ │ └── CostSet(费用预览集) +│ │ │ │ ├──CostItem(费用项)[name: 直接工程费_FFZ1, cost: 6843369.393079] +│ │ │ │ ├──CostItem(费用项)[name: 编制年价差_机械价差_JJC, cost: 40402.974077] +│ │ │ │ └──CostItem(费用项)[name: 社会保险费_BZHF, cost: 379304.02941] +│ │ │ │ +│ │ │ └── ProjectDivisionItem(项目划分)[name: GIS室] │ │ │ -│ │ └── ProjectDivisionItem(辅助设施工程)[父节点] -│ │ ├── ProjectDivisionItem(事故油池)[叶节点] -│ │ └── ProjectDivisionItem(防火墙)[叶节点] +│ │ └── ProjectDivisionItem(项目划分)[name: 辅助设施工程] +│ │ ├── ProjectDivisionItem(项目划分)[name: 事故油池] +│ │ └── ProjectDivisionItem(项目划分)[name: 施工道路] │ │ -│ └── ProjectDivisionTree(清理项目安装) -│ ├── ProjectDivisionItem(主变压器系统)[父节点] -│ │ ├── ProjectDivisionItem(本体安装)[叶节点] -│ │ │ └── ProjectQuantity(主变压器)[类型:Equipment, 量:4台, 型号:SZ11-1000MVA] +│ └── ProjectDivisionTree(项目划分树)[name: 清理项目安装] +│ ├── ProjectDivisionItem(项目划分)[name: 安装过程] +│ │ ├── ProjectDivisionItem(项目划分)[name: 本体安装] +│ │ │ └── ProjectQuantity(工程量)[name:锅炉(烟煤), 类型: 设备, 数量:4, 单位: 台] │ │ │ -│ │ └── ProjectDivisionItem(冷却系统)[叶节点] +│ │ └── ProjectDivisionItem(项目划分)[name: 冷却系统] │ │ -│ └── ProjectDivisionItem(配电装置)[父节点] -│ ├── ProjectDivisionItem(500kV GIS)[叶节点] -│ │ └── ProjectQuantity(GIS间隔)[类型:Equipment, 量:8间隔, 单价:580万] +│ └── ProjectDivisionItem(项目划分)[name: 建筑工程] +│ ├── ProjectDivisionItem(项目划分)[name: 辅助工程] +│ │ └── ProjectQuantity(工程量)[name:柴油发电机, 类型: 设备, 数量:1, 单位: 台] │ │ -│ └── ProjectDivisionItem(35kV开关柜)[叶节点] +│ └── ProjectDivisionItem(项目划分)[name: 基础永久性围堰] │ ├── FeeScheduleSet(费用表集) │ │ -│ ├── FeeScheduleItem(工程费用表) -│ │ ├── Fee(直接费)[值:32500万元] -│ │ │ └── Fee(机械费)[值:7850万元] +│ ├── FeeScheduleItem(费用表项)[name: 工程费用表] +│ │ ├── Fee(费用)[name: 架空输电线路本体工程, code: BTGC, 安装费(AZF): 11155128.078755] +│ │ │ └── Fee(费用)[name: 一般线路本体工程, code: XLBT, 安装费(AZF): 11155128.078755] │ │ │ -│ │ └── Fee(措施费)[值:4875万元] -│ │ ├── Fee(安全文明施工费)[费率:3.5%, 值:2800万元] -│ │ └── Fee(夜间施工增加费)[费率:1.2%, 值:2075万元] +│ │ └── Fee(费用)[name: 动态费用, code: DTFY, 安装费(AZF): 0] +│ │ ├── Fee(费用)[name: 建设期贷款利息, code: DKLX, 安装费(AZF): 0] +│ │ └── Fee(费用)[name: 价差预备费, code: JCYBF, 安装费(AZF): 0] │ │ -│ └── FeeScheduleItem(其他费用表) -│ ├── Fee(企业管理费)[费率:5.8%, 值:1885万元] -│ └── Fee(税金)[费率:9%, 值:2925万元] +│ └── FeeScheduleItem(费用表项)[name: 其他费用表] +│ ├── Fee(费用)[name: 工程保险费, code: B6, rate: 100, amount: 0] +│ └── Fee(费用)[name: 招标费, code: B2, rate: 0.28, amount: 31234.358621] │ ├── FeeTableTemplateSet(取费表模板集) │ - ├── FeeTableTemplateItem(建筑取费表) - │ ├── FeeCollection(直接费) - │ │ └── FeeCollection(人工费调整)[系数:1.25] + ├── FeeTableTemplateItem(取费表模板项)[name: 线路取费表] + │ ├── FeeCollection(取费) [name: 设备费, code: SBF, rate: 100] + │ │ └── FeeCollection(取费)[name: 乙供设备不含税价, code: SBY, base: 乙供设备费不含税+乙供设备税金, rate: 100] │ │ - │ └── FeeCollection(措施费) - │ ├── FeeCollection(安全文明施工费)[费率:3.5%] - │ └── FeeCollection(夜间施工增加费)[费率:1.2%] + │ └── FeeCollection(取费)[name:直接费, code: FFZ, rate: 100] + │ └── FeeCollection(取费)[name: 直接工程费, code: FFZ1] + │ ├── FeeCollection(取费)[name: 人工费, code: RGF, base: 取费定额人工费, rate: 100] + │ └── FeeCollection(取费)[name: 材料费, code: CLF, base: 取费定额乙供材料费不含税, rate: 100] │ - └── FeeTableTemplateItem(安装取费表) - ├── FeeCollection(利润)[费率:7%] - └── FeeCollection(税金)[费率:9%] \ No newline at end of file + └── FeeTableTemplateItem(取费表模板项) [name: 大型土石方取费表] + ├── FeeCollection(取费)[name: 税金, code: TFFS, rate: 9] + └── FeeCollection(取费)[name: 合计, code: THJ, rate: 100] \ No newline at end of file diff --git a/dataset/json/主网预算/output.json b/dataset/json/主网预算/output.json new file mode 100644 index 0000000..d531d2d --- /dev/null +++ b/dataset/json/主网预算/output.json @@ -0,0 +1,130790 @@ +{ + "basicData": { + "阶段类型": "概预算", + "插件名称": "", + "地区插件": "", + "执行规范": "电网预规2018年版", + "软件名称": "主网", + "工程版本": "3.2.3.32", + "工程类型": "施工图预算", + "工程类别": "主网工程", + "工程文件预览信息": "●工程名称:220kV架空线路工程\n●项目划分:架空输电线路工程\n●工程阶段:施工图预算\n●地区类型:Ⅰ类\n●工程所在地:江西\n●执行规范:电网预规2018年版\n●工程版本:3.2.3.32\n●升级历史:2.0.1.6;2.1.0.61;2.1.0.175;2.2.1.2;2.3.0.83;2.3.1.5;2.3.4.3;2.4.0.124;2.4.1.4;2.4.3.3;2.4.4.5;2.5.0.155;2.5.1.14;2.6.0.218;2.6.2.0;2.6.3.0;2.7.0.0;2.8.0.0;3.0.0.0;3.0.1.0;3.1.0.0;3.1.1.0;3.1.2.0;3.2.0.0;3.2.2.0;3.2.3.0;\n●加密属性:" + }, + "currentStage": "99", + "division": "主网-概预算", + "errorCode": "200", + "errorMsg": "请求成功", + "errorStatus": true, + "fileName": "220kV架空线路工程.zwzj", + "fileType": ".ZWZJ", + "finish": true, + "projectData": { + "costSetting": { + "拆除线路": { + "name": "拆除线路", + "TypeList": "拆除线路", + "tables": [ + { + "name": "线路取费表(拆除)", + "OutlayID": "11_5", + "类型": "拆除线路", + "专业": "拆除线路", + "children": [ + { + "序号": "一", + "费用名称": "直接费", + "代码": "FFZ", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "直接工程费", + "代码": "FFZ1", + "费率(%)": "100", + "children": [ + { + "序号": "1.1", + "费用名称": "人工费", + "代码": "RGF", + "取费基数": "取费定额人工费", + "费率(%)": "100" + }, + { + "序号": "1.2", + "费用名称": "材料费", + "代码": "CLF", + "取费基数": "取费定额乙供材料费不含税", + "费率(%)": "100" + }, + { + "序号": "1.3", + "费用名称": "施工机械使用费", + "代码": "JXF", + "取费基数": "取费定额机械费", + "费率(%)": "100" + } + ] + }, + { + "序号": "2", + "费用名称": "措施费", + "代码": "FFZ2", + "费率(%)": "100", + "children": [ + { + "序号": "2.1", + "费用名称": "冬雨季施工增加费", + "代码": "DYF", + "取费基数": "取费定额人工费+取费定额机械费", + "费率(%)": "1.75" + }, + { + "序号": "2.2", + "费用名称": "施工工具用具使用费", + "代码": "SYF", + "取费基数": "取费定额人工费+取费定额机械费", + "费率(%)": "0.65" + }, + { + "序号": "2.3", + "费用名称": "特殊地区施工增加费", + "代码": "TDF", + "取费基数": "取费定额人工费+取费定额机械费", + "费率(%)": "0" + }, + { + "序号": "2.4", + "费用名称": "临时设施费", + "代码": "LSF", + "取费基数": "取费定额人工费+取费定额机械费", + "费率(%)": "0", + "备注": "独立的拆除工程可计取此项费,与其他工程同期实施的拆除工作不计取此项费用" + }, + { + "序号": "2.5", + "费用名称": "施工机构迁移费", + "代码": "ZYF", + "取费基数": "取费定额人工费+取费定额机械费", + "费率(%)": "0", + "备注": "独立的拆除工程可计取此项费,与其他工程同期实施的拆除工作不计取此项费用" + }, + { + "序号": "2.6", + "费用名称": "安全文明施工费", + "代码": "BZF", + "取费基数": "取费定额人工费+取费定额机械费", + "费率(%)": "11.31" + } + ] + } + ] + }, + { + "序号": "二", + "费用名称": "间接费", + "代码": "FFJ", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "规费", + "代码": "GF", + "费率(%)": "100", + "children": [ + { + "序号": "1.1", + "费用名称": "社会保险费", + "代码": "BZHF", + "取费基数": "取费定额人工费*1.05", + "费率(%)": "23.8" + }, + { + "序号": "1.2", + "费用名称": "住房公积金", + "代码": "GJJ", + "取费基数": "取费定额人工费*1.05", + "费率(%)": "12" + } + ] + }, + { + "序号": "2", + "费用名称": "企业管理费", + "代码": "GLF", + "取费基数": "取费定额人工费+取费定额机械费", + "费率(%)": "17.13" + } + ] + }, + { + "序号": "三", + "费用名称": "利润", + "代码": "FFR", + "取费基数": "取费定额人工费+取费定额机械费", + "费率(%)": "5.24" + }, + { + "序号": "四", + "费用名称": "编制基准期价差", + "代码": "JC", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "人工价差", + "代码": "RJC", + "取费基数": "人工价差", + "费率(%)": "100" + }, + { + "序号": "2", + "费用名称": "材料价差", + "代码": "CJC", + "取费基数": "乙供材料价差不含税", + "费率(%)": "100" + }, + { + "序号": "3", + "费用名称": "机械价差", + "代码": "JJC", + "取费基数": "机械价差", + "费率(%)": "100" + } + ] + }, + { + "序号": "五", + "费用名称": "税金", + "代码": "FFS", + "取费基数": "FFZ+FFJ+FFR+JC+不取费定额费不含税", + "费率(%)": "9" + }, + { + "序号": "六", + "费用名称": "合计", + "代码": "HJ", + "取费基数": "FFZ+FFJ+FFR+FFS+JC+一笔性费用+不取费定额费不含税", + "费率(%)": "100" + } + ] + } + ] + }, + "余物清理": { + "name": "余物清理", + "TypeList": "余物清理线路", + "tables": [ + { + "name": "线路取费表(余物清理)", + "OutlayID": "4_4", + "类型": "余物清理线路", + "专业": "余物清理", + "children": [ + { + "序号": "一", + "费用名称": "直接费", + "代码": "FFZ", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "直接工程费", + "代码": "FFZ1", + "费率(%)": "100", + "children": [ + { + "序号": "1.1", + "费用名称": "定额直接费", + "代码": "DZF", + "费率(%)": "100", + "children": [ + { + "序号": "1.1.1", + "费用名称": "人工费", + "代码": "RGF", + "取费基数": "取费定额人工费", + "费率(%)": "100" + }, + { + "序号": "1.1.2", + "费用名称": "材料费", + "代码": "CLF", + "取费基数": "取费定额乙供材料费不含税", + "费率(%)": "100" + }, + { + "序号": "1.1.3", + "费用名称": "施工机械使用费", + "代码": "JXF", + "取费基数": "取费定额机械费", + "费率(%)": "100" + } + ] + } + ] + }, + { + "序号": "2", + "费用名称": "措施费", + "代码": "FFZ2", + "费率(%)": "100", + "children": [ + { + "序号": "2.1", + "费用名称": "安全文明施工费", + "代码": "BZF", + "取费基数": "FFZ1", + "费率(%)": "3.55" + } + ] + } + ] + }, + { + "序号": "二", + "费用名称": "合计", + "代码": "HJ", + "取费基数": "FFZ+一笔性费用", + "费率(%)": "100" + } + ] + } + ] + }, + "线路": { + "name": "线路", + "TypeList": "线路,大型土石方线路,调试线路", + "tables": [ + { + "name": "线路取费表", + "OutlayID": "3_1", + "类型": "线路", + "专业": "线路", + "children": [ + { + "序号": "一", + "费用名称": "直接费", + "代码": "FFZ", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "直接工程费", + "代码": "FFZ1", + "费率(%)": "100", + "children": [ + { + "序号": "1.1", + "费用名称": "定额直接费", + "代码": "DZF", + "费率(%)": "100", + "children": [ + { + "序号": "1.1.1", + "费用名称": "人工费", + "代码": "RGF", + "取费基数": "取费定额人工费", + "费率(%)": "100" + }, + { + "序号": "1.1.2", + "费用名称": "材料费", + "代码": "CLF", + "取费基数": "取费定额乙供材料费不含税", + "费率(%)": "100" + }, + { + "序号": "1.1.3", + "费用名称": "施工机械使用费", + "代码": "JXF", + "取费基数": "取费定额机械费", + "费率(%)": "100" + } + ] + }, + { + "序号": "1.2", + "费用名称": "装置性材料费", + "代码": "ZZCF", + "费率(%)": "100", + "children": [ + { + "序号": "1.2.1", + "费用名称": "甲供装置性材料费", + "代码": "JZZCF", + "取费基数": "甲供取费主材费含税", + "费率(%)": "100" + }, + { + "序号": "1.2.2", + "费用名称": "乙供装置性材料费", + "代码": "YZZCF", + "取费基数": "乙供取费主材费不含税", + "费率(%)": "100" + } + ] + } + ] + }, + { + "序号": "2", + "费用名称": "措施费", + "代码": "FFZ2", + "费率(%)": "100", + "children": [ + { + "序号": "2.1", + "费用名称": "冬雨季施工增加费", + "代码": "DYF", + "取费基数": "取费定额人工费", + "费率(%)": "3.57" + }, + { + "序号": "2.2", + "费用名称": "夜间施工增加费", + "代码": "YSF", + "取费基数": "取费定额人工费", + "费率(%)": "0" + }, + { + "序号": "2.3", + "费用名称": "施工工具用具使用费", + "代码": "SYF", + "取费基数": "取费定额人工费", + "费率(%)": "3.82" + }, + { + "序号": "2.4", + "费用名称": "特殊地区施工增加费", + "代码": "TDF", + "取费基数": "取费定额人工费", + "费率(%)": "0" + }, + { + "序号": "2.5", + "费用名称": "临时设施费", + "代码": "LSF", + "取费基数": "DZF", + "费率(%)": "6.35" + }, + { + "序号": "2.6", + "费用名称": "施工机构迁移费", + "代码": "ZYF", + "取费基数": "取费定额人工费", + "费率(%)": "2.24" + }, + { + "序号": "2.7", + "费用名称": "安全文明施工费", + "代码": "BZF", + "取费基数": "FFZ1-甲供主材进项税额", + "费率(%)": "3.55" + } + ] + } + ] + }, + { + "序号": "二", + "费用名称": "间接费", + "代码": "FFJ", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "规费", + "代码": "GF", + "费率(%)": "100", + "children": [ + { + "序号": "1.1", + "费用名称": "社会保险费", + "代码": "BZHF", + "取费基数": "取费定额人工费*1.05", + "费率(%)": "23.8" + }, + { + "序号": "1.2", + "费用名称": "住房公积金", + "代码": "GJJ", + "取费基数": "取费定额人工费*1.05", + "费率(%)": "12" + } + ] + }, + { + "序号": "2", + "费用名称": "企业管理费", + "代码": "GLF", + "取费基数": "取费定额人工费", + "费率(%)": "35.76" + }, + { + "序号": "3", + "费用名称": "施工企业配合调试费", + "代码": "TSF", + "取费基数": "DZF", + "费率(%)": "1.06" + } + ] + }, + { + "序号": "三", + "费用名称": "利润", + "代码": "FFR", + "取费基数": "FFZ+FFJ-甲供主材进项税额", + "费率(%)": "5" + }, + { + "序号": "四", + "费用名称": "编制基准期价差", + "代码": "JC", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "人工价差", + "代码": "RJC", + "取费基数": "人工价差", + "费率(%)": "100" + }, + { + "序号": "2", + "费用名称": "材料价差", + "代码": "CJC", + "取费基数": "乙供材料价差不含税", + "费率(%)": "100" + }, + { + "序号": "3", + "费用名称": "机械价差", + "代码": "JJC", + "取费基数": "机械价差", + "费率(%)": "100" + }, + { + "序号": "4", + "费用名称": "装置性材料价差", + "代码": "ZCJC", + "费率(%)": "100", + "children": [ + { + "序号": "4.1", + "费用名称": "甲供装置性材料价差", + "代码": "JZCJC", + "取费基数": "甲供主材价差含税", + "费率(%)": "100" + }, + { + "序号": "4.2", + "费用名称": "乙供装置性材料价差", + "代码": "YZCJC", + "取费基数": "乙供主材价差不含税", + "费率(%)": "100" + } + ] + } + ] + }, + { + "序号": "五", + "费用名称": "税金", + "代码": "FFS", + "取费基数": "FFZ+FFJ+FFR+JC-甲供取费主材费含税-甲供主材价差含税+不取费定额费不含税+不取费乙供主材费不含税", + "费率(%)": "9" + }, + { + "序号": "六", + "费用名称": "设备费", + "代码": "SBF", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "乙供设备不含税价", + "代码": "SBY", + "取费基数": "乙供设备费不含税+乙供设备税金", + "费率(%)": "100" + }, + { + "序号": "2", + "费用名称": "甲供设备含税价", + "代码": "SBJ", + "取费基数": "甲供设备费含税", + "费率(%)": "100" + } + ] + }, + { + "序号": "七", + "费用名称": "安装费", + "代码": "AZF", + "取费基数": "DZF+FFZ2+FFJ+FFR+FFS+JC-ZCJC+不取费定额费不含税+一笔性费用", + "费率(%)": "100" + }, + { + "序号": "八", + "费用名称": "主材费", + "代码": "ZCF", + "取费基数": "ZZCF+ZCJC+不取费乙供主材费不含税+不取费甲供主材费含税", + "费率(%)": "100" + }, + { + "序号": "九", + "费用名称": "总计", + "代码": "ZJ", + "取费基数": "AZF+ZCF+SBF", + "费率(%)": "100" + }, + { + "序号": "十", + "费用名称": "合计", + "代码": "HJ", + "取费基数": "ZJ-SBF", + "费率(%)": "100" + } + ] + }, + { + "name": "大型土石方取费表", + "OutlayID": "3_3", + "类型": "大型土石方线路", + "专业": "线路", + "children": [ + { + "序号": "一", + "费用名称": "直接工程费", + "代码": "FFZ1", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "人工费", + "代码": "RGF", + "取费基数": "取费定额人工费", + "费率(%)": "100" + }, + { + "序号": "2", + "费用名称": "材料费", + "代码": "CLF", + "取费基数": "取费定额乙供材料费不含税+乙供取费主材费不含税+甲供取费主材费含税", + "费率(%)": "100" + }, + { + "序号": "3", + "费用名称": "施工机械使用费", + "代码": "JXF", + "取费基数": "取费定额机械费", + "费率(%)": "100" + } + ] + }, + { + "序号": "二", + "费用名称": "综合取费费用额", + "代码": "TZHQF", + "取费基数": "FFZ1-甲供主材进项税额", + "费率(%)": "17.79", + "备注": "综合取费费用额(包含措施费、间接费、利润)" + }, + { + "序号": "三", + "费用名称": "编制基准期价差", + "代码": "JC", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "人工价差", + "代码": "RJC", + "取费基数": "人工价差", + "费率(%)": "100" + }, + { + "序号": "2", + "费用名称": "材料价差", + "代码": "CJC", + "取费基数": "乙供材料价差不含税+乙供主材价差不含税+甲供主材价差含税", + "费率(%)": "100" + }, + { + "序号": "3", + "费用名称": "机械价差", + "代码": "JJC", + "取费基数": "机械价差", + "费率(%)": "100" + } + ] + }, + { + "序号": "四", + "费用名称": "税金", + "代码": "TFFS", + "取费基数": "FFZ1+TZHQF+JC-甲供取费主材费含税-甲供主材价差含税+不取费定额费不含税+不取费乙供主材费不含税", + "费率(%)": "9" + }, + { + "序号": "五", + "费用名称": "合计", + "代码": "THJ", + "取费基数": "FFZ1+TZHQF+TFFS+JC+一笔性费用+不取费定额费不含税+不取费乙供主材费不含税+不取费甲供主材费含税", + "费率(%)": "100" + } + ] + }, + { + "name": "线路取费表(调试工程)", + "OutlayID": "3_2", + "类型": "调试线路", + "专业": "线路", + "children": [ + { + "序号": "一", + "费用名称": "直接费", + "代码": "FFZ", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "直接工程费", + "代码": "FFZ1", + "费率(%)": "100", + "children": [ + { + "序号": "1.1", + "费用名称": "定额直接费", + "代码": "DZF", + "费率(%)": "100", + "children": [ + { + "序号": "1.1.1", + "费用名称": "人工费", + "代码": "RGF", + "取费基数": "取费定额人工费", + "费率(%)": "100" + }, + { + "序号": "1.1.2", + "费用名称": "材料费", + "代码": "CLF", + "取费基数": "取费定额乙供材料费不含税", + "费率(%)": "100" + }, + { + "序号": "1.1.3", + "费用名称": "施工机械使用费", + "代码": "JXF", + "取费基数": "取费定额机械费", + "费率(%)": "100" + } + ] + }, + { + "序号": "1.2", + "费用名称": "装置性材料费", + "代码": "ZZCF", + "费率(%)": "100", + "children": [ + { + "序号": "1.2.1", + "费用名称": "甲供装置性材料费", + "代码": "JZZCF", + "取费基数": "甲供取费主材费含税", + "费率(%)": "100" + }, + { + "序号": "1.2.2", + "费用名称": "乙供装置性材料费", + "代码": "YZZCF", + "取费基数": "乙供取费主材费不含税", + "费率(%)": "100" + } + ] + } + ] + }, + { + "序号": "2", + "费用名称": "措施费", + "代码": "FFZ2", + "费率(%)": "100", + "children": [ + { + "序号": "2.1", + "费用名称": "冬雨季施工增加费", + "代码": "DYF", + "取费基数": "取费定额人工费", + "费率(%)": "3.57" + }, + { + "序号": "2.2", + "费用名称": "夜间施工增加费", + "代码": "YSF", + "取费基数": "取费定额人工费", + "费率(%)": "0" + }, + { + "序号": "2.3", + "费用名称": "施工工具用具使用费", + "代码": "SYF", + "取费基数": "取费定额人工费", + "费率(%)": "3.82" + }, + { + "序号": "2.4", + "费用名称": "特殊地区施工增加费", + "代码": "TDF", + "取费基数": "取费定额人工费", + "费率(%)": "0" + }, + { + "序号": "2.5", + "费用名称": "临时设施费", + "代码": "LSF", + "取费基数": "DZF", + "费率(%)": "6.35" + }, + { + "序号": "2.6", + "费用名称": "施工机构迁移费", + "代码": "ZYF", + "取费基数": "取费定额人工费", + "费率(%)": "2.24" + }, + { + "序号": "2.7", + "费用名称": "安全文明施工费", + "代码": "BZF", + "取费基数": "FFZ1-甲供主材进项税额", + "费率(%)": "3.55" + } + ] + } + ] + }, + { + "序号": "二", + "费用名称": "间接费", + "代码": "FFJ", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "规费", + "代码": "GF", + "费率(%)": "100", + "children": [ + { + "序号": "1.1", + "费用名称": "社会保险费", + "代码": "BZHF", + "取费基数": "取费定额人工费*1.05", + "费率(%)": "23.8" + }, + { + "序号": "1.2", + "费用名称": "住房公积金", + "代码": "GJJ", + "取费基数": "取费定额人工费*1.05", + "费率(%)": "12" + } + ] + }, + { + "序号": "2", + "费用名称": "企业管理费", + "代码": "GLF", + "取费基数": "取费定额人工费", + "费率(%)": "35.76" + } + ] + }, + { + "序号": "三", + "费用名称": "利润", + "代码": "FFR", + "取费基数": "FFZ+FFJ-甲供主材进项税额", + "费率(%)": "5" + }, + { + "序号": "四", + "费用名称": "编制基准期价差", + "代码": "JC", + "费率(%)": "100", + "children": [ + { + "序号": "1", + "费用名称": "人工价差", + "代码": "RJC", + "取费基数": "人工价差", + "费率(%)": "100" + }, + { + "序号": "2", + "费用名称": "材料价差", + "代码": "CJC", + "取费基数": "乙供材料价差不含税", + "费率(%)": "100" + }, + { + "序号": "3", + "费用名称": "机械价差", + "代码": "JJC", + "取费基数": "机械价差", + "费率(%)": "100" + }, + { + "序号": "4", + "费用名称": "装置性材料价差", + "代码": "ZCJC", + "费率(%)": "100", + "children": [ + { + "序号": "4.1", + "费用名称": "甲供装置性材料价差", + "代码": "JZCJC", + "取费基数": "甲供主材价差含税", + "费率(%)": "100" + }, + { + "序号": "4.2", + "费用名称": "乙供装置性材料价差", + "代码": "YZCJC", + "取费基数": "乙供主材价差不含税", + "费率(%)": "100" + } + ] + } + ] + }, + { + "序号": "五", + "费用名称": "税金", + "代码": "FFS", + "取费基数": "FFZ+FFJ+FFR+JC-甲供取费主材费含税-甲供主材价差含税+不取费定额费不含税+不取费乙供主材费不含税", + "费率(%)": "9" + }, + { + "序号": "六", + "费用名称": "合计", + "代码": "HJ", + "取费基数": "FFZ+FFJ+FFR+FFS+JC+一笔性费用+不取费定额费不含税+不取费乙供主材费不含税+不取费甲供主材费含税", + "费率(%)": "100" + } + ] + } + ] + } + }, + "reportMenu": { + "安装": [ + { + "显示": "False", + "是否报表": "False", + "所属组名称": "", + "children": [ + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "封面" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "签字审批" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "编制说明" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "目录" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路工程总预算表", + "名称": "送电总算表(表一丙)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路安装工程汇总预算表", + "名称": "架空输电线路工程部分汇总表(表二丙)" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空部分汇总表(取费)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路单位工程预算表", + "名称": "架空输电线路工程单位工程汇总表(表三丙)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路单位工程预算表(拆除表三)", + "名称": "架空输电线路工程单位工程汇总表(拆除表三)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路单位工程预算表(余物清理表三)", + "名称": "架空输电线路工程单位工程汇总表(余物清理表三)" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程取费表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路辅助设施工程预算表", + "名称": "辅助费用表(表三戊)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路其他费用预算表", + "名称": "其他费用表(表四)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路工程概况及主要技术经济指标表", + "名称": "技术指标表(表五丙)" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "施工图预算管理工程数据收集表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "装置性材料单公里用量表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路建设场地征用及清理费用预算表", + "名称": "建设场地征用及清理费用表(表七)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "综合地形增加系数计算表", + "名称": "综合地形增加系数计算表(附表一)" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "综合地形增加费明细表" + }, + { + "显示": "False", + "是否报表": "False", + "所属组名称": "", + "children": [ + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "输电线路工程装置性材料统计表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路工程主材汇总表", + "名称": "架空输电线路工程主材汇总表(附表二)" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程主材汇总表(结算)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路工程甲供主材汇总表", + "名称": "架空输电线路工程甲供主材汇总表(附表二)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "架空输电线路工程乙供主材汇总表", + "名称": "架空输电线路工程乙供主材汇总表(附表二)" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程主材价差汇总表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程甲供主材价差汇总表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程乙供主材价差汇总表" + } + ], + "名称": "主材汇总表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "输电线路工程土石方量计算表", + "名称": "土石方量计算表(附表三)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "输电线路工程工地运输重量计算表", + "名称": "工地运输重量计算表(附表四)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "输电线路工程工地运输工程量计算表", + "名称": "工地运输工程量计算表(附表五)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "显示名称": "输电线路工程杆塔分类一览表", + "名称": "杆塔明细表(附表六)" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "现浇基础明细表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "预制基础明细表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "塔基占地面积明细表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "跨越明细表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "组件数量汇总表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "组件材料汇总表" + }, + { + "显示": "False", + "是否报表": "False", + "所属组名称": "", + "children": [ + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程设备汇总表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程设备汇总表(结算)" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程甲供设备汇总表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程乙供设备汇总表" + } + ], + "名称": "设备汇总表" + }, + { + "显示": "False", + "是否报表": "False", + "所属组名称": "", + "children": [ + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程定额人工汇总表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程拆除定额人工汇总表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程清理项目定额人工汇总表" + } + ], + "名称": "人工汇总表" + }, + { + "显示": "False", + "是否报表": "False", + "所属组名称": "", + "children": [ + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程材料汇总表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程拆除材料汇总表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程清理项目材料汇总表" + } + ], + "名称": "材料汇总表" + }, + { + "显示": "False", + "是否报表": "False", + "所属组名称": "", + "children": [ + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程机械汇总表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程拆除机械汇总表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程清理项目机械汇总表" + } + ], + "名称": "机械汇总表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程人工按系数调差明细表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程材料按系数调差明细表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程机械按系数调差明细表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "设备购置费明细表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "建设期贷款利息明细表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "价差预备费明细表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "勘察费明细表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "勘察费复杂程度表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "设计费明细表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "主要材料设计费价格调整表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "组合件汇总表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "可抵扣增值税分析表" + }, + { + "显示": "True", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程基准期价差明细表" + }, + { + "显示": "False", + "是否报表": "True", + "所属组名称": "", + "名称": "架空输电线路工程编制期价差明细表" + } + ], + "名称": "总览" + } + ] + }, + "indexList": [ + { + "指标名称": "电压等级", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "220kV", + "关键字": "电压等级" + }, + { + "指标名称": "工程编码", + "指标类型": "技术指标", + "数据来源": "报表指标", + "关键字": "工程编号" + }, + { + "指标名称": "工程名称", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "220kV架空线路工程", + "关键字": "工程名称" + }, + { + "指标名称": "工程时间", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "2024年09月15日", + "关键字": "新建时间" + }, + { + "指标名称": "线路曲折系数", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "1.18", + "关键字": "工程参数_曲折系数" + }, + { + "指标名称": "线路长度合计_折单", + "单位": "km", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "8.23", + "关键字": "折单回总长度" + }, + { + "指标名称": "路径长度_单回路长度", + "单位": "km", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "8.23", + "关键字": "单回路" + }, + { + "指标名称": "路径长度_双回路长度", + "单位": "km", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "双回路" + }, + { + "指标名称": "路径长度_三回路长度", + "单位": "km", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "三回路" + }, + { + "指标名称": "路径长度_四回路长度", + "单位": "km", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "四回路" + }, + { + "指标名称": "杆塔总基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "定额数量", + "指标值": "29", + "关键字": "YX2-1~7", + "指标提取范围": "架空输电线路本体工程/基础工程" + }, + { + "指标名称": "角钢塔_塔基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "29", + "关键字": "角钢塔基数" + }, + { + "指标名称": "角钢塔_塔材量", + "单位": "t", + "指标类型": "工程量指标", + "数据来源": "主材数量", + "指标值": "250.01385", + "关键字": "角钢", + "指标提取范围": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立" + }, + { + "指标名称": "角钢塔_其中:高强钢塔材量", + "单位": "t", + "指标类型": "工程量指标", + "数据来源": "主材数量", + "指标值": "0", + "关键字": "角钢、高强", + "指标提取范围": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立" + }, + { + "指标名称": "角钢塔_塔材装材费", + "单位": "万元/t", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "0.95912", + "关键字": "角钢塔_塔材装材费_元/10000" + }, + { + "指标名称": "角钢塔_塔材装材费_元", + "单位": "元/t", + "指标类型": "单价指标", + "数据来源": "主材单价", + "指标值": "9591.2", + "关键字": "角钢", + "指标提取范围": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立" + }, + { + "指标名称": "角钢塔_其中:高强钢塔材费用", + "单位": "万元/t", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "0", + "关键字": "角钢塔_其中:高强钢塔材费用_元/10000" + }, + { + "指标名称": "角钢塔_其中:高强钢塔材费用_元", + "单位": "元/t", + "指标类型": "单价指标", + "数据来源": "主材单价", + "关键字": "角钢、高强", + "指标提取范围": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立" + }, + { + "指标名称": "钢管塔_塔基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "钢管塔基数" + }, + { + "指标名称": "钢管塔_塔材量", + "单位": "t", + "指标类型": "工程量指标", + "数据来源": "主材数量", + "指标值": "0", + "关键字": "钢管塔", + "指标提取范围": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立" + }, + { + "指标名称": "钢管塔_钢管价格", + "单位": "万元/t", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "0", + "关键字": "钢管塔_钢管价格_元/10000" + }, + { + "指标名称": "钢管塔_钢管价格_元", + "单位": "元/t", + "指标类型": "单价指标", + "数据来源": "主材单价", + "关键字": "钢管塔", + "指标提取范围": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立" + }, + { + "指标名称": "钢管杆_塔基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "钢管杆基数" + }, + { + "指标名称": "钢管杆_塔材量", + "单位": "t", + "指标类型": "工程量指标", + "数据来源": "主材数量", + "指标值": "0", + "关键字": "钢管杆", + "指标提取范围": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立" + }, + { + "指标名称": "钢管杆_钢管价格", + "单位": "万元/t", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "0", + "关键字": "钢管杆_钢管价格_元/10000" + }, + { + "指标名称": "钢管杆_钢管价格_元", + "单位": "元/t", + "指标类型": "单价指标", + "数据来源": "主材单价", + "关键字": "钢管杆", + "指标提取范围": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立" + }, + { + "指标名称": "水泥杆基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "混凝土杆基数" + }, + { + "指标名称": "直线塔基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "19", + "关键字": "直线塔基数+直线杆基数" + }, + { + "指标名称": "耐张转角塔基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "10", + "关键字": "耐张塔基数+耐张杆基数" + }, + { + "指标名称": "海拔", + "单位": "m", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "500", + "关键字": "工程概况信息_海拔高度" + }, + { + "指标名称": "导线及线材_分裂数", + "指标类型": "技术指标", + "数据来源": "定额参数", + "指标值": "2", + "关键字": "YX5-67~69、YX5-78~79@@8||YX5-59~66、YX5-74~77@@6||YX5-52~58、YX5-70~73@@4||YX5-14~17、YX5-43~51@@2||YX5-10~13、YX5-38~42、YX5-8~9@@1", + "指标提取范围": "架空输电线路本体工程/架线工程" + }, + { + "指标名称": "导线及线材_单根导线面积", + "单位": "mm?", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "300", + "关键字": "导线1截面积" + }, + { + "指标名称": "导线及线材_导线量", + "单位": "t", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "59.1997", + "关键字": "导线用量#含弧垂?" + }, + { + "指标名称": "导线及线材_其中:节能导线量", + "单位": "t", + "指标类型": "工程量指标", + "数据来源": "主材数量", + "指标值": "0", + "关键字": "高导电率", + "指标提取范围": "架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设" + }, + { + "指标名称": "导线及线材_导线装材费", + "单位": "万元/t", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "2.2134", + "关键字": "导线及线材_导线装材费_元/10000" + }, + { + "指标名称": "导线及线材_导线装材费_元", + "单位": "元/t", + "指标类型": "单价指标", + "数据来源": "主材单价", + "指标值": "22134", + "关键字": "线", + "指标提取范围": "架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设" + }, + { + "指标名称": "导线及线材_其中:节能导线费用", + "单位": "万元/t", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "0", + "关键字": "导线及线材_其中:节能导线费用_元/10000" + }, + { + "指标名称": "导线及线材_其中:节能导线费用_元", + "单位": "元/t", + "指标类型": "单价指标", + "数据来源": "主材单价", + "关键字": "高导电率", + "指标提取范围": "架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设" + }, + { + "指标名称": "导线及线材_导线类型", + "指标类型": "技术指标", + "数据来源": "主材参数", + "指标值": "钢芯铝绞线", + "关键字": "钢芯铝绞线@@钢芯铝绞线||铝包钢芯铝绞线@@铝包钢芯铝绞线||中强度铝合金绞线@@中强度铝合金绞线||铝合金芯铝绞线@@铝合金芯铝绞线||铝合金芯高导电率铝绞线@@铝合金芯高导电率铝绞线||钢芯高导电率铝绞线@@钢芯高导电率铝绞线||特高强度钢芯铝合金绞线@@特高强度钢芯铝合金绞线||扩径导线@@扩径导线||耐热导线@@耐热导线||碳纤维导线@@碳纤维导线", + "指标提取范围": "架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设@@架空输电线路本体工程/架线工程/其他架线工程" + }, + { + "指标名称": "设计风速", + "单位": "m/s", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "27", + "关键字": "气象条件_设计风速#导则?" + }, + { + "指标名称": "覆冰厚度", + "单位": "mm", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "10", + "关键字": "气象条件_覆冰厚度#导则?" + }, + { + "指标名称": "地形分布_平地", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "59", + "关键字": "平地" + }, + { + "指标名称": "地形分布_丘陵", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "23", + "关键字": "丘陵" + }, + { + "指标名称": "地形分布_河网", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "河网" + }, + { + "指标名称": "地形分布_泥沼", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "18", + "关键字": "泥沼" + }, + { + "指标名称": "地形分布_山地", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "山地" + }, + { + "指标名称": "地形分布_高山", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "高山" + }, + { + "指标名称": "地形分布_沙漠", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "沙漠" + }, + { + "指标名称": "地形分布_峻岭", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "峻岭" + }, + { + "指标名称": "地质条件_普通土", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "0.288", + "关键字": "普通土比例" + }, + { + "指标名称": "地质条件_坚土", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "1.486", + "关键字": "坚土比例" + }, + { + "指标名称": "地质条件_松砂石", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "34.96", + "关键字": "松砂石比例" + }, + { + "指标名称": "地质条件_水坑", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "水坑比例" + }, + { + "指标名称": "地质条件_泥水坑", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "23.187", + "关键字": "泥水坑比例" + }, + { + "指标名称": "地质条件_流沙坑", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "40.079", + "关键字": "流砂坑比例" + }, + { + "指标名称": "地质条件_岩石爆破", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "岩石#爆破?比例" + }, + { + "指标名称": "地质条件_岩石人工", + "单位": "%", + "指标类型": "技术指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "岩石#人凿?比例" + }, + { + "指标名称": "土石方总量", + "单位": "m?", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "8593.138", + "关键字": "基础土石方量+接地土石方量+排水沟土石方量+护坡挡土墙排洪沟土石方量" + }, + { + "指标名称": "土石方量_基坑", + "单位": "m?", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "6610.512", + "关键字": "基坑土石方量" + }, + { + "指标名称": "土石方量_接地", + "单位": "m?", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "1419.52", + "关键字": "接地土石方量" + }, + { + "指标名称": "土石方量_基面", + "单位": "m?", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "290", + "关键字": "尖峰及施工基面土石方量" + }, + { + "指标名称": "各类基础数量占总塔基数比例_台阶式", + "单位": "%", + "指标类型": "工程量指标", + "数据来源": "指标库", + "指标值": "0", + "关键字": "台阶式基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" + }, + { + "指标名称": "各类基础数量占总塔基数比例_板式", + "单位": "%", + "指标类型": "工程量指标", + "数据来源": "指标库", + "指标值": "66.666667", + "关键字": "板式基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" + }, + { + "指标名称": "各类基础数量占总塔基数比例_插入式", + "单位": "%", + "指标类型": "工程量指标", + "数据来源": "指标库", + "指标值": "0", + "关键字": "插入式基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" + }, + { + "指标名称": "各类基础数量占总塔基数比例_掏挖", + "单位": "%", + "指标类型": "工程量指标", + "数据来源": "指标库", + "指标值": "17.948718", + "关键字": "掏挖基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" + }, + { + "指标名称": "各类基础数量占总塔基数比例_岩石嵌固", + "单位": "%", + "指标类型": "工程量指标", + "数据来源": "指标库", + "指标值": "0", + "关键字": "岩石嵌固基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" + }, + { + "指标名称": "各类基础数量占总塔基数比例_锚杆", + "单位": "%", + "指标类型": "工程量指标", + "数据来源": "指标库", + "指标值": "0", + "关键字": "锚杆基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" + }, + { + "指标名称": "各类基础数量占总塔基数比例_灌注桩", + "单位": "%", + "指标类型": "工程量指标", + "数据来源": "指标库", + "指标值": "0", + "关键字": "灌注桩基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" + }, + { + "指标名称": "各类基础数量占总塔基数比例_人工挖孔桩", + "单位": "%", + "指标类型": "工程量指标", + "数据来源": "指标库", + "指标值": "5.128205", + "关键字": "人工挖孔桩基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" + }, + { + "指标名称": "各类基础数量占总塔基数比例_其他", + "单位": "%", + "指标类型": "工程量指标", + "数据来源": "指标库", + "指标值": "10.25641", + "关键字": "其他基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" + }, + { + "指标名称": "台阶式基础基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "阶梯式" + }, + { + "指标名称": "板式基础基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "26", + "关键字": "大板式" + }, + { + "指标名称": "插入式基础基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "插入式" + }, + { + "指标名称": "掏挖基础基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "7", + "关键字": "掏挖式" + }, + { + "指标名称": "岩石嵌固基础基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "岩石" + }, + { + "指标名称": "锚杆基础基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "锚杆" + }, + { + "指标名称": "灌注桩基础基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "其中:灌注桩" + }, + { + "指标名称": "人工挖孔桩基础基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "2", + "关键字": "人工挖孔" + }, + { + "指标名称": "其他基础基数", + "单位": "基", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "4", + "关键字": "其他基础型式#预规?+钢管桩+预制+桩基础" + }, + { + "指标名称": "基础混凝土总量", + "单位": "m?", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "1030.504", + "关键字": "现浇混凝土用量+预制混凝土用量" + }, + { + "指标名称": "灌注桩基础混凝土量", + "单位": "m?", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "其中:灌注桩用量" + }, + { + "指标名称": "现浇基础混凝土量", + "单位": "m?", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "662.052", + "关键字": "其中:现浇基础现浇混凝土量" + }, + { + "指标名称": "挖孔基础混凝土量", + "单位": "m?", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "354.786", + "关键字": "其中:挖孔基础现浇混凝土量" + }, + { + "指标名称": "基础护壁混凝土用量", + "单位": "m?", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "13.666", + "关键字": "其中:基础护壁用量" + }, + { + "指标名称": "预制混凝土用量", + "单位": "m?", + "指标类型": "工程量指标", + "数据来源": "报表指标", + "指标值": "0", + "关键字": "预制混凝土用量" + }, + { + "指标名称": "基础钢材量", + "单位": "t", + "指标类型": "工程量指标", + "数据来源": "主材数量", + "指标值": "72.57714", + "关键字": "圆钢", + "指标提取范围": "架空输电线路本体工程/基础工程/基础砌筑" + }, + { + "指标名称": "基础钢材价格", + "单位": "元/t", + "指标类型": "单价指标", + "数据来源": "主材单价", + "指标值": "4531", + "关键字": "圆钢", + "指标提取范围": "架空输电线路本体工程/基础工程/基础砌筑" + }, + { + "指标名称": "本体费用合计", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "1115.512808", + "关键字": "本体费用合计_元/10000" + }, + { + "指标名称": "本体工程人工费", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "151.782325", + "关键字": "(本体工程人工费_调试_元+本体工程人工费_本体_元)/10000" + }, + { + "指标名称": "本体工程机械费", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "55.270826", + "关键字": "(本体工程机械费_本体_元+本体工程机械费_调试_元)/10000" + }, + { + "指标名称": "基础工程费用", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "342.287681", + "关键字": "基础工程费用_元/10000" + }, + { + "指标名称": "杆塔工程费用", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "301.565851", + "关键字": "杆塔工程费用_元/10000" + }, + { + "指标名称": "接地工程费用", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "12.362485", + "关键字": "接地工程费用_元/10000" + }, + { + "指标名称": "架线工程费用", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "294.404439", + "关键字": "架线工程费用_元/10000" + }, + { + "指标名称": "附件工程费用", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "93.943226", + "关键字": "附件工程费用_元/10000" + }, + { + "指标名称": "辅助工程费用", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "70.949126", + "关键字": "(辅助工程费用_元+辅助工程费用_调试_元)/10000" + }, + { + "指标名称": "辅助设施工程", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "0", + "关键字": "辅助设施工程_元/10000" + }, + { + "指标名称": "其他费用合计", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "118.056361", + "关键字": "其他费用合计_元/10000" + }, + { + "指标名称": "建场费合计", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "0.419576", + "关键字": "建场费合计_元/10000" + }, + { + "指标名称": "项目建设管理费合计", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "33.817493", + "关键字": "项目建设管理费合计_元/10000" + }, + { + "指标名称": "其中:工程监理费", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "12.399647", + "关键字": "其中:工程监理费_元/10000" + }, + { + "指标名称": "项目建设技术服务费合计", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "77.57242", + "关键字": "项目建设技术服务费合计_元/10000" + }, + { + "指标名称": "其中:项目前期工作费", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "0", + "关键字": "其中:项目前期工作费_元/10000" + }, + { + "指标名称": "其中:勘察费", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "3.706792", + "关键字": "其中:勘察费_元/10000" + }, + { + "指标名称": "其中:设计费", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "50.018423", + "关键字": "其中:设计费_元/10000" + }, + { + "指标名称": "其中:工程建设检测费", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "2.454128", + "关键字": "其中:工程建设检测费_元/10000" + }, + { + "指标名称": "生产准备费", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "6.246872", + "关键字": "生产准备费_元/10000" + }, + { + "指标名称": "其中:安全文明施工费", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "22.891154", + "关键字": "(其中:安全文明施工费_线路_元+其中:安全文明施工费_调试_元)/10000" + }, + { + "指标名称": "基本预备费", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "12.335692", + "关键字": "基本预备费_元/10000" + }, + { + "指标名称": "静态投资", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "1245.90486", + "关键字": "静态投资_元/10000" + }, + { + "指标名称": "建设期利息", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "22.099237", + "关键字": "建设期利息_元/10000" + }, + { + "指标名称": "动态投资", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "1268.004098", + "关键字": "动态投资_元/10000" + }, + { + "指标名称": "增值税抵扣税额", + "单位": "万元", + "指标类型": "造价指标", + "数据来源": "指标库", + "指标值": "113.09438", + "关键字": "增值税抵扣税额_元/10000" + }, + { + "指标名称": "本体费用合计_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "11155128.08", + "关键字": "@工程费用.架空输电线路本体工程.合计费" + }, + { + "指标名称": "本体工程人工费_本体_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "1517823.25", + "关键字": "人工费", + "指标提取范围": "架空输电线路本体工程" + }, + { + "指标名称": "本体工程人工费_调试_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "0", + "关键字": "人工费", + "指标提取范围": "架空输电线路本体工程" + }, + { + "指标名称": "本体工程机械费_本体_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "552708.26", + "关键字": "施工机械使用费", + "指标提取范围": "架空输电线路本体工程" + }, + { + "指标名称": "本体工程机械费_调试_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "0", + "关键字": "施工机械使用费", + "指标提取范围": "架空输电线路本体工程" + }, + { + "指标名称": "基础工程费用_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "3422876.81", + "关键字": "合计", + "指标提取范围": "架空输电线路本体工程/基础工程" + }, + { + "指标名称": "杆塔工程费用_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "3015658.51", + "关键字": "合计", + "指标提取范围": "架空输电线路本体工程/杆塔工程" + }, + { + "指标名称": "接地工程费用_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "123624.85", + "关键字": "合计", + "指标提取范围": "架空输电线路本体工程/接地工程" + }, + { + "指标名称": "架线工程费用_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "2944044.39", + "关键字": "合计", + "指标提取范围": "架空输电线路本体工程/架线工程" + }, + { + "指标名称": "附件工程费用_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "939432.26", + "关键字": "合计", + "指标提取范围": "架空输电线路本体工程/附件安装工程" + }, + { + "指标名称": "辅助工程费用_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "709491.26", + "关键字": "合计", + "指标提取范围": "架空输电线路本体工程/辅助工程" + }, + { + "指标名称": "辅助工程费用_调试_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "0", + "关键字": "合计", + "指标提取范围": "架空输电线路本体工程/辅助工程" + }, + { + "指标名称": "辅助设施工程_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "0", + "关键字": "@工程费用.辅助设施工程.合计费" + }, + { + "指标名称": "其他费用合计_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "1180563.61", + "关键字": "@工程费用.其他费用.合计费" + }, + { + "指标名称": "建场费合计_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "4195.76", + "关键字": "@其他费用.建设场地征用及清理费" + }, + { + "指标名称": "项目建设管理费合计_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "338174.93", + "关键字": "@其他费用.项目建设管理费" + }, + { + "指标名称": "其中:工程监理费_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "123996.47", + "关键字": "@其他费用.工程监理费" + }, + { + "指标名称": "项目建设技术服务费合计_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "775724.2", + "关键字": "@其他费用.项目建设技术服务费" + }, + { + "指标名称": "其中:项目前期工作费_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "0", + "关键字": "@其他费用.项目前期工作费" + }, + { + "指标名称": "其中:勘察费_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "37067.92", + "关键字": "@其他费用.勘察费" + }, + { + "指标名称": "其中:设计费_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "500184.23", + "关键字": "@其他费用.设计费" + }, + { + "指标名称": "其中:工程建设检测费_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "24541.28", + "关键字": "@其他费用.工程建设检测费" + }, + { + "指标名称": "生产准备费_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "62468.72", + "关键字": "@其他费用.生产准备费" + }, + { + "指标名称": "其中:安全文明施工费_线路_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "228911.54", + "关键字": "安全文明施工费", + "指标提取范围": "架空输电线路本体工程" + }, + { + "指标名称": "其中:安全文明施工费_调试_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "项目划分费用", + "指标值": "0", + "关键字": "安全文明施工费", + "指标提取范围": "架空输电线路本体工程" + }, + { + "指标名称": "基本预备费_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "123356.92", + "关键字": "@工程费用.基本预备费.合计费" + }, + { + "指标名称": "静态投资_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "12459048.6", + "关键字": "@工程费用.工程静态投资(一~七项合计).合计费" + }, + { + "指标名称": "建设期利息_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "220992.37", + "关键字": "@工程费用.建设期贷款利息.合计费" + }, + { + "指标名称": "动态投资_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "12680040.98", + "关键字": "@工程费用.工程动态投资(一~八项合计).合计费" + }, + { + "指标名称": "增值税抵扣税额_元", + "单位": "元", + "指标类型": "造价指标", + "数据来源": "工程费用", + "指标值": "1130943.8", + "关键字": "@工程费用.其中:可抵扣增值税额.合计费" + } + ], + "overvoltage": { + "岩石灌浆基础超灌量": "8", + "灌注桩超灌量": "17", + "钻孔爆扩基础超灌量": "7", + "掏挖基础超灌量": "7", + "现浇护壁超灌量": "17" + }, + "reportTab": [ + "安装" + ], + "projectInfo": { + "阶段类型": "概预算", + "执行规范": "电网预规2018年版", + "工程名称": "220kV架空线路工程", + "线路亘长": "8.23", + "调差选择所在地": "江西", + "软件名称": "博微电力建设计价通软件", + "工程阶段": "施工图预算", + "是否是合并工程": "否", + "新建日期": "2024-09-15", + "工程总投资": "1268.0041", + "项目划分": "架空输电线路工程", + "地区类型": "Ⅰ类", + "工程动态投资(万元)": "12680040.977457", + "工程所在地": "江西", + "编制时间": "2024-09-15", + "特殊地区": "常规地区", + "表头设置": "预算", + "工程静态投资(万元)": "12459048.602864", + "工程性质": "新建", + "电压等级": "220kV", + "专业类型": "送电", + "架线类型": "一般线路", + "配置选项": "2018年版预规", + "工程版本": "3.2.3.32", + "预算类型": "施工图预算", + "组价方式": "综合单价", + "甲供材料计入本体": "是", + "BCL版本": "3.2.3", + "安装材料调差系数": "7.31", + "不同土质定额归属不同清单": "是", + "是否按单位控制工程量精度": "否", + "安装人工调差系数": "13.23", + "安装主要设备运杂费率": "0", + "施工企业配合调试费费率": "0", + "安装材机调差系数": "调差系数明细请在软件查阅", + "调差选择地区类型": "Ⅰ类 地区", + "相同清单合并": "是(清单属性及工程量一致)", + "拆除调差系数年份": "2024年上半年调差系数文件(28号文)", + "住房公积金缴费费率": "12", + "社会保险费缴费费率": "23.8", + "基本预备费费率": "1", + "材料调差系数": "7.31", + "安装其他设备运杂费率": "0", + "机械调差系数": "7.31", + "人工调差系数": "13.23", + "工程税率": "9", + "调差系数年份": "调差系数文件〔2024年1号文〕", + "安装机械调差系数": "7.31" + }, + "quantityAccuracy": [ + { + "序号": "1", + "计量单位": "其他未列单位", + "清单工程量精度": "2", + "定额数量精度": "2", + "主材数量精度": "2", + "设备数量精度": "2", + "合价列精度": "0" + }, + { + "序号": "2", + "计量单位": "米", + "清单工程量精度": "2", + "定额数量精度": "2", + "主材数量精度": "2", + "设备数量精度": "2", + "合价列精度": "0" + }, + { + "序号": "3", + "计量单位": "m", + "清单工程量精度": "2", + "定额数量精度": "2", + "主材数量精度": "2", + "设备数量精度": "2", + "合价列精度": "0" + }, + { + "序号": "4", + "计量单位": "m?", + "清单工程量精度": "2", + "定额数量精度": "2", + "主材数量精度": "2", + "设备数量精度": "2", + "合价列精度": "0" + }, + { + "序号": "5", + "计量单位": "m?", + "清单工程量精度": "2", + "定额数量精度": "2", + "主材数量精度": "2", + "设备数量精度": "2", + "合价列精度": "0" + }, + { + "序号": "6", + "计量单位": "平方米", + "清单工程量精度": "2", + "定额数量精度": "2", + "主材数量精度": "2", + "设备数量精度": "2", + "合价列精度": "0" + }, + { + "序号": "7", + "计量单位": "立方米", + "清单工程量精度": "2", + "定额数量精度": "2", + "主材数量精度": "2", + "设备数量精度": "2", + "合价列精度": "0" + }, + { + "序号": "8", + "计量单位": "跨/三相", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "9", + "计量单位": "组/三相", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "10", + "计量单位": "km", + "清单工程量精度": "3", + "定额数量精度": "3", + "主材数量精度": "3", + "设备数量精度": "3", + "合价列精度": "0" + }, + { + "序号": "11", + "计量单位": "千米", + "清单工程量精度": "3", + "定额数量精度": "3", + "主材数量精度": "3", + "设备数量精度": "3", + "合价列精度": "0" + }, + { + "序号": "12", + "计量单位": "吨", + "清单工程量精度": "3", + "定额数量精度": "3", + "主材数量精度": "3", + "设备数量精度": "3", + "合价列精度": "0" + }, + { + "序号": "13", + "计量单位": "t", + "清单工程量精度": "3", + "定额数量精度": "3", + "主材数量精度": "3", + "设备数量精度": "3", + "合价列精度": "0" + }, + { + "序号": "14", + "计量单位": "t.km", + "清单工程量精度": "3", + "定额数量精度": "3", + "主材数量精度": "3", + "设备数量精度": "3", + "合价列精度": "0" + }, + { + "序号": "15", + "计量单位": "t·处", + "清单工程量精度": "3", + "定额数量精度": "3", + "主材数量精度": "3", + "设备数量精度": "3", + "合价列精度": "0" + }, + { + "序号": "16", + "计量单位": "串", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "17", + "计量单位": "端机", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "18", + "计量单位": "台", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "19", + "计量单位": "只", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "20", + "计量单位": "套", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "21", + "计量单位": "个", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "22", + "计量单位": "座", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "23", + "计量单位": "口", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "24", + "计量单位": "基", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "25", + "计量单位": "块", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "26", + "计量单位": "组", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "27", + "计量单位": "根", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "28", + "计量单位": "处", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "29", + "计量单位": "盘", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "30", + "计量单位": "头", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "31", + "计量单位": "段", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "32", + "计量单位": "单相", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "33", + "计量单位": "单极", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "34", + "计量单位": "部", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "35", + "计量单位": "付", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "36", + "计量单位": "副", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "37", + "计量单位": "回", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "38", + "计量单位": "互联段/三相", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "39", + "计量单位": "台(三相)", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "40", + "计量单位": "极", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "41", + "计量单位": "片", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "42", + "计量单位": "面", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "43", + "计量单位": "条", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "44", + "计量单位": "套·天", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "45", + "计量单位": "具", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "46", + "计量单位": "项", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "47", + "计量单位": "样", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "48", + "计量单位": "支", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "49", + "计量单位": "中继段", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "50", + "计量单位": "卷", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "51", + "计量单位": "间隔", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "52", + "计量单位": "站", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "53", + "计量单位": "件", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "54", + "计量单位": "m单线", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "55", + "计量单位": "台(单相)", + "清单工程量精度": "0", + "定额数量精度": "0", + "主材数量精度": "0", + "设备数量精度": "0", + "合价列精度": "0" + }, + { + "序号": "0", + "清单工程量精度": "3", + "定额数量精度": "3", + "主材数量精度": "3", + "设备数量精度": "3", + "合价列精度": "0" + } + ], + "expensePreview": { + "安装工程": { + "安装": [ + { + "GUID": "{5EDA70B4-B6B3-4C9C-AED0-2A1940477935}", + "children": [ + { + "GUID": "{1F71BCC1-B088-49F6-814B-CE7E63538A3E}", + "children": [ + { + "GUID": "{3CA66E10-EBB1-41E4-8B9B-23EFEA1B0E98}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "71533.303626" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "1238.267969" + }, + { + "id": "安装费_AZF", + "cost": "250340.309025" + }, + { + "id": "社会保险费_BZHF", + "cost": "23961.410263" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "113433.353874" + }, + { + "id": "利润_FFR", + "cost": "10271.509411" + }, + { + "id": "人工费_RGF", + "cost": "95883.994649" + }, + { + "id": "材料价差_CJC", + "cost": "44.59019" + }, + { + "id": "材料费_CLF", + "cost": "609.98892" + }, + { + "id": "住房公积金_GJJ", + "cost": "12081.383326" + }, + { + "id": "措施费_FFZ2", + "cost": "20463.530718" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "44.59019" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "2147.80148" + }, + { + "id": "施工机械使用费_JXF", + "cost": "16939.370305" + }, + { + "cost": "27936.621303" + }, + { + "id": "虚节点", + "cost": "27936.621303" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "1238.267969" + }, + { + "id": "企业管理费_GLF", + "cost": "34288.116486" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "13968.310651" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "20670.300745" + }, + { + "cost": "1001361.236101" + }, + { + "id": "临时设施费_LSF", + "cost": "7203.017971" + }, + { + "id": "总计_ZJ", + "cost": "250340.309025" + }, + { + "id": "编制基准期价差_JC", + "cost": "13968.310651" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "1202.393551" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "13968.310651" + }, + { + "id": "人工价差_RJC", + "cost": "12685.452492" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "4026.884063" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "3662.768596" + }, + { + "id": "虚节点", + "cost": "1001361.236101" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "36042.793588" + }, + { + "id": "直接费_FFZ", + "cost": "133896.884592" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "3423.058609" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "12685.452492" + }, + { + "id": "合计_HJ", + "cost": "250340.309025" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "113433.353874" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "71533.303626" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "1238.267969" + }, + { + "id": "安装费_AZF", + "cost": "250340.309025" + }, + { + "id": "社会保险费_BZHF", + "cost": "23961.410263" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "113433.353874" + }, + { + "id": "利润_FFR", + "cost": "10271.509411" + }, + { + "id": "人工费_RGF", + "cost": "95883.994649" + }, + { + "id": "材料价差_CJC", + "cost": "44.59019" + }, + { + "id": "材料费_CLF", + "cost": "609.98892" + }, + { + "id": "住房公积金_GJJ", + "cost": "12081.383326" + }, + { + "id": "措施费_FFZ2", + "cost": "20463.530718" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "44.59019" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "2147.80148" + }, + { + "id": "施工机械使用费_JXF", + "cost": "16939.370305" + }, + { + "cost": "1029297.857404" + }, + { + "id": "虚节点", + "cost": "1029297.857404" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "1238.267969" + }, + { + "id": "企业管理费_GLF", + "cost": "34288.116486" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "13968.310651" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "20670.300745" + }, + { + "id": "临时设施费_LSF", + "cost": "7203.017971" + }, + { + "id": "总计_ZJ", + "cost": "250340.309025" + }, + { + "id": "编制基准期价差_JC", + "cost": "13968.310651" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "1202.393551" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "13968.310651" + }, + { + "id": "人工价差_RJC", + "cost": "12685.452492" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "4026.884063" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "3662.768596" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "36042.793588" + }, + { + "id": "直接费_FFZ", + "cost": "133896.884592" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "3423.058609" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "12685.452492" + }, + { + "id": "合计_HJ", + "cost": "250340.309025" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "113433.353874" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{8CB97951-86E4-4AFA-ABB0-72841C4F5886}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "326451.806055" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "14324.978998" + }, + { + "id": "安装费_AZF", + "cost": "1403039.901482" + }, + { + "id": "社会保险费_BZHF", + "cost": "108646.178879" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "712864.060804" + }, + { + "id": "利润_FFR", + "cost": "57587.833194" + }, + { + "id": "人工费_RGF", + "cost": "434758.618964" + }, + { + "id": "材料价差_CJC", + "cost": "6004.5288" + }, + { + "id": "材料费_CLF", + "cost": "82141.29686" + }, + { + "id": "住房公积金_GJJ", + "cost": "54779.58599" + }, + { + "id": "措施费_FFZ2", + "cost": "112440.797026" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "6004.5288" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "9738.593065" + }, + { + "id": "施工机械使用费_JXF", + "cost": "195964.14498" + }, + { + "cost": "155696.146175" + }, + { + "id": "虚节点", + "cost": "155696.146175" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "14324.978998" + }, + { + "id": "企业管理费_GLF", + "cost": "155469.682142" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "77848.073087" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "115847.331315" + }, + { + "cost": "5612159.605928" + }, + { + "id": "临时设施费_LSF", + "cost": "45266.867861" + }, + { + "id": "总计_ZJ", + "cost": "1403039.901482" + }, + { + "id": "编制基准期价差_JC", + "cost": "77848.073087" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "7556.359045" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "77848.073087" + }, + { + "id": "人工价差_RJC", + "cost": "57518.565289" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "25306.674159" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "16607.779244" + }, + { + "id": "虚节点", + "cost": "5612159.605928" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "163425.764869" + }, + { + "id": "直接费_FFZ", + "cost": "825304.85783" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "15520.882697" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "57518.565289" + }, + { + "id": "合计_HJ", + "cost": "1403039.901482" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "712864.060804" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "326451.806055" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "14324.978998" + }, + { + "id": "安装费_AZF", + "cost": "1403039.901482" + }, + { + "id": "社会保险费_BZHF", + "cost": "108646.178879" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "712864.060804" + }, + { + "id": "利润_FFR", + "cost": "57587.833194" + }, + { + "id": "人工费_RGF", + "cost": "434758.618964" + }, + { + "id": "材料价差_CJC", + "cost": "6004.5288" + }, + { + "id": "材料费_CLF", + "cost": "82141.29686" + }, + { + "id": "住房公积金_GJJ", + "cost": "54779.58599" + }, + { + "id": "措施费_FFZ2", + "cost": "112440.797026" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "6004.5288" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "9738.593065" + }, + { + "id": "施工机械使用费_JXF", + "cost": "195964.14498" + }, + { + "cost": "5767855.752103" + }, + { + "id": "虚节点", + "cost": "5767855.752103" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "14324.978998" + }, + { + "id": "企业管理费_GLF", + "cost": "155469.682142" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "77848.073087" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "115847.331315" + }, + { + "id": "临时设施费_LSF", + "cost": "45266.867861" + }, + { + "id": "总计_ZJ", + "cost": "1403039.901482" + }, + { + "id": "编制基准期价差_JC", + "cost": "77848.073087" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "7556.359045" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "77848.073087" + }, + { + "id": "人工价差_RJC", + "cost": "57518.565289" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "25306.674159" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "16607.779244" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "163425.764869" + }, + { + "id": "直接费_FFZ", + "cost": "825304.85783" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "15520.882697" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "57518.565289" + }, + { + "id": "合计_HJ", + "cost": "1403039.901482" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "712864.060804" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{8C4CC636-3741-4F07-865A-28D38AB7F31D}", + "children": [ + { + "GUID": "{9DFD2FF9-F903-4144-AA90-E96684444E8B}" + }, + { + "GUID": "{6430D09F-1680-44F5-9BB7-1DB415E4810B}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "160719.352565" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "2863.20456" + }, + { + "id": "安装费_AZF", + "cost": "772552.470793" + }, + { + "id": "社会保险费_BZHF", + "cost": "53676.212062" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "644657.849816" + }, + { + "id": "主材费_ZCF", + "cost": "996944.127814" + }, + { + "id": "定额直接费_DZF", + "cost": "299087.430503" + }, + { + "id": "利润_FFR", + "cost": "58882.19964" + }, + { + "id": "人工费_RGF", + "cost": "214790.764556" + }, + { + "id": "材料价差_CJC", + "cost": "3298.881721" + }, + { + "id": "材料费_CLF", + "cost": "45128.340914" + }, + { + "id": "住房公积金_GJJ", + "cost": "27063.636334" + }, + { + "id": "措施费_FFZ2", + "cost": "73179.359915" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "3298.881721" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "4811.313126" + }, + { + "id": "施工机械使用费_JXF", + "cost": "39168.325034" + }, + { + "cost": "773730.364859" + }, + { + "id": "虚节点", + "cost": "773730.364859" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "352286.277998" + }, + { + "id": "机械价差_JJC", + "cost": "2863.20456" + }, + { + "id": "企业管理费_GLF", + "cost": "76809.177405" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "352286.277998" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "386865.18243" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "146105.223738" + }, + { + "cost": "7077986.394429" + }, + { + "id": "临时设施费_LSF", + "cost": "18992.051837" + }, + { + "id": "总计_ZJ", + "cost": "1769496.598607" + }, + { + "id": "编制基准期价差_JC", + "cost": "386865.18243" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "3170.326763" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "386865.18243" + }, + { + "id": "人工价差_RJC", + "cost": "28416.818151" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "33502.957451" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "644657.849816" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "8205.007206" + }, + { + "id": "虚节点", + "cost": "7077986.394429" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "80739.848397" + }, + { + "id": "直接费_FFZ", + "cost": "1016924.640234" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "7668.030295" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "28416.818151" + }, + { + "id": "合计_HJ", + "cost": "1769496.598607" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "352286.277998" + }, + { + "id": "直接工程费_FFZ1", + "cost": "943745.280319" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "160719.352565" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "2863.20456" + }, + { + "id": "安装费_AZF", + "cost": "772552.470793" + }, + { + "id": "社会保险费_BZHF", + "cost": "53676.212062" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "644657.849816" + }, + { + "id": "主材费_ZCF", + "cost": "996944.127814" + }, + { + "id": "定额直接费_DZF", + "cost": "299087.430503" + }, + { + "id": "利润_FFR", + "cost": "58882.19964" + }, + { + "id": "人工费_RGF", + "cost": "214790.764556" + }, + { + "id": "材料价差_CJC", + "cost": "3298.881721" + }, + { + "id": "材料费_CLF", + "cost": "45128.340914" + }, + { + "id": "住房公积金_GJJ", + "cost": "27063.636334" + }, + { + "id": "措施费_FFZ2", + "cost": "73179.359915" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "3298.881721" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "4811.313126" + }, + { + "id": "施工机械使用费_JXF", + "cost": "39168.325034" + }, + { + "cost": "7851716.759288" + }, + { + "id": "虚节点", + "cost": "7851716.759288" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "352286.277998" + }, + { + "id": "机械价差_JJC", + "cost": "2863.20456" + }, + { + "id": "企业管理费_GLF", + "cost": "76809.177405" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "352286.277998" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "386865.18243" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "146105.223738" + }, + { + "id": "临时设施费_LSF", + "cost": "18992.051837" + }, + { + "id": "总计_ZJ", + "cost": "1769496.598607" + }, + { + "id": "编制基准期价差_JC", + "cost": "386865.18243" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "3170.326763" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "386865.18243" + }, + { + "id": "人工价差_RJC", + "cost": "28416.818151" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "33502.957451" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "644657.849816" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "8205.007206" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "80739.848397" + }, + { + "id": "直接费_FFZ", + "cost": "1016924.640234" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "7668.030295" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "28416.818151" + }, + { + "id": "合计_HJ", + "cost": "1769496.598607" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "352286.277998" + }, + { + "id": "直接工程费_FFZ1", + "cost": "943745.280319" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{0B8DAC34-A8BD-46A6-B92D-BF7CCB2C6A99}" + }, + { + "GUID": "{7372B2CF-C6CF-403D-91BE-C402AF92DA60}" + }, + { + "GUID": "{8ECB16E6-C571-4576-A248-0A50186C1A95}" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "160719.352565" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "2863.20456" + }, + { + "id": "安装费_AZF", + "cost": "772552.470793" + }, + { + "id": "社会保险费_BZHF", + "cost": "53676.212062" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "644657.849816" + }, + { + "id": "主材费_ZCF", + "cost": "996944.127814" + }, + { + "id": "定额直接费_DZF", + "cost": "299087.430503" + }, + { + "id": "利润_FFR", + "cost": "58882.19964" + }, + { + "id": "人工费_RGF", + "cost": "214790.764556" + }, + { + "id": "材料价差_CJC", + "cost": "3298.881721" + }, + { + "id": "材料费_CLF", + "cost": "45128.340914" + }, + { + "id": "住房公积金_GJJ", + "cost": "27063.636334" + }, + { + "id": "措施费_FFZ2", + "cost": "73179.359915" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "3298.881721" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "4811.313126" + }, + { + "id": "施工机械使用费_JXF", + "cost": "39168.325034" + }, + { + "cost": "7851716.759288" + }, + { + "id": "虚节点", + "cost": "7851716.759288" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "352286.277998" + }, + { + "id": "机械价差_JJC", + "cost": "2863.20456" + }, + { + "id": "企业管理费_GLF", + "cost": "76809.177405" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "352286.277998" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "386865.18243" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "146105.223738" + }, + { + "id": "临时设施费_LSF", + "cost": "18992.051837" + }, + { + "id": "总计_ZJ", + "cost": "1769496.598607" + }, + { + "id": "编制基准期价差_JC", + "cost": "386865.18243" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "3170.326763" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "386865.18243" + }, + { + "id": "人工价差_RJC", + "cost": "28416.818151" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "33502.957451" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "644657.849816" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "8205.007206" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "80739.848397" + }, + { + "id": "直接费_FFZ", + "cost": "1016924.640234" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "7668.030295" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "28416.818151" + }, + { + "id": "合计_HJ", + "cost": "1769496.598607" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "352286.277998" + }, + { + "id": "直接工程费_FFZ1", + "cost": "943745.280319" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{60020B85-E823-4F47-8957-E09B1808ED57}" + }, + { + "GUID": "{D5646DAA-6D22-4671-A2D7-D6ABC3081260}" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "558704.4622460001" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "18426.451527" + }, + { + "id": "安装费_AZF", + "cost": "2425932.6813000003" + }, + { + "id": "社会保险费_BZHF", + "cost": "186283.80120400002" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "644657.849816" + }, + { + "id": "主材费_ZCF", + "cost": "996944.127814" + }, + { + "id": "定额直接费_DZF", + "cost": "1125384.845181" + }, + { + "id": "利润_FFR", + "cost": "126741.54224499999" + }, + { + "id": "人工费_RGF", + "cost": "745433.378169" + }, + { + "id": "材料价差_CJC", + "cost": "9348.000711" + }, + { + "id": "材料费_CLF", + "cost": "127879.626694" + }, + { + "id": "住房公积金_GJJ", + "cost": "93924.60565" + }, + { + "id": "措施费_FFZ2", + "cost": "206083.687659" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0.0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "9348.000711" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "16697.707671" + }, + { + "id": "施工机械使用费_JXF", + "cost": "252071.840319" + }, + { + "cost": "14648870.368795" + }, + { + "id": "虚节点", + "cost": "14648870.368795" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "352286.277998" + }, + { + "id": "机械价差_JJC", + "cost": "18426.451527" + }, + { + "id": "企业管理费_GLF", + "cost": "266566.97603300004" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "352286.277998" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0.0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "478681.566168" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0.0" + }, + { + "id": "税金_FFS", + "cost": "282622.855798" + }, + { + "id": "临时设施费_LSF", + "cost": "71461.937669" + }, + { + "id": "总计_ZJ", + "cost": "3422876.809114" + }, + { + "id": "编制基准期价差_JC", + "cost": "478681.566168" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "11929.079359" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "478681.566168" + }, + { + "id": "人工价差_RJC", + "cost": "98620.835932" + }, + { + "id": "设备费_SBF", + "cost": "0.0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "62836.515673" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "644657.849816" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "28475.555046" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0.0" + }, + { + "id": "规费_GF", + "cost": "280208.406854" + }, + { + "id": "直接费_FFZ", + "cost": "1976126.382656" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "26611.971601" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "98620.835932" + }, + { + "id": "合计_HJ", + "cost": "3422876.809114" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0.0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "352286.277998" + }, + { + "id": "直接工程费_FFZ1", + "cost": "1770042.694997" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0.0" + } + ] + }, + { + "GUID": "{67ED7087-CD54-471F-904D-CC90937A126A}", + "children": [ + { + "GUID": "{C7C875F4-66C0-4B09-B8E6-D334EB761640}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "25443.570269" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "1846.396848" + }, + { + "id": "安装费_AZF", + "cost": "114455.869103" + }, + { + "id": "社会保险费_BZHF", + "cost": "8454.049805" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "59383.25445" + }, + { + "id": "利润_FFR", + "cost": "4698.178501" + }, + { + "id": "人工费_RGF", + "cost": "33829.731113" + }, + { + "id": "材料价差_CJC", + "cost": "21.565708" + }, + { + "id": "材料费_CLF", + "cost": "295.01652" + }, + { + "id": "住房公积金_GJJ", + "cost": "4262.54612" + }, + { + "id": "措施费_FFZ2", + "cost": "9136.745297" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "21.565708" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "757.785977" + }, + { + "id": "施工机械使用费_JXF", + "cost": "25258.506817" + }, + { + "cost": "12687.271964" + }, + { + "id": "虚节点", + "cost": "12687.271964" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "1846.396848" + }, + { + "id": "企业管理费_GLF", + "cost": "12097.511846" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "6343.635982" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "9450.484605" + }, + { + "cost": "457823.476411" + }, + { + "id": "临时设施费_LSF", + "cost": "3770.836658" + }, + { + "id": "总计_ZJ", + "cost": "114455.869103" + }, + { + "id": "编制基准期价差_JC", + "cost": "6343.635982" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "629.462497" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "6343.635982" + }, + { + "id": "人工价差_RJC", + "cost": "4475.673426" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "2108.105533" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "1292.295729" + }, + { + "id": "虚节点", + "cost": "457823.476411" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "12716.595925" + }, + { + "id": "直接费_FFZ", + "cost": "68519.999747" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "1207.721401" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "4475.673426" + }, + { + "id": "合计_HJ", + "cost": "114455.869103" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "59383.25445" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "25443.570269" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "1846.396848" + }, + { + "id": "安装费_AZF", + "cost": "114455.869103" + }, + { + "id": "社会保险费_BZHF", + "cost": "8454.049805" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "59383.25445" + }, + { + "id": "利润_FFR", + "cost": "4698.178501" + }, + { + "id": "人工费_RGF", + "cost": "33829.731113" + }, + { + "id": "材料价差_CJC", + "cost": "21.565708" + }, + { + "id": "材料费_CLF", + "cost": "295.01652" + }, + { + "id": "住房公积金_GJJ", + "cost": "4262.54612" + }, + { + "id": "措施费_FFZ2", + "cost": "9136.745297" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "21.565708" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "757.785977" + }, + { + "id": "施工机械使用费_JXF", + "cost": "25258.506817" + }, + { + "cost": "470510.748375" + }, + { + "id": "虚节点", + "cost": "470510.748375" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "1846.396848" + }, + { + "id": "企业管理费_GLF", + "cost": "12097.511846" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "6343.635982" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "9450.484605" + }, + { + "id": "临时设施费_LSF", + "cost": "3770.836658" + }, + { + "id": "总计_ZJ", + "cost": "114455.869103" + }, + { + "id": "编制基准期价差_JC", + "cost": "6343.635982" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "629.462497" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "6343.635982" + }, + { + "id": "人工价差_RJC", + "cost": "4475.673426" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "2108.105533" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "1292.295729" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "12716.595925" + }, + { + "id": "直接费_FFZ", + "cost": "68519.999747" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "1207.721401" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "4475.673426" + }, + { + "id": "合计_HJ", + "cost": "114455.869103" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "59383.25445" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{8E843F68-34F5-4E5B-A204-C13F3EB10054}", + "children": [ + { + "GUID": "{A48517A8-9099-4519-9D39-F27990A0FEC9}" + }, + { + "GUID": "{F971B5D8-7C59-483E-ADD5-BF8EBC488AD0}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "103787.953507" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "1575.993809" + }, + { + "id": "安装费_AZF", + "cost": "503269.807769" + }, + { + "id": "社会保险费_BZHF", + "cost": "34774.038701" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "1700094.18" + }, + { + "id": "主材费_ZCF", + "cost": "2397932.83812" + }, + { + "id": "定额直接费_DZF", + "cost": "162273.28444" + }, + { + "id": "利润_FFR", + "cost": "92676.133557" + }, + { + "id": "人工费_RGF", + "cost": "139151.815531" + }, + { + "id": "材料价差_CJC", + "cost": "114.185568" + }, + { + "id": "材料费_CLF", + "cost": "1562.04608" + }, + { + "id": "住房公积金_GJJ", + "cost": "17533.128757" + }, + { + "id": "措施费_FFZ2", + "cost": "82878.083895" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "1700094.18" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "114.185568" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "3117.000668" + }, + { + "id": "施工机械使用费_JXF", + "cost": "21559.422829" + }, + { + "cost": "1435877.245384" + }, + { + "id": "虚节点", + "cost": "1435877.245384" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "697838.65812" + }, + { + "id": "机械价差_JJC", + "cost": "1575.993809" + }, + { + "id": "企业管理费_GLF", + "cost": "49760.689234" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "697838.65812" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "717938.622692" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "697838.65812" + }, + { + "id": "税金_FFS", + "cost": "41554.387797" + }, + { + "cost": "11604810.583556" + }, + { + "id": "临时设施费_LSF", + "cost": "10304.353562" + }, + { + "id": "总计_ZJ", + "cost": "2901202.645889" + }, + { + "id": "编制基准期价差_JC", + "cost": "717938.622692" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "1720.096815" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "717938.622692" + }, + { + "id": "人工价差_RJC", + "cost": "18409.785195" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "59173.410498" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "5315.599353" + }, + { + "id": "虚节点", + "cost": "11604810.583556" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "52307.167458" + }, + { + "id": "直接费_FFZ", + "cost": "1945245.548335" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "4967.719814" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "18409.785195" + }, + { + "id": "合计_HJ", + "cost": "2901202.645889" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "1862367.46444" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "103787.953507" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "1575.993809" + }, + { + "id": "安装费_AZF", + "cost": "503269.807769" + }, + { + "id": "社会保险费_BZHF", + "cost": "34774.038701" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "1700094.18" + }, + { + "id": "主材费_ZCF", + "cost": "2397932.83812" + }, + { + "id": "定额直接费_DZF", + "cost": "162273.28444" + }, + { + "id": "利润_FFR", + "cost": "92676.133557" + }, + { + "id": "人工费_RGF", + "cost": "139151.815531" + }, + { + "id": "材料价差_CJC", + "cost": "114.185568" + }, + { + "id": "材料费_CLF", + "cost": "1562.04608" + }, + { + "id": "住房公积金_GJJ", + "cost": "17533.128757" + }, + { + "id": "措施费_FFZ2", + "cost": "82878.083895" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "1700094.18" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "114.185568" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "3117.000668" + }, + { + "id": "施工机械使用费_JXF", + "cost": "21559.422829" + }, + { + "cost": "13040687.82894" + }, + { + "id": "虚节点", + "cost": "13040687.82894" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "697838.65812" + }, + { + "id": "机械价差_JJC", + "cost": "1575.993809" + }, + { + "id": "企业管理费_GLF", + "cost": "49760.689234" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "697838.65812" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "717938.622692" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "697838.65812" + }, + { + "id": "税金_FFS", + "cost": "41554.387797" + }, + { + "id": "临时设施费_LSF", + "cost": "10304.353562" + }, + { + "id": "总计_ZJ", + "cost": "2901202.645889" + }, + { + "id": "编制基准期价差_JC", + "cost": "717938.622692" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "1720.096815" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "717938.622692" + }, + { + "id": "人工价差_RJC", + "cost": "18409.785195" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "59173.410498" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "5315.599353" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "52307.167458" + }, + { + "id": "直接费_FFZ", + "cost": "1945245.548335" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "4967.719814" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "18409.785195" + }, + { + "id": "合计_HJ", + "cost": "2901202.645889" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "1862367.46444" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "103787.953507" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "1575.993809" + }, + { + "id": "安装费_AZF", + "cost": "503269.807769" + }, + { + "id": "社会保险费_BZHF", + "cost": "34774.038701" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "1700094.18" + }, + { + "id": "主材费_ZCF", + "cost": "2397932.83812" + }, + { + "id": "定额直接费_DZF", + "cost": "162273.28444" + }, + { + "id": "利润_FFR", + "cost": "92676.133557" + }, + { + "id": "人工费_RGF", + "cost": "139151.815531" + }, + { + "id": "材料价差_CJC", + "cost": "114.185568" + }, + { + "id": "材料费_CLF", + "cost": "1562.04608" + }, + { + "id": "住房公积金_GJJ", + "cost": "17533.128757" + }, + { + "id": "措施费_FFZ2", + "cost": "82878.083895" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "1700094.18" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "114.185568" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "3117.000668" + }, + { + "id": "施工机械使用费_JXF", + "cost": "21559.422829" + }, + { + "cost": "13040687.82894" + }, + { + "id": "虚节点", + "cost": "13040687.82894" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "697838.65812" + }, + { + "id": "机械价差_JJC", + "cost": "1575.993809" + }, + { + "id": "企业管理费_GLF", + "cost": "49760.689234" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "697838.65812" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "717938.622692" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "697838.65812" + }, + { + "id": "税金_FFS", + "cost": "41554.387797" + }, + { + "id": "临时设施费_LSF", + "cost": "10304.353562" + }, + { + "id": "总计_ZJ", + "cost": "2901202.645889" + }, + { + "id": "编制基准期价差_JC", + "cost": "717938.622692" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "1720.096815" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "717938.622692" + }, + { + "id": "人工价差_RJC", + "cost": "18409.785195" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "59173.410498" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "5315.599353" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "52307.167458" + }, + { + "id": "直接费_FFZ", + "cost": "1945245.548335" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "4967.719814" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "18409.785195" + }, + { + "id": "合计_HJ", + "cost": "2901202.645889" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "1862367.46444" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "129231.523776" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "3422.390657" + }, + { + "id": "安装费_AZF", + "cost": "617725.676872" + }, + { + "id": "社会保险费_BZHF", + "cost": "43228.088506" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "1700094.18" + }, + { + "id": "主材费_ZCF", + "cost": "2397932.83812" + }, + { + "id": "定额直接费_DZF", + "cost": "221656.53889" + }, + { + "id": "利润_FFR", + "cost": "97374.312058" + }, + { + "id": "人工费_RGF", + "cost": "172981.546644" + }, + { + "id": "材料价差_CJC", + "cost": "135.75127600000002" + }, + { + "id": "材料费_CLF", + "cost": "1857.0626000000002" + }, + { + "id": "住房公积金_GJJ", + "cost": "21795.674876999998" + }, + { + "id": "措施费_FFZ2", + "cost": "92014.829192" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "1700094.18" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "135.75127600000002" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "3874.786645" + }, + { + "id": "施工机械使用费_JXF", + "cost": "46817.929646000004" + }, + { + "cost": "13511198.577315" + }, + { + "id": "虚节点", + "cost": "13511198.577315" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "697838.65812" + }, + { + "id": "机械价差_JJC", + "cost": "3422.390657" + }, + { + "id": "企业管理费_GLF", + "cost": "61858.20108" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "697838.65812" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0.0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "724282.258674" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "697838.65812" + }, + { + "id": "税金_FFS", + "cost": "51004.872402" + }, + { + "id": "临时设施费_LSF", + "cost": "14075.19022" + }, + { + "id": "总计_ZJ", + "cost": "3015658.514992" + }, + { + "id": "编制基准期价差_JC", + "cost": "724282.258674" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "2349.5593120000003" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "724282.258674" + }, + { + "id": "人工价差_RJC", + "cost": "22885.458621" + }, + { + "id": "设备费_SBF", + "cost": "0.0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "61281.516031" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0.0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "6607.895081999999" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0.0" + }, + { + "id": "规费_GF", + "cost": "65023.763383000005" + }, + { + "id": "直接费_FFZ", + "cost": "2013765.5480819999" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "6175.441215" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "22885.458621" + }, + { + "id": "合计_HJ", + "cost": "3015658.514992" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0.0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0.0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "1921750.71889" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0.0" + } + ] + }, + { + "GUID": "{0E1C341C-8D14-4AF3-AB28-DDDAED95AF5E}", + "children": [ + { + "GUID": "{6A3CA4F9-E8C8-4C78-BF38-592A1F078AD1}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "338.096978" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "21.831209" + }, + { + "id": "安装费_AZF", + "cost": "1539.190591" + }, + { + "id": "社会保险费_BZHF", + "cost": "112.288876" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "802.790803" + }, + { + "id": "利润_FFR", + "cost": "63.181753" + }, + { + "id": "人工费_RGF", + "cost": "449.335236" + }, + { + "id": "材料价差_CJC", + "cost": "4.006393" + }, + { + "id": "材料费_CLF", + "cost": "54.80702" + }, + { + "id": "住房公积金_GJJ", + "cost": "56.61624" + }, + { + "id": "措施费_FFZ2", + "cost": "122.747273" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "4.006393" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "10.065109" + }, + { + "id": "施工机械使用费_JXF", + "cost": "298.648546" + }, + { + "cost": "170.569307" + }, + { + "id": "虚节点", + "cost": "170.569307" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "21.831209" + }, + { + "id": "企业管理费_GLF", + "cost": "160.68228" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "85.284654" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "127.089131" + }, + { + "cost": "6156.762366" + }, + { + "id": "临时设施费_LSF", + "cost": "50.977216" + }, + { + "id": "总计_ZJ", + "cost": "1539.190591" + }, + { + "id": "编制基准期价差_JC", + "cost": "85.284654" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "8.509583" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "85.284654" + }, + { + "id": "人工价差_RJC", + "cost": "59.447052" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "28.499073" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "17.164606" + }, + { + "id": "虚节点", + "cost": "6156.762366" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "168.905115" + }, + { + "id": "直接费_FFZ", + "cost": "925.538075" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "16.041268" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "59.447052" + }, + { + "id": "合计_HJ", + "cost": "1539.190591" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "802.790803" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "338.096978" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "21.831209" + }, + { + "id": "安装费_AZF", + "cost": "1539.190591" + }, + { + "id": "社会保险费_BZHF", + "cost": "112.288876" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "802.790803" + }, + { + "id": "利润_FFR", + "cost": "63.181753" + }, + { + "id": "人工费_RGF", + "cost": "449.335236" + }, + { + "id": "材料价差_CJC", + "cost": "4.006393" + }, + { + "id": "材料费_CLF", + "cost": "54.80702" + }, + { + "id": "住房公积金_GJJ", + "cost": "56.61624" + }, + { + "id": "措施费_FFZ2", + "cost": "122.747273" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "4.006393" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "10.065109" + }, + { + "id": "施工机械使用费_JXF", + "cost": "298.648546" + }, + { + "cost": "6327.331673" + }, + { + "id": "虚节点", + "cost": "6327.331673" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "21.831209" + }, + { + "id": "企业管理费_GLF", + "cost": "160.68228" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "85.284654" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "127.089131" + }, + { + "id": "临时设施费_LSF", + "cost": "50.977216" + }, + { + "id": "总计_ZJ", + "cost": "1539.190591" + }, + { + "id": "编制基准期价差_JC", + "cost": "85.284654" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "8.509583" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "85.284654" + }, + { + "id": "人工价差_RJC", + "cost": "59.447052" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "28.499073" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "17.164606" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "168.905115" + }, + { + "id": "直接费_FFZ", + "cost": "925.538075" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "16.041268" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "59.447052" + }, + { + "id": "合计_HJ", + "cost": "1539.190591" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "802.790803" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{B3C8BF76-4C5C-41D5-AFD7-CD35005B8086}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "12009.942618" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "107.917588" + }, + { + "id": "安装费_AZF", + "cost": "40095.806048" + }, + { + "id": "社会保险费_BZHF", + "cost": "4028.187109" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "17595.496915" + }, + { + "id": "利润_FFR", + "cost": "1644.983616" + }, + { + "id": "人工费_RGF", + "cost": "16119.196115" + }, + { + "id": "材料价差_CJC", + "cost": "0" + }, + { + "id": "材料费_CLF", + "cost": "0" + }, + { + "id": "住房公积金_GJJ", + "cost": "2031.018711" + }, + { + "id": "措施费_FFZ2", + "cost": "3294.23278" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "0" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "361.069993" + }, + { + "id": "施工机械使用费_JXF", + "cost": "1476.3008" + }, + { + "cost": "4480.974469" + }, + { + "id": "虚节点", + "cost": "4480.974469" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "107.917588" + }, + { + "id": "企业管理费_GLF", + "cost": "5764.224531" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "2240.487235" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "3310.662885" + }, + { + "cost": "160383.224194" + }, + { + "id": "临时设施费_LSF", + "cost": "1117.314054" + }, + { + "id": "总计_ZJ", + "cost": "40095.806048" + }, + { + "id": "编制基准期价差_JC", + "cost": "2240.487235" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "186.512267" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "2240.487235" + }, + { + "id": "人工价差_RJC", + "cost": "2132.569646" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "624.64014" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "615.753292" + }, + { + "id": "虚节点", + "cost": "160383.224194" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "6059.20582" + }, + { + "id": "直接费_FFZ", + "cost": "20889.729696" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "575.455301" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "2132.569646" + }, + { + "id": "合计_HJ", + "cost": "40095.806048" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "17595.496915" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "12009.942618" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "107.917588" + }, + { + "id": "安装费_AZF", + "cost": "40095.806048" + }, + { + "id": "社会保险费_BZHF", + "cost": "4028.187109" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "17595.496915" + }, + { + "id": "利润_FFR", + "cost": "1644.983616" + }, + { + "id": "人工费_RGF", + "cost": "16119.196115" + }, + { + "id": "材料价差_CJC", + "cost": "0" + }, + { + "id": "材料费_CLF", + "cost": "0" + }, + { + "id": "住房公积金_GJJ", + "cost": "2031.018711" + }, + { + "id": "措施费_FFZ2", + "cost": "3294.23278" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "0" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "361.069993" + }, + { + "id": "施工机械使用费_JXF", + "cost": "1476.3008" + }, + { + "cost": "164864.19866300002" + }, + { + "id": "虚节点", + "cost": "164864.19866300002" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "107.917588" + }, + { + "id": "企业管理费_GLF", + "cost": "5764.224531" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "2240.487235" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "3310.662885" + }, + { + "id": "临时设施费_LSF", + "cost": "1117.314054" + }, + { + "id": "总计_ZJ", + "cost": "40095.806048" + }, + { + "id": "编制基准期价差_JC", + "cost": "2240.487235" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "186.512267" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "2240.487235" + }, + { + "id": "人工价差_RJC", + "cost": "2132.569646" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "624.64014" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "615.753292" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "6059.20582" + }, + { + "id": "直接费_FFZ", + "cost": "20889.729696" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "575.455301" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "2132.569646" + }, + { + "id": "合计_HJ", + "cost": "40095.806048" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "17595.496915" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{CBBB7473-263E-4F29-9D9A-E18B6AF6CB96}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "6338.192111" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "124.415704" + }, + { + "id": "安装费_AZF", + "cost": "30130.465702" + }, + { + "id": "社会保险费_BZHF", + "cost": "2121.951026" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "30051.42294" + }, + { + "id": "主材费_ZCF", + "cost": "51859.38912" + }, + { + "id": "定额直接费_DZF", + "cost": "10367.592764" + }, + { + "id": "利润_FFR", + "cost": "2483.406381" + }, + { + "id": "人工费_RGF", + "cost": "8491.200583" + }, + { + "id": "材料价差_CJC", + "cost": "12.748565" + }, + { + "id": "材料费_CLF", + "cost": "174.39897" + }, + { + "id": "住房公积金_GJJ", + "cost": "1069.891273" + }, + { + "id": "措施费_FFZ2", + "cost": "2910.919814" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "12.748565" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "190.202893" + }, + { + "id": "施工机械使用费_JXF", + "cost": "1701.993211" + }, + { + "cost": "46137.032571" + }, + { + "id": "虚节点", + "cost": "46137.032571" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "21807.96618" + }, + { + "id": "机械价差_JJC", + "cost": "124.415704" + }, + { + "id": "企业管理费_GLF", + "cost": "3036.453328" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "21807.96618" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "23068.516286" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "6769.804527" + }, + { + "cost": "327959.41929" + }, + { + "id": "临时设施费_LSF", + "cost": "658.342141" + }, + { + "id": "总计_ZJ", + "cost": "81989.854822" + }, + { + "id": "编制基准期价差_JC", + "cost": "23068.516286" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "109.896483" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "23068.516286" + }, + { + "id": "人工价差_RJC", + "cost": "1123.385837" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "1434.875057" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "30051.42294" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "324.363862" + }, + { + "id": "虚节点", + "cost": "327959.41929" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "3191.842299" + }, + { + "id": "直接费_FFZ", + "cost": "43329.935518" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "303.135861" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1123.385837" + }, + { + "id": "合计_HJ", + "cost": "81989.854822" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "21807.96618" + }, + { + "id": "直接工程费_FFZ1", + "cost": "40419.015704" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "6338.192111" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "124.415704" + }, + { + "id": "安装费_AZF", + "cost": "30130.465702" + }, + { + "id": "社会保险费_BZHF", + "cost": "2121.951026" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "30051.42294" + }, + { + "id": "主材费_ZCF", + "cost": "51859.38912" + }, + { + "id": "定额直接费_DZF", + "cost": "10367.592764" + }, + { + "id": "利润_FFR", + "cost": "2483.406381" + }, + { + "id": "人工费_RGF", + "cost": "8491.200583" + }, + { + "id": "材料价差_CJC", + "cost": "12.748565" + }, + { + "id": "材料费_CLF", + "cost": "174.39897" + }, + { + "id": "住房公积金_GJJ", + "cost": "1069.891273" + }, + { + "id": "措施费_FFZ2", + "cost": "2910.919814" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "12.748565" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "190.202893" + }, + { + "id": "施工机械使用费_JXF", + "cost": "1701.993211" + }, + { + "cost": "374096.451861" + }, + { + "id": "虚节点", + "cost": "374096.451861" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "21807.96618" + }, + { + "id": "机械价差_JJC", + "cost": "124.415704" + }, + { + "id": "企业管理费_GLF", + "cost": "3036.453328" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "21807.96618" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "23068.516286" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "6769.804527" + }, + { + "id": "临时设施费_LSF", + "cost": "658.342141" + }, + { + "id": "总计_ZJ", + "cost": "81989.854822" + }, + { + "id": "编制基准期价差_JC", + "cost": "23068.516286" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "109.896483" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "23068.516286" + }, + { + "id": "人工价差_RJC", + "cost": "1123.385837" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "1434.875057" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "30051.42294" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "324.363862" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "3191.842299" + }, + { + "id": "直接费_FFZ", + "cost": "43329.935518" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "303.135861" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1123.385837" + }, + { + "id": "合计_HJ", + "cost": "81989.854822" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "21807.96618" + }, + { + "id": "直接工程费_FFZ1", + "cost": "40419.015704" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "18686.231707" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "254.164501" + }, + { + "id": "安装费_AZF", + "cost": "71765.462341" + }, + { + "id": "社会保险费_BZHF", + "cost": "6262.427011" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "30051.42294" + }, + { + "id": "主材费_ZCF", + "cost": "51859.38912" + }, + { + "id": "定额直接费_DZF", + "cost": "28765.880482" + }, + { + "id": "利润_FFR", + "cost": "4191.57175" + }, + { + "id": "人工费_RGF", + "cost": "25059.731934000003" + }, + { + "id": "材料价差_CJC", + "cost": "16.754958" + }, + { + "id": "材料费_CLF", + "cost": "229.20598999999999" + }, + { + "id": "住房公积金_GJJ", + "cost": "3157.526224" + }, + { + "id": "措施费_FFZ2", + "cost": "6327.899867" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0.0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "16.754958" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "561.337995" + }, + { + "id": "施工机械使用费_JXF", + "cost": "3476.942557" + }, + { + "cost": "545287.982197" + }, + { + "id": "虚节点", + "cost": "545287.982197" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "21807.96618" + }, + { + "id": "机械价差_JJC", + "cost": "254.164501" + }, + { + "id": "企业管理费_GLF", + "cost": "8961.360139" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "21807.96618" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0.0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "25394.288174999998" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0.0" + }, + { + "id": "税金_FFS", + "cost": "10207.556543" + }, + { + "id": "临时设施费_LSF", + "cost": "1826.6334109999998" + }, + { + "id": "总计_ZJ", + "cost": "123624.85146099998" + }, + { + "id": "编制基准期价差_JC", + "cost": "25394.288174999998" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "304.918333" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "25394.288174999998" + }, + { + "id": "人工价差_RJC", + "cost": "3315.402535" + }, + { + "id": "设备费_SBF", + "cost": "0.0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "2088.0142699999997" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "30051.42294" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "957.2817600000001" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0.0" + }, + { + "id": "规费_GF", + "cost": "9419.953234" + }, + { + "id": "直接费_FFZ", + "cost": "65145.203289" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "894.6324299999999" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "3315.402535" + }, + { + "id": "合计_HJ", + "cost": "123624.85146099998" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0.0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "21807.96618" + }, + { + "id": "直接工程费_FFZ1", + "cost": "58817.303422" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0.0" + } + ] + }, + { + "GUID": "{CC045DB6-3A0A-4D34-8728-5B3268E37904}", + "children": [ + { + "GUID": "{595C0DC6-143C-47E6-9AC4-CD2344A5F0A5}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "1470.378184" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "503.210348" + }, + { + "id": "安装费_AZF", + "cost": "13773.765985" + }, + { + "id": "社会保险费_BZHF", + "cost": "469.18985" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "8794.745431" + }, + { + "id": "利润_FFR", + "cost": "565.830383" + }, + { + "id": "人工费_RGF", + "cost": "1877.510406" + }, + { + "id": "材料价差_CJC", + "cost": "2.439533" + }, + { + "id": "材料费_CLF", + "cost": "33.37254" + }, + { + "id": "住房公积金_GJJ", + "cost": "236.566311" + }, + { + "id": "措施费_FFZ2", + "cost": "1051.48405" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "2.439533" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "42.056233" + }, + { + "id": "施工机械使用费_JXF", + "cost": "6883.862485" + }, + { + "cost": "1508.089014" + }, + { + "id": "虚节点", + "cost": "1508.089014" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "503.210348" + }, + { + "id": "企业管理费_GLF", + "cost": "671.397721" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "754.044507" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "1137.28343" + }, + { + "cost": "55095.063939" + }, + { + "id": "临时设施费_LSF", + "cost": "558.466335" + }, + { + "id": "总计_ZJ", + "cost": "13773.765985" + }, + { + "id": "编制基准期价差_JC", + "cost": "754.044507" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "93.224302" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "754.044507" + }, + { + "id": "人工价差_RJC", + "cost": "248.394627" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "312.213463" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "71.720897" + }, + { + "id": "虚节点", + "cost": "55095.063939" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "705.756161" + }, + { + "id": "直接费_FFZ", + "cost": "9846.229481" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "67.027121" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "248.394627" + }, + { + "id": "合计_HJ", + "cost": "13773.765985" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "8794.745431" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "1470.378184" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "503.210348" + }, + { + "id": "安装费_AZF", + "cost": "13773.765985" + }, + { + "id": "社会保险费_BZHF", + "cost": "469.18985" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "8794.745431" + }, + { + "id": "利润_FFR", + "cost": "565.830383" + }, + { + "id": "人工费_RGF", + "cost": "1877.510406" + }, + { + "id": "材料价差_CJC", + "cost": "2.439533" + }, + { + "id": "材料费_CLF", + "cost": "33.37254" + }, + { + "id": "住房公积金_GJJ", + "cost": "236.566311" + }, + { + "id": "措施费_FFZ2", + "cost": "1051.48405" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "2.439533" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "42.056233" + }, + { + "id": "施工机械使用费_JXF", + "cost": "6883.862485" + }, + { + "cost": "56603.152953" + }, + { + "id": "虚节点", + "cost": "56603.152953" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "503.210348" + }, + { + "id": "企业管理费_GLF", + "cost": "671.397721" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "754.044507" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "1137.28343" + }, + { + "id": "临时设施费_LSF", + "cost": "558.466335" + }, + { + "id": "总计_ZJ", + "cost": "13773.765985" + }, + { + "id": "编制基准期价差_JC", + "cost": "754.044507" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "93.224302" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "754.044507" + }, + { + "id": "人工价差_RJC", + "cost": "248.394627" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "312.213463" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "71.720897" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "705.756161" + }, + { + "id": "直接费_FFZ", + "cost": "9846.229481" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "67.027121" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "248.394627" + }, + { + "id": "合计_HJ", + "cost": "13773.765985" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "8794.745431" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{1BC8E615-4324-48AA-8F7A-049E965D4278}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "63090.658513" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "9143.996608" + }, + { + "id": "安装费_AZF", + "cost": "498299.770342" + }, + { + "id": "社会保险费_BZHF", + "cost": "20695.076224" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "1291297.5052" + }, + { + "id": "主材费_ZCF", + "cost": "1628379.0636" + }, + { + "id": "定额直接费_DZF", + "cost": "221415.793655" + }, + { + "id": "利润_FFR", + "cost": "75284.074883" + }, + { + "id": "人工费_RGF", + "cost": "82813.430267" + }, + { + "id": "材料价差_CJC", + "cost": "987.836156" + }, + { + "id": "材料费_CLF", + "cost": "13513.4905" + }, + { + "id": "住房公积金_GJJ", + "cost": "10434.492214" + }, + { + "id": "措施费_FFZ2", + "cost": "70735.693888" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "1224184" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "987.836156" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "1855.020838" + }, + { + "id": "施工机械使用费_JXF", + "cost": "125088.872888" + }, + { + "cost": "716339.215976" + }, + { + "id": "虚节点", + "cost": "716339.215976" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "337081.5584" + }, + { + "id": "机械价差_JJC", + "cost": "9143.996608" + }, + { + "id": "企业管理费_GLF", + "cost": "29614.082663" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "337081.5584" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "358169.607988" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "337081.5584" + }, + { + "id": "税金_FFS", + "cost": "46685.499815" + }, + { + "cost": "8506715.335769" + }, + { + "id": "临时设施费_LSF", + "cost": "14059.902897" + }, + { + "id": "总计_ZJ", + "cost": "2126678.833942" + }, + { + "id": "编制基准期价差_JC", + "cost": "358169.607988" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "2347.007413" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "358169.607988" + }, + { + "id": "人工价差_RJC", + "cost": "10956.216824" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "48700.857657" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "67113.5052" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "3163.473036" + }, + { + "id": "虚节点", + "cost": "8506715.335769" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "31129.568437" + }, + { + "id": "直接费_FFZ", + "cost": "1583448.992743" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "2956.439461" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "10956.216824" + }, + { + "id": "合计_HJ", + "cost": "2126678.833942" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "1512713.298855" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "63090.658513" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "9143.996608" + }, + { + "id": "安装费_AZF", + "cost": "498299.770342" + }, + { + "id": "社会保险费_BZHF", + "cost": "20695.076224" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "1291297.5052" + }, + { + "id": "主材费_ZCF", + "cost": "1628379.0636" + }, + { + "id": "定额直接费_DZF", + "cost": "221415.793655" + }, + { + "id": "利润_FFR", + "cost": "75284.074883" + }, + { + "id": "人工费_RGF", + "cost": "82813.430267" + }, + { + "id": "材料价差_CJC", + "cost": "987.836156" + }, + { + "id": "材料费_CLF", + "cost": "13513.4905" + }, + { + "id": "住房公积金_GJJ", + "cost": "10434.492214" + }, + { + "id": "措施费_FFZ2", + "cost": "70735.693888" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "1224184" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "987.836156" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "1855.020838" + }, + { + "id": "施工机械使用费_JXF", + "cost": "125088.872888" + }, + { + "cost": "9223054.551745" + }, + { + "id": "虚节点", + "cost": "9223054.551745" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "337081.5584" + }, + { + "id": "机械价差_JJC", + "cost": "9143.996608" + }, + { + "id": "企业管理费_GLF", + "cost": "29614.082663" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "337081.5584" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "358169.607988" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "337081.5584" + }, + { + "id": "税金_FFS", + "cost": "46685.499815" + }, + { + "id": "临时设施费_LSF", + "cost": "14059.902897" + }, + { + "id": "总计_ZJ", + "cost": "2126678.833942" + }, + { + "id": "编制基准期价差_JC", + "cost": "358169.607988" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "2347.007413" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "358169.607988" + }, + { + "id": "人工价差_RJC", + "cost": "10956.216824" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "48700.857657" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "67113.5052" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "3163.473036" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "31129.568437" + }, + { + "id": "直接费_FFZ", + "cost": "1583448.992743" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "2956.439461" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "10956.216824" + }, + { + "id": "合计_HJ", + "cost": "2126678.833942" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "1512713.298855" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{858247E5-0438-4C3E-A401-4243F191C686}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "198850.177643" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "3276.853846" + }, + { + "id": "安装费_AZF", + "cost": "803591.78659" + }, + { + "id": "社会保险费_BZHF", + "cost": "66317.240989" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "395993.54" + }, + { + "id": "利润_FFR", + "cost": "32980.135079" + }, + { + "id": "人工费_RGF", + "cost": "265375.114" + }, + { + "id": "材料价差_CJC", + "cost": "6271.353094" + }, + { + "id": "材料费_CLF", + "cost": "85791.424" + }, + { + "id": "住房公积金_GJJ", + "cost": "33437.264364" + }, + { + "id": "措施费_FFZ2", + "cost": "64758.983938" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "6271.353094" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "5944.402554" + }, + { + "id": "施工机械使用费_JXF", + "cost": "44827.002" + }, + { + "cost": "89314.669046" + }, + { + "id": "虚节点", + "cost": "89314.669046" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "3276.853846" + }, + { + "id": "企业管理费_GLF", + "cost": "94898.140766" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "44657.334523" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "66351.615406" + }, + { + "cost": "3214367.146358" + }, + { + "id": "临时设施费_LSF", + "cost": "25145.58979" + }, + { + "id": "总计_ZJ", + "cost": "803591.78659" + }, + { + "id": "编制基准期价差_JC", + "cost": "44657.334523" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "4197.531524" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "44657.334523" + }, + { + "id": "人工价差_RJC", + "cost": "35109.127582" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "14057.77067" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "10137.329355" + }, + { + "id": "虚节点", + "cost": "3214367.146358" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "99754.505353" + }, + { + "id": "直接费_FFZ", + "cost": "460752.523938" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "9473.89157" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "35109.127582" + }, + { + "id": "合计_HJ", + "cost": "803591.78659" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "395993.54" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "198850.177643" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "3276.853846" + }, + { + "id": "安装费_AZF", + "cost": "803591.78659" + }, + { + "id": "社会保险费_BZHF", + "cost": "66317.240989" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "395993.54" + }, + { + "id": "利润_FFR", + "cost": "32980.135079" + }, + { + "id": "人工费_RGF", + "cost": "265375.114" + }, + { + "id": "材料价差_CJC", + "cost": "6271.353094" + }, + { + "id": "材料费_CLF", + "cost": "85791.424" + }, + { + "id": "住房公积金_GJJ", + "cost": "33437.264364" + }, + { + "id": "措施费_FFZ2", + "cost": "64758.983938" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "6271.353094" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "5944.402554" + }, + { + "id": "施工机械使用费_JXF", + "cost": "44827.002" + }, + { + "cost": "3303681.815404" + }, + { + "id": "虚节点", + "cost": "3303681.815404" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "3276.853846" + }, + { + "id": "企业管理费_GLF", + "cost": "94898.140766" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "44657.334523" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "66351.615406" + }, + { + "id": "临时设施费_LSF", + "cost": "25145.58979" + }, + { + "id": "总计_ZJ", + "cost": "803591.78659" + }, + { + "id": "编制基准期价差_JC", + "cost": "44657.334523" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "4197.531524" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "44657.334523" + }, + { + "id": "人工价差_RJC", + "cost": "35109.127582" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "14057.77067" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "10137.329355" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "99754.505353" + }, + { + "id": "直接费_FFZ", + "cost": "460752.523938" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "9473.89157" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "35109.127582" + }, + { + "id": "合计_HJ", + "cost": "803591.78659" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "395993.54" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{1DB6193D-4C6A-4FBF-AF18-DACFA411102D}" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "263411.21434" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "12924.060802" + }, + { + "id": "安装费_AZF", + "cost": "1315665.322917" + }, + { + "id": "社会保险费_BZHF", + "cost": "87481.507063" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "1291297.5052" + }, + { + "id": "主材费_ZCF", + "cost": "1628379.0636" + }, + { + "id": "定额直接费_DZF", + "cost": "626204.079086" + }, + { + "id": "利润_FFR", + "cost": "108830.04034499999" + }, + { + "id": "人工费_RGF", + "cost": "350066.054673" + }, + { + "id": "材料价差_CJC", + "cost": "7261.628783" + }, + { + "id": "材料费_CLF", + "cost": "99338.28704" + }, + { + "id": "住房公积金_GJJ", + "cost": "44108.322889" + }, + { + "id": "措施费_FFZ2", + "cost": "136546.161876" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "1224184.0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "7261.628783" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "7841.479625" + }, + { + "id": "施工机械使用费_JXF", + "cost": "176799.737373" + }, + { + "cost": "12583339.520102" + }, + { + "id": "虚节点", + "cost": "12583339.520102" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "337081.5584" + }, + { + "id": "机械价差_JJC", + "cost": "12924.060802" + }, + { + "id": "企业管理费_GLF", + "cost": "125183.62114999999" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "337081.5584" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0.0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "403580.987018" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "337081.5584" + }, + { + "id": "税金_FFS", + "cost": "114174.398651" + }, + { + "id": "临时设施费_LSF", + "cost": "39763.959022" + }, + { + "id": "总计_ZJ", + "cost": "2944044.386517" + }, + { + "id": "编制基准期价差_JC", + "cost": "403580.987018" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "6637.763239" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "403580.987018" + }, + { + "id": "人工价差_RJC", + "cost": "46313.739033" + }, + { + "id": "设备费_SBF", + "cost": "0.0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "63070.84179" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "67113.5052" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "13372.523288" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0.0" + }, + { + "id": "规费_GF", + "cost": "131589.829951" + }, + { + "id": "直接费_FFZ", + "cost": "2054047.7461619999" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "12497.358152" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "46313.739033" + }, + { + "id": "合计_HJ", + "cost": "2944044.386517" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0.0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0.0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "1917501.5842859999" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0.0" + } + ] + }, + { + "GUID": "{82B6C2D0-E04A-47AB-8F2F-379FFE64BC9A}", + "children": [ + { + "GUID": "{5D26CB85-AA9A-40AA-A08E-3578209B0CA4}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "1654.929029" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "106.85125" + }, + { + "id": "安装费_AZF", + "cost": "7533.888747" + }, + { + "id": "社会保险费_BZHF", + "cost": "549.636083" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "3929.382164" + }, + { + "id": "利润_FFR", + "cost": "309.256228" + }, + { + "id": "人工费_RGF", + "cost": "2199.424101" + }, + { + "id": "材料价差_CJC", + "cost": "19.608685" + }, + { + "id": "材料费_CLF", + "cost": "268.24466" + }, + { + "id": "住房公积金_GJJ", + "cost": "277.127437" + }, + { + "id": "措施费_FFZ2", + "cost": "600.813375" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "19.608685" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "49.2671" + }, + { + "id": "施工机械使用费_JXF", + "cost": "1461.713403" + }, + { + "cost": "834.887486" + }, + { + "id": "虚节点", + "cost": "834.887486" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "106.85125" + }, + { + "id": "企业管理费_GLF", + "cost": "786.514058" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "417.443743" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "622.064208" + }, + { + "cost": "30135.554988" + }, + { + "id": "临时设施费_LSF", + "cost": "249.515767" + }, + { + "id": "总计_ZJ", + "cost": "7533.888747" + }, + { + "id": "编制基准期价差_JC", + "cost": "417.443743" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "41.651451" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "417.443743" + }, + { + "id": "人工价差_RJC", + "cost": "290.983808" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "139.493067" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "84.018001" + }, + { + "id": "虚节点", + "cost": "30135.554988" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "826.763519" + }, + { + "id": "直接费_FFZ", + "cost": "4530.195539" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "78.51944" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "290.983808" + }, + { + "id": "合计_HJ", + "cost": "7533.888747" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "3929.382164" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "1654.929029" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "106.85125" + }, + { + "id": "安装费_AZF", + "cost": "7533.888747" + }, + { + "id": "社会保险费_BZHF", + "cost": "549.636083" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "3929.382164" + }, + { + "id": "利润_FFR", + "cost": "309.256228" + }, + { + "id": "人工费_RGF", + "cost": "2199.424101" + }, + { + "id": "材料价差_CJC", + "cost": "19.608685" + }, + { + "id": "材料费_CLF", + "cost": "268.24466" + }, + { + "id": "住房公积金_GJJ", + "cost": "277.127437" + }, + { + "id": "措施费_FFZ2", + "cost": "600.813375" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "19.608685" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "49.2671" + }, + { + "id": "施工机械使用费_JXF", + "cost": "1461.713403" + }, + { + "cost": "30970.442474" + }, + { + "id": "虚节点", + "cost": "30970.442474" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "106.85125" + }, + { + "id": "企业管理费_GLF", + "cost": "786.514058" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "417.443743" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "622.064208" + }, + { + "id": "临时设施费_LSF", + "cost": "249.515767" + }, + { + "id": "总计_ZJ", + "cost": "7533.888747" + }, + { + "id": "编制基准期价差_JC", + "cost": "417.443743" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "41.651451" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "417.443743" + }, + { + "id": "人工价差_RJC", + "cost": "290.983808" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "139.493067" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "84.018001" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "826.763519" + }, + { + "id": "直接费_FFZ", + "cost": "4530.195539" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "78.51944" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "290.983808" + }, + { + "id": "合计_HJ", + "cost": "7533.888747" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "3929.382164" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{958D2D6A-555C-4F25-B9B0-90098F585480}", + "children": [ + { + "GUID": "{3D84FDE3-5F3E-48BF-A134-2F1F41B09983}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "106864.221829" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "2641.925992" + }, + { + "id": "安装费_AZF", + "cost": "412000.77361" + }, + { + "id": "社会保险费_BZHF", + "cost": "35750.809125" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "252430.08005" + }, + { + "id": "主材费_ZCF", + "cost": "252430.08005" + }, + { + "id": "定额直接费_DZF", + "cost": "182016.407125" + }, + { + "id": "利润_FFR", + "cost": "27600.219496" + }, + { + "id": "人工费_RGF", + "cost": "143060.460686" + }, + { + "id": "材料价差_CJC", + "cost": "205.753693" + }, + { + "id": "材料费_CLF", + "cost": "2814.688" + }, + { + "id": "住房公积金_GJJ", + "cost": "18025.618046" + }, + { + "id": "措施费_FFZ2", + "cost": "39726.934026" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "252430.08005" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "205.753693" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "3204.554319" + }, + { + "id": "施工机械使用费_JXF", + "cost": "36141.258439" + }, + { + "cost": "43549.157267" + }, + { + "id": "虚节点", + "cost": "43549.157267" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "2641.925992" + }, + { + "id": "企业管理费_GLF", + "cost": "51158.420741" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "21774.578633" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "34018.4125" + }, + { + "cost": "2657723.414639" + }, + { + "id": "临时设施费_LSF", + "cost": "11558.041852" + }, + { + "id": "总计_ZJ", + "cost": "664430.85366" + }, + { + "id": "编制基准期价差_JC", + "cost": "21774.578633" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "1929.373916" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "21774.578633" + }, + { + "id": "人工价差_RJC", + "cost": "18926.898949" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "14392.16981" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "5464.909598" + }, + { + "id": "虚节点", + "cost": "2657723.414639" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "53776.427172" + }, + { + "id": "直接费_FFZ", + "cost": "474173.421201" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "5107.258446" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "18926.898949" + }, + { + "id": "合计_HJ", + "cost": "664430.85366" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "434446.487175" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "106864.221829" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "2641.925992" + }, + { + "id": "安装费_AZF", + "cost": "412000.77361" + }, + { + "id": "社会保险费_BZHF", + "cost": "35750.809125" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "252430.08005" + }, + { + "id": "主材费_ZCF", + "cost": "252430.08005" + }, + { + "id": "定额直接费_DZF", + "cost": "182016.407125" + }, + { + "id": "利润_FFR", + "cost": "27600.219496" + }, + { + "id": "人工费_RGF", + "cost": "143060.460686" + }, + { + "id": "材料价差_CJC", + "cost": "205.753693" + }, + { + "id": "材料费_CLF", + "cost": "2814.688" + }, + { + "id": "住房公积金_GJJ", + "cost": "18025.618046" + }, + { + "id": "措施费_FFZ2", + "cost": "39726.934026" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "252430.08005" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "205.753693" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "3204.554319" + }, + { + "id": "施工机械使用费_JXF", + "cost": "36141.258439" + }, + { + "cost": "2701272.571906" + }, + { + "id": "虚节点", + "cost": "2701272.571906" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "2641.925992" + }, + { + "id": "企业管理费_GLF", + "cost": "51158.420741" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "21774.578633" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "34018.4125" + }, + { + "id": "临时设施费_LSF", + "cost": "11558.041852" + }, + { + "id": "总计_ZJ", + "cost": "664430.85366" + }, + { + "id": "编制基准期价差_JC", + "cost": "21774.578633" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "1929.373916" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "21774.578633" + }, + { + "id": "人工价差_RJC", + "cost": "18926.898949" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "14392.16981" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "5464.909598" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "53776.427172" + }, + { + "id": "直接费_FFZ", + "cost": "474173.421201" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "5107.258446" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "18926.898949" + }, + { + "id": "合计_HJ", + "cost": "664430.85366" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "434446.487175" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{8B49E78B-38C6-4A27-B048-3B0CC9722408}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "7740.828288" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "100.522298" + }, + { + "id": "安装费_AZF", + "cost": "45685.938677" + }, + { + "id": "社会保险费_BZHF", + "cost": "2594.551063" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "218326.9623" + }, + { + "id": "主材费_ZCF", + "cost": "221781.5799" + }, + { + "id": "定额直接费_DZF", + "cost": "11827.291228" + }, + { + "id": "利润_FFR", + "cost": "11138.460283" + }, + { + "id": "人工费_RGF", + "cost": "10382.357193" + }, + { + "id": "材料价差_CJC", + "cost": "5.10238" + }, + { + "id": "材料费_CLF", + "cost": "69.8" + }, + { + "id": "住房公积金_GJJ", + "cost": "1308.177006" + }, + { + "id": "措施费_FFZ2", + "cost": "9062.637747" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "210269.7171" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "5.10238" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "232.564801" + }, + { + "id": "施工机械使用费_JXF", + "cost": "1375.134035" + }, + { + "cost": "9867.656269" + }, + { + "id": "虚节点", + "cost": "9867.656269" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "3454.6176" + }, + { + "id": "机械价差_JJC", + "cost": "100.522298" + }, + { + "id": "企业管理费_GLF", + "cost": "3712.730932" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "3454.6176" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "4933.828135" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "3454.6176" + }, + { + "id": "税金_FFS", + "cost": "4437.510595" + }, + { + "cost": "1069870.074307" + }, + { + "id": "临时设施费_LSF", + "cost": "751.032993" + }, + { + "id": "总计_ZJ", + "cost": "267467.518577" + }, + { + "id": "编制基准期价差_JC", + "cost": "4933.828135" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "125.369287" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "4933.828135" + }, + { + "id": "人工价差_RJC", + "cost": "1373.585857" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "7311.783757" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "8057.2452" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "396.606045" + }, + { + "id": "虚节点", + "cost": "1069870.074307" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "3902.728069" + }, + { + "id": "直接费_FFZ", + "cost": "239216.891275" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "370.650152" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1373.585857" + }, + { + "id": "合计_HJ", + "cost": "267467.518577" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "230154.253528" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "7740.828288" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "100.522298" + }, + { + "id": "安装费_AZF", + "cost": "45685.938677" + }, + { + "id": "社会保险费_BZHF", + "cost": "2594.551063" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "218326.9623" + }, + { + "id": "主材费_ZCF", + "cost": "221781.5799" + }, + { + "id": "定额直接费_DZF", + "cost": "11827.291228" + }, + { + "id": "利润_FFR", + "cost": "11138.460283" + }, + { + "id": "人工费_RGF", + "cost": "10382.357193" + }, + { + "id": "材料价差_CJC", + "cost": "5.10238" + }, + { + "id": "材料费_CLF", + "cost": "69.8" + }, + { + "id": "住房公积金_GJJ", + "cost": "1308.177006" + }, + { + "id": "措施费_FFZ2", + "cost": "9062.637747" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "210269.7171" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "5.10238" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "232.564801" + }, + { + "id": "施工机械使用费_JXF", + "cost": "1375.134035" + }, + { + "cost": "1079737.730576" + }, + { + "id": "虚节点", + "cost": "1079737.730576" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "3454.6176" + }, + { + "id": "机械价差_JJC", + "cost": "100.522298" + }, + { + "id": "企业管理费_GLF", + "cost": "3712.730932" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "3454.6176" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "4933.828135" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "3454.6176" + }, + { + "id": "税金_FFS", + "cost": "4437.510595" + }, + { + "id": "临时设施费_LSF", + "cost": "751.032993" + }, + { + "id": "总计_ZJ", + "cost": "267467.518577" + }, + { + "id": "编制基准期价差_JC", + "cost": "4933.828135" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "125.369287" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "4933.828135" + }, + { + "id": "人工价差_RJC", + "cost": "1373.585857" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "7311.783757" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "8057.2452" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "396.606045" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "3902.728069" + }, + { + "id": "直接费_FFZ", + "cost": "239216.891275" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "370.650152" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1373.585857" + }, + { + "id": "合计_HJ", + "cost": "267467.518577" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "230154.253528" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "114605.050117" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "2742.44829" + }, + { + "id": "安装费_AZF", + "cost": "457686.712287" + }, + { + "id": "社会保险费_BZHF", + "cost": "38345.360188" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "470757.04235" + }, + { + "id": "主材费_ZCF", + "cost": "474211.65995" + }, + { + "id": "定额直接费_DZF", + "cost": "193843.69835299999" + }, + { + "id": "利润_FFR", + "cost": "38738.679779" + }, + { + "id": "人工费_RGF", + "cost": "153442.817879" + }, + { + "id": "材料价差_CJC", + "cost": "210.856073" + }, + { + "id": "材料费_CLF", + "cost": "2884.4880000000003" + }, + { + "id": "住房公积金_GJJ", + "cost": "19333.795052" + }, + { + "id": "措施费_FFZ2", + "cost": "48789.571773" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "462699.79715" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "210.856073" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "3437.11912" + }, + { + "id": "施工机械使用费_JXF", + "cost": "37516.392474" + }, + { + "cost": "3781010.3024819996" + }, + { + "id": "虚节点", + "cost": "3781010.3024819996" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "3454.6176" + }, + { + "id": "机械价差_JJC", + "cost": "2742.44829" + }, + { + "id": "企业管理费_GLF", + "cost": "54871.151673" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "3454.6176" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0.0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "26708.406768" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "3454.6176" + }, + { + "id": "税金_FFS", + "cost": "38455.923095" + }, + { + "id": "临时设施费_LSF", + "cost": "12309.074845000001" + }, + { + "id": "总计_ZJ", + "cost": "931898.372237" + }, + { + "id": "编制基准期价差_JC", + "cost": "26708.406768" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "2054.743203" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "26708.406768" + }, + { + "id": "人工价差_RJC", + "cost": "20300.484806" + }, + { + "id": "设备费_SBF", + "cost": "0.0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "21703.953567" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "8057.2452" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "5861.515643000001" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0.0" + }, + { + "id": "规费_GF", + "cost": "57679.155241" + }, + { + "id": "直接费_FFZ", + "cost": "713390.312476" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "5477.908598" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "20300.484806" + }, + { + "id": "合计_HJ", + "cost": "931898.372237" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0.0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0.0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "664600.740703" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0.0" + } + ] + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "116259.97914600001" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "2849.29954" + }, + { + "id": "安装费_AZF", + "cost": "465220.601034" + }, + { + "id": "社会保险费_BZHF", + "cost": "38894.996270999996" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "470757.04235" + }, + { + "id": "主材费_ZCF", + "cost": "474211.65995" + }, + { + "id": "定额直接费_DZF", + "cost": "197773.080517" + }, + { + "id": "利润_FFR", + "cost": "39047.936007" + }, + { + "id": "人工费_RGF", + "cost": "155642.24198000002" + }, + { + "id": "材料价差_CJC", + "cost": "230.46475800000002" + }, + { + "id": "材料费_CLF", + "cost": "3152.73266" + }, + { + "id": "住房公积金_GJJ", + "cost": "19610.922489" + }, + { + "id": "措施费_FFZ2", + "cost": "49390.385148" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "462699.79715" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "230.46475800000002" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "3486.38622" + }, + { + "id": "施工机械使用费_JXF", + "cost": "38978.105877" + }, + { + "cost": "3811980.744956" + }, + { + "id": "虚节点", + "cost": "3811980.744956" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "3454.6176" + }, + { + "id": "机械价差_JJC", + "cost": "2849.29954" + }, + { + "id": "企业管理费_GLF", + "cost": "55657.665731" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "3454.6176" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0.0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "27125.850511" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "3454.6176" + }, + { + "id": "税金_FFS", + "cost": "39077.987303" + }, + { + "id": "临时设施费_LSF", + "cost": "12558.590612000002" + }, + { + "id": "总计_ZJ", + "cost": "939432.260984" + }, + { + "id": "编制基准期价差_JC", + "cost": "27125.850511" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "2096.394654" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "27125.850511" + }, + { + "id": "人工价差_RJC", + "cost": "20591.468614" + }, + { + "id": "设备费_SBF", + "cost": "0.0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "21843.446634" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "8057.2452" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "5945.533644000001" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0.0" + }, + { + "id": "规费_GF", + "cost": "58505.91876" + }, + { + "id": "直接费_FFZ", + "cost": "717920.508015" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "5556.428038" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "20591.468614" + }, + { + "id": "合计_HJ", + "cost": "939432.260984" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0.0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0.0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "668530.1228669999" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0.0" + } + ] + }, + { + "GUID": "{328859FB-E551-4EC3-A4CD-2D9052D77699}", + "children": [ + { + "GUID": "{52BB4E2C-BCF0-43EB-8D3E-F1B1E85D59A5}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "2109.228185" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "9.051973" + }, + { + "id": "安装费_AZF", + "cost": "6863.530572" + }, + { + "id": "社会保险费_BZHF", + "cost": "707.926495" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "2956.669118" + }, + { + "id": "利润_FFR", + "cost": "281.570498" + }, + { + "id": "人工费_RGF", + "cost": "2832.839118" + }, + { + "id": "材料价差_CJC", + "cost": "0" + }, + { + "id": "材料费_CLF", + "cost": "0" + }, + { + "id": "住房公积金_GJJ", + "cost": "356.937729" + }, + { + "id": "措施费_FFZ2", + "cost": "565.51265" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "0" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "63.455596" + }, + { + "id": "施工机械使用费_JXF", + "cost": "123.83" + }, + { + "cost": "767.673176" + }, + { + "id": "虚节点", + "cost": "767.673176" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "9.051973" + }, + { + "id": "企业管理费_GLF", + "cost": "1013.023268" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "383.836588" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "566.713533" + }, + { + "cost": "27454.122287" + }, + { + "id": "临时设施费_LSF", + "cost": "187.748489" + }, + { + "id": "总计_ZJ", + "cost": "6863.530572" + }, + { + "id": "编制基准期价差_JC", + "cost": "383.836588" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "31.340693" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "383.836588" + }, + { + "id": "人工价差_RJC", + "cost": "374.784615" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "104.961754" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "108.214454" + }, + { + "id": "虚节点", + "cost": "27454.122287" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "1064.864224" + }, + { + "id": "直接费_FFZ", + "cost": "3522.181767" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "101.132356" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "374.784615" + }, + { + "id": "合计_HJ", + "cost": "6863.530572" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "2956.669118" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "2109.228185" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "9.051973" + }, + { + "id": "安装费_AZF", + "cost": "6863.530572" + }, + { + "id": "社会保险费_BZHF", + "cost": "707.926495" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "2956.669118" + }, + { + "id": "利润_FFR", + "cost": "281.570498" + }, + { + "id": "人工费_RGF", + "cost": "2832.839118" + }, + { + "id": "材料价差_CJC", + "cost": "0" + }, + { + "id": "材料费_CLF", + "cost": "0" + }, + { + "id": "住房公积金_GJJ", + "cost": "356.937729" + }, + { + "id": "措施费_FFZ2", + "cost": "565.51265" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "0" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "63.455596" + }, + { + "id": "施工机械使用费_JXF", + "cost": "123.83" + }, + { + "cost": "28221.795463" + }, + { + "id": "虚节点", + "cost": "28221.795463" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "9.051973" + }, + { + "id": "企业管理费_GLF", + "cost": "1013.023268" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "383.836588" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "566.713533" + }, + { + "id": "临时设施费_LSF", + "cost": "187.748489" + }, + { + "id": "总计_ZJ", + "cost": "6863.530572" + }, + { + "id": "编制基准期价差_JC", + "cost": "383.836588" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "31.340693" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "383.836588" + }, + { + "id": "人工价差_RJC", + "cost": "374.784615" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "104.961754" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "108.214454" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "1064.864224" + }, + { + "id": "直接费_FFZ", + "cost": "3522.181767" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "101.132356" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "374.784615" + }, + { + "id": "合计_HJ", + "cost": "6863.530572" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "2956.669118" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{FA9774AC-96C7-4F38-95BB-2C705B3DA1A3}", + "children": [ + { + "GUID": "{CD9D81E2-DBF4-4672-84D8-D2D872C0B167}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "8276.044036" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "61.927046" + }, + { + "id": "安装费_AZF", + "cost": "27406.070814" + }, + { + "id": "社会保险费_BZHF", + "cost": "2776.427014" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "11957.30733" + }, + { + "id": "利润_FFR", + "cost": "1124.351622" + }, + { + "id": "人工费_RGF", + "cost": "11110.152117" + }, + { + "id": "材料价差_CJC", + "cost": "0" + }, + { + "id": "材料费_CLF", + "cost": "0" + }, + { + "id": "住房公积金_GJJ", + "cost": "1399.879167" + }, + { + "id": "措施费_FFZ2", + "cost": "2253.681074" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "0" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "248.867407" + }, + { + "id": "施工机械使用费_JXF", + "cost": "847.155212" + }, + { + "cost": "3063.600342" + }, + { + "id": "虚节点", + "cost": "3063.600342" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "61.927046" + }, + { + "id": "企业管理费_GLF", + "cost": "3972.990397" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "1531.800171" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "2262.886581" + }, + { + "cost": "109624.283254" + }, + { + "id": "临时设施费_LSF", + "cost": "759.289015" + }, + { + "id": "总计_ZJ", + "cost": "27406.070814" + }, + { + "id": "编制基准期价差_JC", + "cost": "1531.800171" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "126.747458" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "1531.800171" + }, + { + "id": "人工价差_RJC", + "cost": "1469.873125" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "424.48441" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "424.407811" + }, + { + "id": "虚节点", + "cost": "109624.283254" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "4176.306181" + }, + { + "id": "直接费_FFZ", + "cost": "14210.988404" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "396.632431" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1469.873125" + }, + { + "id": "合计_HJ", + "cost": "27406.070814" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "11957.30733" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "8276.044036" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "61.927046" + }, + { + "id": "安装费_AZF", + "cost": "27406.070814" + }, + { + "id": "社会保险费_BZHF", + "cost": "2776.427014" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "11957.30733" + }, + { + "id": "利润_FFR", + "cost": "1124.351622" + }, + { + "id": "人工费_RGF", + "cost": "11110.152117" + }, + { + "id": "材料价差_CJC", + "cost": "0" + }, + { + "id": "材料费_CLF", + "cost": "0" + }, + { + "id": "住房公积金_GJJ", + "cost": "1399.879167" + }, + { + "id": "措施费_FFZ2", + "cost": "2253.681074" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "0" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "248.867407" + }, + { + "id": "施工机械使用费_JXF", + "cost": "847.155212" + }, + { + "cost": "112687.883596" + }, + { + "id": "虚节点", + "cost": "112687.883596" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "61.927046" + }, + { + "id": "企业管理费_GLF", + "cost": "3972.990397" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "1531.800171" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "2262.886581" + }, + { + "id": "临时设施费_LSF", + "cost": "759.289015" + }, + { + "id": "总计_ZJ", + "cost": "27406.070814" + }, + { + "id": "编制基准期价差_JC", + "cost": "1531.800171" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "126.747458" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "1531.800171" + }, + { + "id": "人工价差_RJC", + "cost": "1469.873125" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "424.48441" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "424.407811" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "4176.306181" + }, + { + "id": "直接费_FFZ", + "cost": "14210.988404" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "396.632431" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1469.873125" + }, + { + "id": "合计_HJ", + "cost": "27406.070814" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "11957.30733" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{3ED6E244-1C39-4358-8784-8221694E78DF}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "1562.322669" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "8.16485" + }, + { + "id": "安装费_AZF", + "cost": "5157.394213" + }, + { + "id": "社会保险费_BZHF", + "cost": "524.168089" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "2245.102471" + }, + { + "id": "利润_FFR", + "cost": "211.584031" + }, + { + "id": "人工费_RGF", + "cost": "2097.511361" + }, + { + "id": "材料价差_CJC", + "cost": "2.62406" + }, + { + "id": "材料费_CLF", + "cost": "35.89686" + }, + { + "id": "住房公积金_GJJ", + "cost": "264.286431" + }, + { + "id": "措施费_FFZ2", + "cost": "424.255489" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "2.62406" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "46.984254" + }, + { + "id": "施工机械使用费_JXF", + "cost": "111.69425" + }, + { + "cost": "576.579326" + }, + { + "id": "虚节点", + "cost": "576.579326" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "8.16485" + }, + { + "id": "企业管理费_GLF", + "cost": "750.070063" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "288.289663" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "425.839889" + }, + { + "cost": "20629.576852" + }, + { + "id": "临时设施费_LSF", + "cost": "142.564007" + }, + { + "id": "总计_ZJ", + "cost": "5157.394213" + }, + { + "id": "编制基准期价差_JC", + "cost": "288.289663" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "23.798086" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "288.289663" + }, + { + "id": "人工价差_RJC", + "cost": "277.500753" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "79.701138" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "80.124934" + }, + { + "id": "虚节点", + "cost": "20629.576852" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "788.454521" + }, + { + "id": "直接费_FFZ", + "cost": "2669.35796" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "74.881156" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "277.500753" + }, + { + "id": "合计_HJ", + "cost": "5157.394213" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "2245.102471" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "1562.322669" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "8.16485" + }, + { + "id": "安装费_AZF", + "cost": "5157.394213" + }, + { + "id": "社会保险费_BZHF", + "cost": "524.168089" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "2245.102471" + }, + { + "id": "利润_FFR", + "cost": "211.584031" + }, + { + "id": "人工费_RGF", + "cost": "2097.511361" + }, + { + "id": "材料价差_CJC", + "cost": "2.62406" + }, + { + "id": "材料费_CLF", + "cost": "35.89686" + }, + { + "id": "住房公积金_GJJ", + "cost": "264.286431" + }, + { + "id": "措施费_FFZ2", + "cost": "424.255489" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "2.62406" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "46.984254" + }, + { + "id": "施工机械使用费_JXF", + "cost": "111.69425" + }, + { + "cost": "21206.156177999997" + }, + { + "id": "虚节点", + "cost": "21206.156177999997" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "8.16485" + }, + { + "id": "企业管理费_GLF", + "cost": "750.070063" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "288.289663" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "425.839889" + }, + { + "id": "临时设施费_LSF", + "cost": "142.564007" + }, + { + "id": "总计_ZJ", + "cost": "5157.394213" + }, + { + "id": "编制基准期价差_JC", + "cost": "288.289663" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "23.798086" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "288.289663" + }, + { + "id": "人工价差_RJC", + "cost": "277.500753" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "79.701138" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "80.124934" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "788.454521" + }, + { + "id": "直接费_FFZ", + "cost": "2669.35796" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "74.881156" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "277.500753" + }, + { + "id": "合计_HJ", + "cost": "5157.394213" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "2245.102471" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{9C1646F5-2991-437E-A50D-BE37E5E0C645}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "8507.371762" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "63.211942" + }, + { + "id": "安装费_AZF", + "cost": "33097.216844" + }, + { + "id": "社会保险费_BZHF", + "cost": "2854.053997" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "17309.7405" + }, + { + "id": "主材费_ZCF", + "cost": "36516.269343" + }, + { + "id": "定额直接费_DZF", + "cost": "12285.51675" + }, + { + "id": "利润_FFR", + "cost": "2051.660624" + }, + { + "id": "人工费_RGF", + "cost": "11420.7843" + }, + { + "id": "材料价差_CJC", + "cost": "0" + }, + { + "id": "材料费_CLF", + "cost": "0" + }, + { + "id": "住房公积金_GJJ", + "cost": "1439.018822" + }, + { + "id": "措施费_FFZ2", + "cost": "2930.583474" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "0" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "255.825568" + }, + { + "id": "施工机械使用费_JXF", + "cost": "864.73245" + }, + { + "cost": "41561.421095" + }, + { + "id": "虚节点", + "cost": "41561.421095" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "19206.528842" + }, + { + "id": "机械价差_JJC", + "cost": "63.211942" + }, + { + "id": "企业管理费_GLF", + "cost": "4084.072466" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "19206.528842" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "20780.710547" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "5747.902529" + }, + { + "cost": "278453.944747" + }, + { + "id": "临时设施费_LSF", + "cost": "780.130314" + }, + { + "id": "总计_ZJ", + "cost": "69613.486187" + }, + { + "id": "编制基准期价差_JC", + "cost": "20780.710547" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "130.226478" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "20780.710547" + }, + { + "id": "人工价差_RJC", + "cost": "1510.969763" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "1050.631632" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "17309.7405" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "436.27396" + }, + { + "id": "虚节点", + "cost": "278453.944747" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "4293.072818" + }, + { + "id": "直接费_FFZ", + "cost": "32525.840724" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "407.722" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1510.969763" + }, + { + "id": "合计_HJ", + "cost": "69613.486187" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "19206.528842" + }, + { + "id": "直接工程费_FFZ1", + "cost": "29595.25725" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "8507.371762" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "63.211942" + }, + { + "id": "安装费_AZF", + "cost": "33097.216844" + }, + { + "id": "社会保险费_BZHF", + "cost": "2854.053997" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "17309.7405" + }, + { + "id": "主材费_ZCF", + "cost": "36516.269343" + }, + { + "id": "定额直接费_DZF", + "cost": "12285.51675" + }, + { + "id": "利润_FFR", + "cost": "2051.660624" + }, + { + "id": "人工费_RGF", + "cost": "11420.7843" + }, + { + "id": "材料价差_CJC", + "cost": "0" + }, + { + "id": "材料费_CLF", + "cost": "0" + }, + { + "id": "住房公积金_GJJ", + "cost": "1439.018822" + }, + { + "id": "措施费_FFZ2", + "cost": "2930.583474" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "0" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "255.825568" + }, + { + "id": "施工机械使用费_JXF", + "cost": "864.73245" + }, + { + "cost": "320015.365842" + }, + { + "id": "虚节点", + "cost": "320015.365842" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "19206.528842" + }, + { + "id": "机械价差_JJC", + "cost": "63.211942" + }, + { + "id": "企业管理费_GLF", + "cost": "4084.072466" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "19206.528842" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "20780.710547" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "5747.902529" + }, + { + "id": "临时设施费_LSF", + "cost": "780.130314" + }, + { + "id": "总计_ZJ", + "cost": "69613.486187" + }, + { + "id": "编制基准期价差_JC", + "cost": "20780.710547" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "130.226478" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "20780.710547" + }, + { + "id": "人工价差_RJC", + "cost": "1510.969763" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "1050.631632" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "17309.7405" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "436.27396" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "4293.072818" + }, + { + "id": "直接费_FFZ", + "cost": "32525.840724" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "407.722" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1510.969763" + }, + { + "id": "合计_HJ", + "cost": "69613.486187" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "19206.528842" + }, + { + "id": "直接工程费_FFZ1", + "cost": "29595.25725" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "18345.738467" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "133.30383799999998" + }, + { + "id": "安装费_AZF", + "cost": "65660.68187100001" + }, + { + "id": "社会保险费_BZHF", + "cost": "6154.6491" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "17309.7405" + }, + { + "id": "主材费_ZCF", + "cost": "36516.269343" + }, + { + "id": "定额直接费_DZF", + "cost": "26487.926551" + }, + { + "id": "利润_FFR", + "cost": "3387.596277" + }, + { + "id": "人工费_RGF", + "cost": "24628.447777999998" + }, + { + "id": "材料价差_CJC", + "cost": "2.62406" + }, + { + "id": "材料费_CLF", + "cost": "35.89686" + }, + { + "id": "住房公积金_GJJ", + "cost": "3103.18442" + }, + { + "id": "措施费_FFZ2", + "cost": "5608.520037" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0.0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "2.62406" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "551.677229" + }, + { + "id": "施工机械使用费_JXF", + "cost": "1823.581912" + }, + { + "cost": "453909.405616" + }, + { + "id": "虚节点", + "cost": "453909.405616" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "19206.528842" + }, + { + "id": "机械价差_JJC", + "cost": "133.30383799999998" + }, + { + "id": "企业管理费_GLF", + "cost": "8807.132926" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "19206.528842" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0.0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "22600.800380999997" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0.0" + }, + { + "id": "税金_FFS", + "cost": "8436.628999" + }, + { + "id": "临时设施费_LSF", + "cost": "1681.983336" + }, + { + "id": "总计_ZJ", + "cost": "102176.951214" + }, + { + "id": "编制基准期价差_JC", + "cost": "22600.800380999997" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "280.772022" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "22600.800380999997" + }, + { + "id": "人工价差_RJC", + "cost": "3258.3436410000004" + }, + { + "id": "设备费_SBF", + "cost": "0.0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "1554.81718" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "17309.7405" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "940.806705" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0.0" + }, + { + "id": "规费_GF", + "cost": "9257.83352" + }, + { + "id": "直接费_FFZ", + "cost": "49406.187088000006" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "879.235587" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "3258.3436410000004" + }, + { + "id": "合计_HJ", + "cost": "102176.951214" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0.0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "19206.528842" + }, + { + "id": "直接工程费_FFZ1", + "cost": "43797.667051" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0.0" + } + ] + }, + { + "GUID": "{538122F9-D60F-4602-A751-7E16171EF5F3}", + "children": [ + { + "GUID": "{7886BFB7-8FEF-4BE4-8AA1-61A5C8431892}" + }, + { + "GUID": "{D59571BA-E18B-488F-B5DF-7C3DDA2B5FF8}" + }, + { + "GUID": "{F5944495-31E2-4914-BC2F-E456AC728206}" + } + ] + }, + { + "GUID": "{FDBDD5AD-D92C-45CA-94E1-558633EB4C25}" + }, + { + "GUID": "{C4CE9E6E-B570-4D96-96D7-2961F18DDCC8}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "4951.245958" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "724.507049" + }, + { + "id": "安装费_AZF", + "cost": "33270.26339" + }, + { + "id": "社会保险费_BZHF", + "cost": "1626.399486" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "48373.2" + }, + { + "id": "主材费_ZCF", + "cost": "48373.2" + }, + { + "id": "定额直接费_DZF", + "cost": "16743.430148" + }, + { + "id": "利润_FFR", + "cost": "3415.283198" + }, + { + "id": "人工费_RGF", + "cost": "6508.201224" + }, + { + "id": "材料价差_CJC", + "cost": "23.688185" + }, + { + "id": "材料费_CLF", + "cost": "324.05178" + }, + { + "id": "住房公积金_GJJ", + "cost": "820.033354" + }, + { + "id": "措施费_FFZ2", + "cost": "3803.987863" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "48373.2" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "23.688185" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "145.783707" + }, + { + "id": "施工机械使用费_JXF", + "cost": "9911.177143" + }, + { + "cost": "3218.460513" + }, + { + "id": "虚节点", + "cost": "3218.460513" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "724.507049" + }, + { + "id": "企业管理费_GLF", + "cost": "2327.332758" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "1609.230256" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "2747.085968" + }, + { + "cost": "326573.853562" + }, + { + "id": "临时设施费_LSF", + "cost": "1063.207814" + }, + { + "id": "总计_ZJ", + "cost": "81643.46339" + }, + { + "id": "编制基准期价差_JC", + "cost": "1609.230256" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "177.48036" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "1609.230256" + }, + { + "id": "人工价差_RJC", + "cost": "861.035022" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "2114.04027" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "248.613287" + }, + { + "id": "虚节点", + "cost": "326573.853562" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "2446.43284" + }, + { + "id": "直接费_FFZ", + "cost": "68920.61801" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "232.342784" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "861.035022" + }, + { + "id": "合计_HJ", + "cost": "81643.46339" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "65116.630148" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "4951.245958" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "724.507049" + }, + { + "id": "安装费_AZF", + "cost": "33270.26339" + }, + { + "id": "社会保险费_BZHF", + "cost": "1626.399486" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "48373.2" + }, + { + "id": "主材费_ZCF", + "cost": "48373.2" + }, + { + "id": "定额直接费_DZF", + "cost": "16743.430148" + }, + { + "id": "利润_FFR", + "cost": "3415.283198" + }, + { + "id": "人工费_RGF", + "cost": "6508.201224" + }, + { + "id": "材料价差_CJC", + "cost": "23.688185" + }, + { + "id": "材料费_CLF", + "cost": "324.05178" + }, + { + "id": "住房公积金_GJJ", + "cost": "820.033354" + }, + { + "id": "措施费_FFZ2", + "cost": "3803.987863" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "48373.2" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "23.688185" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "145.783707" + }, + { + "id": "施工机械使用费_JXF", + "cost": "9911.177143" + }, + { + "cost": "329792.314075" + }, + { + "id": "虚节点", + "cost": "329792.314075" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "724.507049" + }, + { + "id": "企业管理费_GLF", + "cost": "2327.332758" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "1609.230256" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "2747.085968" + }, + { + "id": "临时设施费_LSF", + "cost": "1063.207814" + }, + { + "id": "总计_ZJ", + "cost": "81643.46339" + }, + { + "id": "编制基准期价差_JC", + "cost": "1609.230256" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "177.48036" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "1609.230256" + }, + { + "id": "人工价差_RJC", + "cost": "861.035022" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "2114.04027" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "248.613287" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "2446.43284" + }, + { + "id": "直接费_FFZ", + "cost": "68920.61801" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "232.342784" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "861.035022" + }, + { + "id": "合计_HJ", + "cost": "81643.46339" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "65116.630148" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{8E18F9F0-7BE5-4FE7-86DA-345E86E55428}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "6375.3882" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "466.510311" + }, + { + "id": "安装费_AZF", + "cost": "34298.091234" + }, + { + "id": "社会保险费_BZHF", + "cost": "2103.128412" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "19088.7" + }, + { + "id": "利润_FFR", + "cost": "1408.215937" + }, + { + "id": "人工费_RGF", + "cost": "8415.88" + }, + { + "id": "材料价差_CJC", + "cost": "313.672831" + }, + { + "id": "材料费_CLF", + "cost": "4291.01" + }, + { + "id": "住房公积金_GJJ", + "cost": "1060.40088" + }, + { + "id": "措施费_FFZ2", + "cost": "2700.230544" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "313.672831" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "188.515712" + }, + { + "id": "施工机械使用费_JXF", + "cost": "6381.81" + }, + { + "cost": "3787.208132" + }, + { + "id": "虚节点", + "cost": "3787.208132" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "466.510311" + }, + { + "id": "企业管理费_GLF", + "cost": "3009.518688" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "1893.604066" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "2831.952487" + }, + { + "cost": "137192.364938" + }, + { + "id": "临时设施费_LSF", + "cost": "1212.13245" + }, + { + "id": "总计_ZJ", + "cost": "34298.091234" + }, + { + "id": "编制基准期价差_JC", + "cost": "1893.604066" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "202.34022" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "1893.604066" + }, + { + "id": "人工价差_RJC", + "cost": "1113.420924" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "677.64885" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "321.486616" + }, + { + "id": "虚节点", + "cost": "137192.364938" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "3163.529292" + }, + { + "id": "直接费_FFZ", + "cost": "21788.930544" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "300.446916" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1113.420924" + }, + { + "id": "合计_HJ", + "cost": "34298.091234" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "19088.7" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "6375.3882" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "466.510311" + }, + { + "id": "安装费_AZF", + "cost": "34298.091234" + }, + { + "id": "社会保险费_BZHF", + "cost": "2103.128412" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "0" + }, + { + "id": "主材费_ZCF", + "cost": "0" + }, + { + "id": "定额直接费_DZF", + "cost": "19088.7" + }, + { + "id": "利润_FFR", + "cost": "1408.215937" + }, + { + "id": "人工费_RGF", + "cost": "8415.88" + }, + { + "id": "材料价差_CJC", + "cost": "313.672831" + }, + { + "id": "材料费_CLF", + "cost": "4291.01" + }, + { + "id": "住房公积金_GJJ", + "cost": "1060.40088" + }, + { + "id": "措施费_FFZ2", + "cost": "2700.230544" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "313.672831" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "188.515712" + }, + { + "id": "施工机械使用费_JXF", + "cost": "6381.81" + }, + { + "cost": "140979.57307" + }, + { + "id": "虚节点", + "cost": "140979.57307" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "466.510311" + }, + { + "id": "企业管理费_GLF", + "cost": "3009.518688" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "1893.604066" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "2831.952487" + }, + { + "id": "临时设施费_LSF", + "cost": "1212.13245" + }, + { + "id": "总计_ZJ", + "cost": "34298.091234" + }, + { + "id": "编制基准期价差_JC", + "cost": "1893.604066" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "202.34022" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "1893.604066" + }, + { + "id": "人工价差_RJC", + "cost": "1113.420924" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "677.64885" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "0" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "321.486616" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "3163.529292" + }, + { + "id": "直接费_FFZ", + "cost": "21788.930544" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "300.446916" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1113.420924" + }, + { + "id": "合计_HJ", + "cost": "34298.091234" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "19088.7" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + }, + { + "GUID": "{123B6C33-1C6B-4561-81C1-E8043ECCE0E6}", + "children": [ + { + "id": "间接费_FFJ", + "cost": "20066.5908" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "1193.233879" + }, + { + "id": "安装费_AZF", + "cost": "185025.219276" + }, + { + "id": "社会保险费_BZHF", + "cost": "6561.105862" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "299484" + }, + { + "id": "主材费_ZCF", + "cost": "299484" + }, + { + "id": "定额直接费_DZF", + "cost": "76283.3023" + }, + { + "id": "利润_FFR", + "cost": "20827.298567" + }, + { + "id": "人工费_RGF", + "cost": "26254.92542" + }, + { + "id": "材料价差_CJC", + "cost": "2463.840471" + }, + { + "id": "材料费_CLF", + "cost": "33705.068" + }, + { + "id": "住房公积金_GJJ", + "cost": "3308.120603" + }, + { + "id": "措施费_FFZ2", + "cost": "20712.078246" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "2463.840471" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "588.110329" + }, + { + "id": "施工机械使用费_JXF", + "cost": "16323.30888" + }, + { + "cost": "14261.201966" + }, + { + "id": "虚节点", + "cost": "14261.201966" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "1193.233879" + }, + { + "id": "企业管理费_GLF", + "cost": "9388.76133" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "7130.600983" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "40005.348381" + }, + { + "cost": "1938036.877106" + }, + { + "id": "临时设施费_LSF", + "cost": "4843.989696" + }, + { + "id": "总计_ZJ", + "cost": "484509.219276" + }, + { + "id": "编制基准期价差_JC", + "cost": "7130.600983" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "808.603004" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "7130.600983" + }, + { + "id": "人工价差_RJC", + "cost": "3473.526633" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "13339.739232" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "299484" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "1002.938151" + }, + { + "id": "虚节点", + "cost": "1938036.877106" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "9869.226465" + }, + { + "id": "直接费_FFZ", + "cost": "396479.380546" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "937.300837" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "3473.526633" + }, + { + "id": "合计_HJ", + "cost": "484509.219276" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "375767.3023" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "20066.5908" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "1193.233879" + }, + { + "id": "安装费_AZF", + "cost": "185025.219276" + }, + { + "id": "社会保险费_BZHF", + "cost": "6561.105862" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "299484" + }, + { + "id": "主材费_ZCF", + "cost": "299484" + }, + { + "id": "定额直接费_DZF", + "cost": "76283.3023" + }, + { + "id": "利润_FFR", + "cost": "20827.298567" + }, + { + "id": "人工费_RGF", + "cost": "26254.92542" + }, + { + "id": "材料价差_CJC", + "cost": "2463.840471" + }, + { + "id": "材料费_CLF", + "cost": "33705.068" + }, + { + "id": "住房公积金_GJJ", + "cost": "3308.120603" + }, + { + "id": "措施费_FFZ2", + "cost": "20712.078246" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "0" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "2463.840471" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "588.110329" + }, + { + "id": "施工机械使用费_JXF", + "cost": "16323.30888" + }, + { + "cost": "1952298.079072" + }, + { + "id": "虚节点", + "cost": "1952298.079072" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "机械价差_JJC", + "cost": "1193.233879" + }, + { + "id": "企业管理费_GLF", + "cost": "9388.76133" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "7130.600983" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0" + }, + { + "id": "税金_FFS", + "cost": "40005.348381" + }, + { + "id": "临时设施费_LSF", + "cost": "4843.989696" + }, + { + "id": "总计_ZJ", + "cost": "484509.219276" + }, + { + "id": "编制基准期价差_JC", + "cost": "7130.600983" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "808.603004" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "7130.600983" + }, + { + "id": "人工价差_RJC", + "cost": "3473.526633" + }, + { + "id": "设备费_SBF", + "cost": "0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "13339.739232" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "299484" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "1002.938151" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0" + }, + { + "id": "规费_GF", + "cost": "9869.226465" + }, + { + "id": "直接费_FFZ", + "cost": "396479.380546" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "937.300837" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "3473.526633" + }, + { + "id": "合计_HJ", + "cost": "484509.219276" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "0" + }, + { + "id": "直接工程费_FFZ1", + "cost": "375767.3023" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0" + } + ] + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "51848.19161" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "2526.60705" + }, + { + "id": "安装费_AZF", + "cost": "325117.786343" + }, + { + "id": "社会保险费_BZHF", + "cost": "17153.209355" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "365166.9405" + }, + { + "id": "主材费_ZCF", + "cost": "384373.469343" + }, + { + "id": "定额直接费_DZF", + "cost": "141560.028117" + }, + { + "id": "利润_FFR", + "cost": "29319.964477" + }, + { + "id": "人工费_RGF", + "cost": "68640.29353999998" + }, + { + "id": "材料价差_CJC", + "cost": "2803.825547" + }, + { + "id": "材料费_CLF", + "cost": "38356.02664" + }, + { + "id": "住房公积金_GJJ", + "cost": "8648.676986" + }, + { + "id": "措施费_FFZ2", + "cost": "33390.32934" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "48373.2" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "2803.825547" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "1537.542573" + }, + { + "id": "施工机械使用费_JXF", + "cost": "34563.707935" + }, + { + "cost": "2905201.167296" + }, + { + "id": "虚节点", + "cost": "2905201.167296" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "19206.528842" + }, + { + "id": "机械价差_JJC", + "cost": "2526.60705" + }, + { + "id": "企业管理费_GLF", + "cost": "24545.76897" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "19206.528842" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0.0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "33618.07227399999" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "0.0" + }, + { + "id": "税金_FFS", + "cost": "54587.729368" + }, + { + "id": "临时设施费_LSF", + "cost": "8989.061785" + }, + { + "id": "总计_ZJ", + "cost": "709491.255686" + }, + { + "id": "编制基准期价差_JC", + "cost": "33618.07227399999" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "1500.536299" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "33618.07227399999" + }, + { + "id": "人工价差_RJC", + "cost": "9081.110835" + }, + { + "id": "设备费_SBF", + "cost": "0.0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "17791.207286" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "316793.7405" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "2622.059213" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0.0" + }, + { + "id": "规费_GF", + "cost": "25801.886341" + }, + { + "id": "直接费_FFZ", + "cost": "540117.297955" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "2450.4584800000002" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "9081.110835" + }, + { + "id": "合计_HJ", + "cost": "709491.255686" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0.0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "19206.528842" + }, + { + "id": "直接工程费_FFZ1", + "cost": "506726.968617" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0.0" + } + ] + }, + { + "GUID": "{0EA5CAA6-3C15-4658-8012-48BB88C6A8C9}" + }, + { + "GUID": "{AB451BF0-FBA6-4BA4-90CA-824D418B4C14}" + } + ], + "sum": [ + { + "id": "间接费_FFJ", + "cost": "1138141.6028250002" + }, + { + "id": "编制年价差_机械价差_JJC", + "cost": "40402.974077" + }, + { + "id": "安装费_AZF", + "cost": "5221427.530807" + }, + { + "id": "社会保险费_BZHF", + "cost": "379304.02941" + }, + { + "id": "装置性材料费_ZZCF", + "cost": "4502024.940806" + }, + { + "id": "主材费_ZCF", + "cost": "5933700.547947001" + }, + { + "id": "定额直接费_DZF", + "cost": "2341344.452273" + }, + { + "id": "利润_FFR", + "cost": "405505.36688199994" + }, + { + "id": "人工费_RGF", + "cost": "1517823.24694" + }, + { + "id": "材料价差_CJC", + "cost": "19796.426033" + }, + { + "id": "材料费_CLF", + "cost": "270812.94162399997" + }, + { + "id": "住房公积金_GJJ", + "cost": "191245.729115" + }, + { + "id": "措施费_FFZ2", + "cost": "523753.29308200005" + }, + { + "id": "甲供装置性材料费_JZZCF", + "cost": "3435351.17715" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "19796.426033" + }, + { + "id": "施工机构迁移费_ZYF", + "cost": "33999.240729000005" + }, + { + "id": "施工机械使用费_JXF", + "cost": "552708.263707" + }, + { + "cost": "48005878.36066101" + }, + { + "id": "虚节点", + "cost": "48005878.36066101" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "1431675.60714" + }, + { + "id": "机械价差_JJC", + "cost": "40402.974077" + }, + { + "id": "企业管理费_GLF", + "cost": "542773.5931030001" + }, + { + "id": "装置性材料价差_ZCJC", + "cost": "1431675.60714" + }, + { + "id": "夜间施工增加费_YSF", + "cost": "0.0" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "1692683.02282" + }, + { + "id": "甲供装置性材料价差_JZCJC", + "cost": "1038374.83412" + }, + { + "id": "税金_FFS", + "cost": "551675.4000649999" + }, + { + "id": "临时设施费_LSF", + "cost": "148675.372719" + }, + { + "id": "总计_ZJ", + "cost": "11155128.078754" + }, + { + "id": "编制基准期价差_JC", + "cost": "1692683.02282" + }, + { + "id": "施工企业配合调试费_TSF", + "cost": "24818.251196" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "1692683.02282" + }, + { + "id": "人工价差_RJC", + "cost": "200808.01557000002" + }, + { + "id": "设备费_SBF", + "cost": "0.0" + }, + { + "id": "安全文明施工费_BZF", + "cost": "228911.54168399997" + }, + { + "id": "乙供装置性材料费_YZZCF", + "cost": "1066673.763656" + }, + { + "id": "施工工具用具使用费_SYF", + "cost": "57980.848032999995" + }, + { + "id": "特殊地区施工增加费_TDF", + "cost": "0.0" + }, + { + "id": "规费_GF", + "cost": "570549.7585229999" + }, + { + "id": "直接费_FFZ", + "cost": "7367122.686159" + }, + { + "id": "冬雨季施工增加费_DYF", + "cost": "54186.289916" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "200808.01557000002" + }, + { + "id": "合计_HJ", + "cost": "11155128.078754" + }, + { + "id": "乙供设备不含税价_SBY", + "cost": "0.0" + }, + { + "id": "乙供装置性材料价差_YZCJC", + "cost": "393300.77301999996" + }, + { + "id": "直接工程费_FFZ1", + "cost": "6843369.393079" + }, + { + "id": "甲供设备含税价_SBJ", + "cost": "0.0" + } + ] + } + ], + "清理项目": [ + { + "GUID": "{C4189478-2AF5-452B-81F9-52F00BA0FF85}", + "children": [ + { + "GUID": "{2D305725-C56A-47D2-8A34-B44B4420A00A}" + }, + { + "GUID": "{58C34656-D682-4EDD-BB94-3FD01FBCA292}" + }, + { + "GUID": "{B7619B58-39BF-4F19-996E-3D6742D1C749}", + "children": [ + { + "GUID": "{D3F253A4-3228-42EC-B134-601DA6309397}" + }, + { + "GUID": "{96E5FC2D-BB1E-470A-8B75-DBB8FA9FD957}" + } + ] + }, + { + "GUID": "{BB3A2888-6AB1-4DFB-B59B-EFBCE7FA7F6A}" + }, + { + "GUID": "{381CE252-DE8C-4A73-B279-C3529C2A0EB8}", + "children": [ + { + "GUID": "{74034EDA-F2E6-4B2C-A673-E4167E86BC13}" + }, + { + "GUID": "{3262DA10-AE71-421B-A6D1-D48334E090E8}" + } + ] + } + ] + }, + { + "GUID": "{132CF57D-6154-4C3A-9111-D006D99977B2}", + "children": [ + { + "GUID": "{48C890AE-742B-44EE-B1E7-69640A00BBF2}" + }, + { + "GUID": "{ED7D04E4-AA0F-4118-8921-09CC24A893B2}" + }, + { + "GUID": "{326A93F1-CB4A-478B-808B-4DB125BB3102}", + "children": [ + { + "GUID": "{1C4E292A-04BD-4E54-A4B5-D3FB5F466C5C}" + }, + { + "GUID": "{C510BFCF-B0A5-4C28-820B-5DE2D01A9BBD}", + "children": [ + { + "id": "编制年价差_机械价差_JJC", + "cost": "155.309576" + }, + { + "id": "安全文明施工费_BZF", + "cost": "410.980211" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "6.33777" + }, + { + "id": "施工机械使用费_JXF", + "cost": "2124.618" + }, + { + "cost": "2801.429636" + }, + { + "id": "虚节点", + "cost": "2801.429636" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "直接费_FFZ", + "cost": "11987.887571" + }, + { + "id": "定额直接费_DZF", + "cost": "11576.90736" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "1400.714818" + }, + { + "id": "合计_HJ", + "cost": "11987.887571" + }, + { + "id": "直接工程费_FFZ1", + "cost": "11576.90736" + }, + { + "id": "材料费_CLF", + "cost": "86.7" + }, + { + "id": "人工费_RGF", + "cost": "9365.58936" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "1400.714818" + }, + { + "id": "虚节点", + "cost": "23975.775143" + }, + { + "cost": "23975.775143" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1239.067472" + }, + { + "id": "措施费_FFZ2", + "cost": "410.980211" + } + ], + "sum": [ + { + "id": "编制年价差_机械价差_JJC", + "cost": "155.309576" + }, + { + "id": "安全文明施工费_BZF", + "cost": "410.980211" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "6.33777" + }, + { + "id": "施工机械使用费_JXF", + "cost": "2124.618" + }, + { + "cost": "26777.204779" + }, + { + "id": "虚节点", + "cost": "26777.204779" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "直接费_FFZ", + "cost": "11987.887571" + }, + { + "id": "定额直接费_DZF", + "cost": "11576.90736" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "1400.714818" + }, + { + "id": "合计_HJ", + "cost": "11987.887571" + }, + { + "id": "直接工程费_FFZ1", + "cost": "11576.90736" + }, + { + "id": "材料费_CLF", + "cost": "86.7" + }, + { + "id": "人工费_RGF", + "cost": "9365.58936" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "1400.714818" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1239.067472" + }, + { + "id": "措施费_FFZ2", + "cost": "410.980211" + } + ] + } + ], + "sum": [ + { + "id": "编制年价差_机械价差_JJC", + "cost": "155.309576" + }, + { + "id": "安全文明施工费_BZF", + "cost": "410.980211" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "6.33777" + }, + { + "id": "施工机械使用费_JXF", + "cost": "2124.618" + }, + { + "cost": "26777.204779" + }, + { + "id": "虚节点", + "cost": "26777.204779" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "直接费_FFZ", + "cost": "11987.887571" + }, + { + "id": "定额直接费_DZF", + "cost": "11576.90736" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "1400.714818" + }, + { + "id": "合计_HJ", + "cost": "11987.887571" + }, + { + "id": "直接工程费_FFZ1", + "cost": "11576.90736" + }, + { + "id": "材料费_CLF", + "cost": "86.7" + }, + { + "id": "人工费_RGF", + "cost": "9365.58936" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "1400.714818" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1239.067472" + }, + { + "id": "措施费_FFZ2", + "cost": "410.980211" + } + ] + } + ], + "sum": [ + { + "id": "编制年价差_机械价差_JJC", + "cost": "155.309576" + }, + { + "id": "安全文明施工费_BZF", + "cost": "410.980211" + }, + { + "id": "编制年价差_材料价差_CJC", + "cost": "6.33777" + }, + { + "id": "施工机械使用费_JXF", + "cost": "2124.618" + }, + { + "cost": "26777.204779" + }, + { + "id": "虚节点", + "cost": "26777.204779" + }, + { + "id": "编制年价差_装置性材料价差_ZCJC", + "cost": "0" + }, + { + "id": "直接费_FFZ", + "cost": "11987.887571" + }, + { + "id": "定额直接费_DZF", + "cost": "11576.90736" + }, + { + "id": "编制年价差_合计_HJ", + "cost": "1400.714818" + }, + { + "id": "合计_HJ", + "cost": "11987.887571" + }, + { + "id": "直接工程费_FFZ1", + "cost": "11576.90736" + }, + { + "id": "材料费_CLF", + "cost": "86.7" + }, + { + "id": "人工费_RGF", + "cost": "9365.58936" + }, + { + "id": "编制年价差_线路编制基准期价差_JC", + "cost": "1400.714818" + }, + { + "id": "编制年价差_人工价差_RJC", + "cost": "1239.067472" + }, + { + "id": "措施费_FFZ2", + "cost": "410.980211" + } + ] + } + ] + } + }, + "projectCost": { + "其中:场地征用费": [ + { + "序号": "1", + "费用名称": "建设场地征用及清理费", + "代码": "CDZY", + "费率(%)": "100", + "输出": "0", + "金额": "4195.76065", + "children": [ + { + "序号": "1.1", + "费用名称": "土地征用费", + "代码": "TD", + "费率(%)": "100", + "输出": "0", + "金额": "0", + "children": [ + { + "序号": "1.1.1", + "费用名称": "建设场地征用", + "代码": "CD", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.1.2", + "费用名称": "林木补偿", + "代码": "LM", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.1.3", + "费用名称": "青苗、经济作物补偿", + "代码": "QM", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.1.4", + "费用名称": "桔子树、茶树赔偿", + "代码": "JZS", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.1.5", + "费用名称": "植被恢复", + "代码": "CS", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.1.6", + "费用名称": "拆除塔基赔偿", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.1.7", + "费用名称": "建、构筑物补偿", + "代码": "JG", + "费率(%)": "100", + "输出": "0", + "金额": "0" + } + ] + }, + { + "序号": "1.2", + "费用名称": "施工场地租用费", + "代码": "SG", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.3", + "费用名称": "牵引机场地租用费", + "代码": "QYJ", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.4", + "费用名称": "矿产压覆赔偿", + "代码": "KCPC", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.5", + "费用名称": "迁移补偿费", + "代码": "QY", + "费率(%)": "100", + "输出": "0", + "金额": "0", + "children": [ + { + "序号": "1.5.1", + "费用名称": "电力线路、通信线路迁移补偿", + "代码": "SL", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.5.2", + "费用名称": "道路迁移补偿", + "代码": "DL", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.5.3", + "费用名称": "管道迁移补偿", + "代码": "GD", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.5.4", + "费用名称": "厂矿迁移补偿", + "代码": "CK", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.5.5", + "费用名称": "军事设施迁移补偿", + "代码": "JS", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.5.6", + "费用名称": "水利设施迁移补偿", + "代码": "SLS", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.5.7", + "费用名称": "其他大额迁移补偿", + "代码": "QT", + "费率(%)": "100", + "输出": "0", + "金额": "0" + } + ] + }, + { + "序号": "1.6", + "费用名称": "余物清理费", + "代码": "YW", + "取费基数": "余物清理费+拆除工程费", + "费率(%)": "100", + "输出": "0", + "金额": "4195.76065", + "children": [ + { + "序号": "1.6.1", + "费用名称": "建、构筑物清理", + "代码": "JGC", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.6.2", + "费用名称": "电力线路清理", + "代码": "DLXL", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.6.3", + "费用名称": "通信线路清理", + "代码": "TXXL", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.6.4", + "费用名称": "道路设施清理", + "代码": "DLSS", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.6.5", + "费用名称": "管道设施清理", + "代码": "GDSS", + "费率(%)": "100", + "输出": "0", + "金额": "0" + } + ] + }, + { + "序号": "1.7", + "费用名称": "矿产压覆评估费用", + "代码": "YFK", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.8", + "费用名称": "输电线路走廊清理费", + "代码": "ZLPC", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.9", + "费用名称": "输电线路跨越补偿费", + "代码": "KYBC", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.10", + "费用名称": "通信设施防输电线路干扰措施费", + "代码": "TXGL", + "费率(%)": "100", + "输出": "0", + "金额": "0" + }, + { + "序号": "1.11", + "费用名称": "水土保持补偿费", + "代码": "STBC", + "费率(%)": "100", + "输出": "0", + "金额": "0" + } + ] + } + ], + "安装价差": [ + { + "序号": "1", + "费用名称": "线路编制基准期价差", + "代码": "JC", + "费率(%)": "100", + "金额": "1692683.02282", + "children": [ + { + "序号": "1.1", + "费用名称": "人工价差", + "代码": "RJC", + "取费基数": "线路人工价差", + "费率(%)": "100", + "金额": "200808.01557" + }, + { + "序号": "1.2", + "费用名称": "材料价差", + "代码": "CJC", + "取费基数": "线路乙供材料价差不含税", + "费率(%)": "100", + "金额": "19796.426033" + }, + { + "序号": "1.3", + "费用名称": "机械价差", + "代码": "JJC", + "取费基数": "线路机械价差", + "费率(%)": "100", + "金额": "40402.974077" + }, + { + "序号": "1.4", + "费用名称": "装置性材料价差", + "代码": "ZCJC", + "取费基数": "线路乙供主材价差不含税+线路甲供主材价差含税", + "费率(%)": "100", + "金额": "1431675.607141" + } + ] + }, + { + "序号": "2", + "费用名称": "合计", + "代码": "HJ", + "取费基数": "JC", + "费率(%)": "100", + "金额": "1692683.02282" + } + ], + "辅助费用": [ + { + "序号": "1", + "费用名称": "巡线、检修站工程", + "代码": "T1", + "费率(%)": "100", + "输出": "1", + "金额": "0", + "children": [ + { + "序号": "1.1", + "费用名称": "办公室、汽车库及仓库", + "代码": "TF1", + "费率(%)": "100", + "输出": "1", + "金额": "0" + }, + { + "序号": "1.2", + "费用名称": "巡检修站征地", + "代码": "TF2", + "费率(%)": "100", + "输出": "1", + "金额": "0" + }, + { + "序号": "1.3", + "费用名称": "室外工程", + "代码": "TF3", + "费率(%)": "100", + "输出": "1", + "金额": "0" + } + ] + }, + { + "序号": "2", + "费用名称": "巡线、检修道路工程", + "代码": "T2", + "费率(%)": "100", + "输出": "1", + "金额": "0" + }, + { + "序号": "3", + "费用名称": "生产维护通信设备", + "代码": "T3", + "费率(%)": "100", + "输出": "1", + "金额": "0" + }, + { + "序号": "4", + "费用名称": "生产作业工具", + "代码": "T4", + "费率(%)": "100", + "输出": "1", + "金额": "0" + } + ], + "其他费用": [ + { + "序号": "1", + "费用名称": "建设场地征用及清理费", + "代码": "A", + "取费基数": "建设场地征用及清理费", + "费率(%)": "100", + "输出": "0", + "编码": "34100000", + "表一显示": "1", + "金额": "4195.76065" + }, + { + "序号": "2", + "费用名称": "项目建设管理费", + "代码": "B", + "费率(%)": "100", + "输出": "0", + "编码": "34200000", + "表一显示": "0", + "金额": "338174.929112", + "children": [ + { + "序号": "2.1", + "费用名称": "项目法人管理费", + "代码": "B1", + "取费基数": "本体工程费", + "费率(%)": "1.17", + "输出": "0", + "编码": "34210000", + "表一显示": "0", + "金额": "130514.998521" + }, + { + "序号": "2.2", + "费用名称": "招标费", + "代码": "B2", + "取费基数": "本体工程费", + "费率(%)": "0.28", + "输出": "0", + "编码": "34220000", + "备注": "线路长度超过500km时,超过部分每增加100km,费率乘以0.92系数", + "表一显示": "0", + "金额": "31234.358621" + }, + { + "序号": "2.3", + "费用名称": "工程监理费", + "代码": "B3", + "取费基数": "工程监理费", + "费率(%)": "100", + "输出": "0", + "编制依据": "@工程监理费取费基数", + "编码": "34230000", + "备注": "说明:162号文指导费率区间:单回路0.73-0.74(万元/km);同杆(塔)双回0.92-0.93(万元/km)。", + "表一显示": "0", + "金额": "123996.47" + }, + { + "序号": "2.4", + "费用名称": "设备材料监造费", + "代码": "B4", + "费率(%)": "100", + "输出": "0", + "编码": "34240000", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "2.5", + "费用名称": "施工过程造价咨询及竣工结算审核费", + "代码": "B5", + "取费基数": "本体工程费", + "费率(%)": "0.47", + "输出": "0", + "编码": "34260000", + "备注": "1:如只开展工程竣工结算审核工作,按本费率乘以 0.75 系数。2:架空交流输电线路长度超过 300km 时,超过部分乘以 0.8 系数;架空直 流输电线路长度超过 1500km 时,超过部分乘以 0.8 系数。3:费用计算低于 3000 元时,按 3000 元计列。", + "表一显示": "0", + "金额": "52429.10197" + }, + { + "序号": "2.6", + "费用名称": "工程保险费", + "代码": "B6", + "费率(%)": "100", + "输出": "0", + "编码": "34250000", + "表一显示": "0", + "金额": "0" + } + ] + }, + { + "序号": "3", + "费用名称": "项目建设技术服务费", + "代码": "C", + "费率(%)": "100", + "输出": "0", + "编码": "34300000", + "表一显示": "0", + "金额": "775724.200246", + "children": [ + { + "序号": "3.1", + "费用名称": "项目前期工作费", + "代码": "C1", + "费率(%)": "100", + "输出": "0", + "编码": "34310000", + "表一显示": "0", + "金额": "0", + "children": [ + { + "序号": "3.1.1", + "费用名称": "可行性研究费用", + "代码": "C11", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用区间:12万元-20万元;20km以上,增加0.5万元/km;多回路、高海拔等可调整。", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.2", + "费用名称": "环境影响评价费用", + "代码": "C12", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用区间:5万元-8万元;20km以上,增加0.25万元/km;穿越环境敏感区、平行走廊等可调整。", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.3", + "费用名称": "建设项目规划选址费", + "代码": "C13", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用区间:3万元-10万元;20km以上,增加0.1万元/km;平行走廊等可调整。", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.4", + "费用名称": "水土保持方案编审费用", + "代码": "C14", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用区间:3万元-6万元;20km以上,增加0.2万元/km;平行走廊等可调整。", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.5", + "费用名称": "地质灾害危险性评估费用", + "代码": "C15", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用区间:2万元-3万元;20km以上,增加0.15万元/km;平行走廊等可调整。", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.6", + "费用名称": "地震安全性评价费用", + "代码": "C16", + "费率(%)": "100", + "输出": "0", + "备注": "说明:线路工程原则上不计此费用", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.7", + "费用名称": "文物调查费用", + "代码": "C17", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用区间:3万元-8万元;20km以上,增加0.05-0.15万元/km;平行走廊等可调整。", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.8", + "费用名称": "矿产压覆评估费用", + "代码": "C18", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用区间:4万元-8万元;20km以上,增加0.1-0.3万元/km;平行走廊等可调整。", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.9", + "费用名称": "用地预审费用", + "代码": "C19", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用区间:5万元-12万元;20km以上,增加0.1-0.3万元/km;平行走廊等可调整。", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.10", + "费用名称": "节能评估费用", + "代码": "C1A", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用区间:2万元-5万元;20km以上,增加0.01-0.05万元/km;平行走廊等可调整。", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.11", + "费用名称": "社会稳定风险评估费用", + "代码": "C1B", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用区间:5万元-10万元;20km以上,增加0.01-0.05万元/km;平行走廊等可调整。", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.12", + "费用名称": "使用林地可行性研究费用", + "代码": "C1C", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用区间:3万元-5万元;20km以上,增加0.1万元/km。", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.1.13", + "费用名称": "前期工作管理费用", + "代码": "C1D", + "费率(%)": "100", + "输出": "0", + "备注": "说明:162号文指导费用:10万元;单独的变电站、换流站、输电线路工程按40%-60%调整", + "表一显示": "0", + "金额": "0" + } + ] + }, + { + "序号": "3.2", + "费用名称": "知识产权转让与研究试验费", + "代码": "C2", + "费率(%)": "100", + "输出": "0", + "编码": "34320000", + "备注": "根据建设项目法人提出的项目和费用计列", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.3", + "费用名称": "勘察设计费", + "代码": "C3", + "费率(%)": "100", + "输出": "0", + "编码": "34330000", + "表一显示": "0", + "金额": "537252.15", + "children": [ + { + "序号": "3.3.1", + "费用名称": "勘察费", + "代码": "C31", + "取费基数": "勘察费", + "费率(%)": "100", + "输出": "0", + "表一显示": "0", + "金额": "37067.92" + }, + { + "序号": "3.3.2", + "费用名称": "设计费", + "代码": "C32", + "取费基数": "设计费", + "费率(%)": "100", + "输出": "0", + "表一显示": "0", + "金额": "500184.23" + } + ] + }, + { + "序号": "3.4", + "费用名称": "设计文件评审费", + "代码": "C4", + "费率(%)": "100", + "输出": "0", + "编码": "34340000", + "表一显示": "0", + "金额": "147000", + "children": [ + { + "序号": "3.4.1", + "费用名称": "可行性研究文件评审费", + "代码": "C41", + "取费基数": "可行性研究评审费", + "费率(%)": "100", + "输出": "0", + "编制依据": "@可行性研究评审费取费基数", + "编码": "34341000", + "表一显示": "0", + "金额": "35000" + }, + { + "序号": "3.4.2", + "费用名称": "初步设计文件评审费", + "代码": "C42", + "取费基数": "初步设计评审费", + "费率(%)": "100", + "输出": "0", + "编制依据": "@初步设计评审费取费基数", + "编码": "34342000", + "表一显示": "0", + "金额": "50000" + }, + { + "序号": "3.4.3", + "费用名称": "施工图文件评审费", + "代码": "C43", + "取费基数": "施工图评审费", + "费率(%)": "100", + "输出": "0", + "编制依据": "@施工图评审费取费基数", + "编码": "34343000", + "表一显示": "0", + "金额": "62000" + } + ] + }, + { + "序号": "3.5", + "费用名称": "项目后评价费", + "代码": "C5", + "取费基数": "本体工程费", + "费率(%)": "0.5", + "输出": "0", + "编码": "34350000", + "备注": "线路长度超过500km时,超过部分每增加200km,费率乘以0.92系数", + "表一显示": "0", + "金额": "55775.640394" + }, + { + "序号": "3.6", + "费用名称": "工程建设检测费", + "代码": "C6", + "费率(%)": "100", + "输出": "0", + "编码": "34360000", + "表一显示": "0", + "金额": "24541.281773", + "children": [ + { + "序号": "3.6.1", + "费用名称": "电力工程质量检测费", + "代码": "C61", + "取费基数": "本体工程费", + "费率(%)": "0.22", + "输出": "0", + "编码": "34361000", + "表一显示": "0", + "金额": "24541.281773" + }, + { + "序号": "3.6.2", + "费用名称": "特种设备安全监测费", + "代码": "C62", + "费率(%)": "100", + "输出": "0", + "编码": "34362000", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.6.3", + "费用名称": "环境监测及环境保护验收费", + "代码": "C63", + "费率(%)": "100", + "输出": "0", + "编码": "34363000", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.6.4", + "费用名称": "水土保持监测及验收费", + "代码": "C64", + "费率(%)": "100", + "输出": "0", + "编码": "34364000", + "表一显示": "0", + "金额": "0" + }, + { + "序号": "3.6.5", + "费用名称": "桩基检测费", + "代码": "C65", + "费率(%)": "100", + "输出": "0", + "编码": "34365000", + "表一显示": "0", + "金额": "0" + } + ] + }, + { + "序号": "3.7", + "费用名称": "电力工程技术经济标准编制费", + "代码": "C7", + "取费基数": "本体工程费", + "费率(%)": "0.1", + "输出": "0", + "编码": "34370000", + "表一显示": "0", + "金额": "11155.128079" + } + ] + }, + { + "序号": "4", + "费用名称": "生产准备费", + "代码": "D", + "费率(%)": "100", + "输出": "0", + "编码": "34500000", + "表一显示": "0", + "金额": "62468.717241", + "children": [ + { + "序号": "4.1", + "费用名称": "管理车辆购置费", + "代码": "D1", + "取费基数": "本体工程费", + "费率(%)": "0.25", + "输出": "0", + "编码": "34510000", + "备注": "注:如果管理车辆由项目法人单位统一配置,并且不在工程项目中分摊相关费用时,本项费用不计。", + "表一显示": "0", + "金额": "27887.820197" + }, + { + "序号": "4.2", + "费用名称": "工器具及办公家具购置费", + "代码": "D2", + "取费基数": "本体工程费", + "费率(%)": "0.21", + "输出": "0", + "编码": "34520000", + "表一显示": "0", + "金额": "23425.768965" + }, + { + "序号": "4.3", + "费用名称": "生产职工培训及提前进场费", + "代码": "D3", + "取费基数": "本体工程费", + "费率(%)": "0.1", + "输出": "0", + "编码": "34530000", + "表一显示": "0", + "金额": "11155.128079" + } + ] + }, + { + "序号": "5", + "费用名称": "专业爆破服务费", + "代码": "E", + "费率(%)": "100", + "输出": "0", + "表一显示": "0", + "金额": "0" + } + ], + "工程费用": [ + { + "序号": "一", + "费用名称": "架空输电线路本体工程", + "代码": "BTGC", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "11155128.078755", + "占总计(ZZJ)": "89.534349", + "建筑费(JZF)": "0", + "安装费(AZF)": "11155128.078755", + "设备费(SBF)": "0", + "其他费(QTF)": "0", + "施工费(SGF)": "6681402.067485", + "单位投资": "1355422.609812", + "children": [ + { + "序号": "(一)", + "费用名称": "一般线路本体工程", + "代码": "XLBT", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "11155128.078755", + "占总计(ZZJ)": "89.534349", + "建筑费(JZF)": "0", + "安装费(AZF)": "11155128.078755", + "设备费(SBF)": "0", + "其他费(QTF)": "0", + "施工费(SGF)": "6681402.067485", + "单位投资": "1355422.609812" + } + ] + }, + { + "序号": "二", + "费用名称": "辅助设施工程", + "代码": "FZSS", + "编码": "3A000000", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "0", + "占总计(ZZJ)": "0", + "建筑费(JZF)": "0", + "安装费(AZF)": "0", + "设备费(SBF)": "0", + "其他费(QTF)": "0", + "施工费(SGF)": "0", + "单位投资": "0" + }, + { + "费用名称": "小计", + "代码": "HJ", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "11155128.078755", + "占总计(ZZJ)": "89.534349", + "建筑费(JZF)": "0", + "安装费(AZF)": "11155128.078755", + "设备费(SBF)": "0", + "其他费(QTF)": "0", + "施工费(SGF)": "6681402.067485", + "单位投资": "1355422.609812" + }, + { + "序号": "三", + "费用名称": "其中:编制基准期价差", + "代码": "JC", + "编码": "35000000", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "1692683.02282", + "占总计(ZZJ)": "13.585973", + "建筑费(JZF)": "0", + "安装费(AZF)": "1692683.02282", + "设备费(SBF)": "0", + "其他费(QTF)": "0", + "施工费(SGF)": "0", + "单位投资": "205672.299249" + }, + { + "序号": "四", + "费用名称": "设备购置费", + "代码": "SBGZF", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "0", + "占总计(ZZJ)": "0", + "建筑费(JZF)": "0", + "安装费(AZF)": "0", + "设备费(SBF)": "0", + "其他费(QTF)": "0", + "施工费(SGF)": "0", + "单位投资": "0" + }, + { + "序号": "五", + "费用名称": "其他费用", + "代码": "QTFY", + "编码": "34000000", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "1180563.607249", + "占总计(ZZJ)": "9.475552", + "建筑费(JZF)": "0", + "安装费(AZF)": "0", + "设备费(SBF)": "0", + "其他费(QTF)": "1180563.607249", + "施工费(SGF)": "4195.76065", + "单位投资": "143446.367831", + "children": [ + { + "序号": "1", + "费用名称": "其中:建设场地征用及清理费", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "4195.76065", + "占总计(ZZJ)": "0", + "建筑费(JZF)": "0", + "安装费(AZF)": "0", + "设备费(SBF)": "0", + "其他费(QTF)": "4195.76065", + "施工费(SGF)": "0", + "单位投资": "0" + } + ] + }, + { + "序号": "六", + "费用名称": "基本预备费", + "代码": "JBYBF", + "编码": "38000000", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "123356.91686", + "占总计(ZZJ)": "0.990099", + "建筑费(JZF)": "0", + "安装费(AZF)": "0", + "设备费(SBF)": "0", + "其他费(QTF)": "123356.91686", + "施工费(SGF)": "0", + "单位投资": "14988.689776" + }, + { + "序号": "七", + "费用名称": "特殊项目", + "代码": "TSXM", + "编码": "36000000", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "0", + "占总计(ZZJ)": "0", + "建筑费(JZF)": "0", + "安装费(AZF)": "0", + "设备费(SBF)": "0", + "其他费(QTF)": "0", + "施工费(SGF)": "0", + "单位投资": "0" + }, + { + "费用名称": "工程静态投资(一~七项合计)", + "代码": "JTTZ", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "12459048.602864", + "占总计(ZZJ)": "100", + "建筑费(JZF)": "0", + "安装费(AZF)": "11155128.078755", + "设备费(SBF)": "0", + "其他费(QTF)": "1303920.524109", + "施工费(SGF)": "6685597.828135", + "单位投资": "1513857.66742" + }, + { + "序号": "八", + "费用名称": "动态费用", + "代码": "DTFY", + "编码": "37000000", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "220992.374593", + "占总计(ZZJ)": "0", + "建筑费(JZF)": "0", + "安装费(AZF)": "0", + "设备费(SBF)": "0", + "其他费(QTF)": "220992.374593", + "施工费(SGF)": "0", + "单位投资": "0", + "children": [ + { + "序号": "(一)", + "费用名称": "价差预备费", + "代码": "JCYBF", + "编码": "37100000", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "0", + "占总计(ZZJ)": "0", + "建筑费(JZF)": "0", + "安装费(AZF)": "0", + "设备费(SBF)": "0", + "其他费(QTF)": "0", + "施工费(SGF)": "0", + "单位投资": "0" + }, + { + "序号": "(二)", + "费用名称": "建设期贷款利息", + "代码": "DKLX", + "编码": "37200000", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "220992.374593", + "占总计(ZZJ)": "0", + "建筑费(JZF)": "0", + "安装费(AZF)": "0", + "设备费(SBF)": "0", + "其他费(QTF)": "220992.374593", + "施工费(SGF)": "0", + "单位投资": "0" + } + ] + }, + { + "费用名称": "工程动态投资(一~八项合计)", + "代码": "DTTZ", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "12680040.977457", + "占总计(ZZJ)": "0", + "建筑费(JZF)": "0", + "安装费(AZF)": "11155128.078755", + "设备费(SBF)": "0", + "其他费(QTF)": "1524912.898702", + "施工费(SGF)": "0", + "单位投资": "0" + }, + { + "费用名称": "其中:可抵扣增值税额", + "代码": "ZZS", + "报表输出": "0", + "建安合计费": "0", + "合计费(HJF)": "1130943.803251", + "占总计(ZZJ)": "0", + "建筑费(JZF)": "0", + "安装费(AZF)": "1069377.217296", + "设备费(SBF)": "0", + "其他费(QTF)": "61566.585955", + "施工费(SGF)": "0", + "单位投资": "0" + } + ] + }, + "report": { + "封面": { + "tableName": "封面", + "rows": [ + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "4", + "ColIndex": 0, + "RowIndex": 0, + "Data": "检 索 号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 6, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 8, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 9, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 12, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 13, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "4", + "ColIndex": 0, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 6, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 8, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 9, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 12, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 13, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "10", + "ColIndex": 0, + "RowIndex": 2, + "Data": "220kV架空线路工程" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "5", + "ColIndex": 10, + "RowIndex": 2, + "Data": "施工图预算" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 3, + "Data": "预算书" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 4, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 5, + "Data": "2024年09月15日" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "Data", + "columnLable": "Data", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "ColIndex", + "columnLable": "ColIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "RowIndex", + "columnLable": "RowIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeColCount", + "columnLable": "MergeColCount", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeRowCount", + "columnLable": "MergeRowCount", + "dataType": 0, + "columnIndex": 0 + } + ], + "tag": "unrule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "", + "tableStyle": { + "columns": [ + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "71" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "37" + }, + { + "width": "26" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "119" + } + ], + "pageInfo": { + "autoCalUnionRowHeight": "0", + "autoColumnWidth": "1", + "autoFillBlankLine": "0", + "bCalcPageCount": "0", + "bordyFrame": "0", + "colCount": "15", + "deflateSize": "3", + "fixColCount": "0", + "fixRowCount": "0", + "formatPrintFormulaText": "1", + "formatPrintText": "1", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "6.25", + "marginLeft": "6.25", + "marginRight": "6.25", + "marginTop": "10.416667", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "", + "tailRightText": "" + }, + "title": { + "marginTitle": "1", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "titleText": "" + } + }, + "rowCount": "6", + "uniteCellAllowFillBlankLine": "0" + }, + "poePictureList": [], + "poeStylesList": [ + { + "adj": "32", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "61442", + "fmt": "0", + "fontHeight": "-25", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "32", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "49152", + "fmt": "0", + "fontHeight": "-25", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "32", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "57344", + "fmt": "0", + "fontHeight": "-25", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "2", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "36", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "2", + "fmt": "0", + "fontHeight": "-19", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "2", + "fmt": "0", + "fontHeight": "-19", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "32", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "61442", + "fmt": "0", + "fontHeight": "-25", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "32", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "49152", + "fmt": "0", + "fontHeight": "-25", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "32", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "57344", + "fmt": "0", + "fontHeight": "-25", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "36", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "2", + "fmt": "0", + "fontHeight": "-19", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "2", + "fmt": "0", + "fontHeight": "-19", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "18", + "fmt": "0", + "fontHeight": "-43", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-43", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "2", + "fmt": "0", + "fontHeight": "-43", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "36", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "2", + "fmt": "0", + "fontHeight": "-64", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "36", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-64", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "36", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "2", + "fmt": "0", + "fontHeight": "-28", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "36", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-28", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + } + ], + "prePictureList": [], + "rows": [ + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "0", + "uc": "4", + "ur": "1", + "value": "检 索 号" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "2", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[0].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "51", + "index": "0", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "10", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "10", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "10", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "10", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "4", + "ur": "1", + "value": "[工程编号]" + }, + "1": { + "index": "1", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[1].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "50", + "index": "1", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "1", + "style": "11", + "uc": "10", + "ur": "1", + "value": "[工程名称]" + }, + "1": { + "index": "1", + "sel": "1", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "1", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "1", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "1", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "1", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "1", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "1", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "1", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "1", + "style": "12", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "13", + "uc": "5", + "ur": "1", + "value": "[预算类型]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[2].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "66", + "index": "2", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "14", + "uc": "15", + "ur": "1", + "value": "[表头设置]书" + }, + "1": { + "index": "1", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "15", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[3].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "271", + "index": "3", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "16", + "uc": "15", + "ur": "1", + "value": "[编制单位]" + }, + "1": { + "index": "1", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[4].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "51", + "index": "4", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "16", + "uc": "15", + "ur": "1", + "value": "[新建时间]" + }, + "1": { + "index": "1", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "17", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.封面.tableStyle.rows[5].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "57", + "index": "5", + "newpage": "0" + } + ] + } + }, + "签字审批": { + "tableName": "签字审批", + "rows": [ + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "14", + "ColIndex": 0, + "RowIndex": 0, + "Data": "220kV架空线路工程" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "14", + "ColIndex": 0, + "RowIndex": 1, + "Data": "(送审稿)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "7", + "ColIndex": 0, + "RowIndex": 2, + "Data": "批准:" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "7", + "ColIndex": 7, + "RowIndex": 2, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "7", + "ColIndex": 0, + "RowIndex": 3, + "Data": "审定:" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "7", + "ColIndex": 7, + "RowIndex": 3, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "7", + "ColIndex": 0, + "RowIndex": 4, + "Data": "校核:" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "7", + "ColIndex": 7, + "RowIndex": 4, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "7", + "ColIndex": 0, + "RowIndex": 5, + "Data": "编制:" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "7", + "ColIndex": 7, + "RowIndex": 5, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "7", + "ColIndex": 0, + "RowIndex": 6, + "Data": "工程设计证书:" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "7", + "ColIndex": 7, + "RowIndex": 6, + "Data": "" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "Data", + "columnLable": "Data", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "ColIndex", + "columnLable": "ColIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "RowIndex", + "columnLable": "RowIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeColCount", + "columnLable": "MergeColCount", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeRowCount", + "columnLable": "MergeRowCount", + "dataType": 0, + "columnIndex": 0 + } + ], + "tag": "unrule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "", + "tableStyle": { + "columns": [ + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "75" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + } + ], + "pageInfo": { + "autoCalUnionRowHeight": "0", + "autoColumnWidth": "1", + "autoFillBlankLine": "0", + "bCalcPageCount": "0", + "bordyFrame": "0", + "colCount": "14", + "deflateSize": "3", + "fixColCount": "0", + "fixRowCount": "0", + "formatPrintFormulaText": "1", + "formatPrintText": "1", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "6.25", + "marginLeft": "6.25", + "marginRight": "6.25", + "marginTop": "10.416667", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "", + "tailRightText": "" + }, + "title": { + "marginTitle": "1", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "titleText": "" + } + }, + "rowCount": "7", + "uniteCellAllowFillBlankLine": "0" + }, + "poePictureList": [], + "poeStylesList": [ + { + "adj": "36", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "18", + "fmt": "0", + "fontHeight": "-57", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "36", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-57", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "36", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "2", + "fmt": "0", + "fontHeight": "-28", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "36", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-28", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "34", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "2", + "fmt": "0", + "fontHeight": "-28", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "34", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-28", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "2", + "fmt": "0", + "fontHeight": "-28", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-28", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + } + ], + "prePictureList": [], + "rows": [ + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "1", + "style": "0", + "uc": "14", + "ur": "1", + "value": "[工程名称]" + }, + "1": { + "index": "1", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[0].cellArrayMap.13" + } + ], + "fixRowheight": "0", + "height": "99", + "index": "0", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "2", + "uc": "14", + "ur": "1", + "value": "(送审稿)" + }, + "1": { + "index": "1", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[1].cellArrayMap.13" + } + ], + "fixRowheight": "0", + "height": "88", + "index": "1", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "4", + "uc": "7", + "ur": "1", + "value": "批准:" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "6", + "uc": "7", + "ur": "1", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[2].cellArrayMap.13" + } + ], + "fixRowheight": "0", + "height": "78", + "index": "2", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "4", + "uc": "7", + "ur": "1", + "value": "审定:" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "6", + "uc": "7", + "ur": "1", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[3].cellArrayMap.13" + } + ], + "fixRowheight": "0", + "height": "78", + "index": "3", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "4", + "uc": "7", + "ur": "1", + "value": "校核:" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "6", + "uc": "7", + "ur": "1", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[4].cellArrayMap.13" + } + ], + "fixRowheight": "0", + "height": "76", + "index": "4", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "4", + "uc": "7", + "ur": "1", + "value": "编制:" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "6", + "uc": "7", + "ur": "1", + "value": "[编制人]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[5].cellArrayMap.13" + } + ], + "fixRowheight": "0", + "height": "68", + "index": "5", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "4", + "uc": "7", + "ur": "1", + "value": "工程设计证书:" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "6", + "uc": "7", + "ur": "1", + "value": "[资质证书]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.签字审批.tableStyle.rows[6].cellArrayMap.13" + } + ], + "fixRowheight": "0", + "height": "64", + "index": "6", + "newpage": "0" + } + ] + } + }, + "编制说明": { + "tableName": "编制说明", + "rows": [ + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 0, + "Data": "编 制 说 明" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 1, + "Data": "本卷为220kV220kV架空线路工程预算书" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 2, + "Data": "1、设计依据" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 3, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 4, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 5, + "Data": "2、工程投资" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 6, + "Data": "工程总投资:1268万元" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 7, + "Data": "其中,工程静态投资:1246万元,单位静态投资:151.4万元/km。" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 8, + "Data": "3、工程概况" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 9, + "Data": "3.1本工程线路全长8.23km,导线采用JL/G1A-300/40钢芯铝绞线;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 10, + "Data": "3.2本概算所有材料均按规定计算损耗;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 11, + "Data": "3.3所有现浇基础均采用板式;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 12, + "Data": "3.4地形:平地59%,丘陵23%,山地0%,高山0%,峻岭0%,泥沼18%,河网0%,沙漠0%;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 13, + "Data": "3.5地质:普通土0.288%,坚土1.486%,松砂石34.96%,岩石0%,\t泥水坑23.187%,流砂坑40.079%,水坑0%,干砂坑0%" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 14, + "Data": "4、编制依据" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 15, + "Data": "4.1预算定额按《电力建设工程预算定额》第四册执行;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 16, + "Data": "4.2根据《电网工程建设预算编制与计算标准》进行项目划分和编制" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 17, + "Data": "5、编制方法" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 18, + "Data": "5.1工程取费按照220kV新建工程、Ⅰ类取费;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "15", + "ColIndex": 0, + "RowIndex": 19, + "Data": "5.2工程材料机械按材机系数调整执行;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "Data", + "columnLable": "Data", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "ColIndex", + "columnLable": "ColIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "RowIndex", + "columnLable": "RowIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeColCount", + "columnLable": "MergeColCount", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeRowCount", + "columnLable": "MergeRowCount", + "dataType": 0, + "columnIndex": 0 + } + ], + "tag": "unrule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "", + "tableStyle": { + "columns": [ + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "50" + }, + { + "width": "89" + } + ], + "pageInfo": { + "autoCalUnionRowHeight": "0", + "autoColumnWidth": "1", + "autoFillBlankLine": "0", + "bCalcPageCount": "0", + "bordyFrame": "0", + "colCount": "15", + "deflateSize": "3", + "fixColCount": "0", + "fixRowCount": "0", + "formatPrintFormulaText": "1", + "formatPrintText": "1", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "6.25", + "marginLeft": "6.25", + "marginRight": "6.25", + "marginTop": "10.416667", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "", + "tailRightText": "" + }, + "title": { + "marginTitle": "1", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "titleText": "" + } + }, + "rowCount": "20", + "uniteCellAllowFillBlankLine": "0" + }, + "poePictureList": [], + "poeStylesList": [ + { + "adj": "68", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "18", + "fmt": "0", + "fontHeight": "-49", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "68", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-49", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "33", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "18", + "fmt": "0", + "fontHeight": "-24", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "33", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-24", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "33", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "18", + "fmt": "0", + "fontHeight": "-28", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "33", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-28", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "18", + "fmt": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "33", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "18", + "fmt": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "33", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "0", + "fmt": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "16", + "fmt": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + } + ], + "prePictureList": [], + "rows": [ + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "0", + "uc": "15", + "ur": "1", + "value": "编 制 说 明" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[0].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "59", + "index": "0", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "1", + "style": "2", + "uc": "15", + "ur": "1", + "value": " 本卷为[电压等级][工程名称][表头设置]书" + }, + "1": { + "index": "1", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[1].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "34", + "index": "1", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "4", + "uc": "15", + "ur": "1", + "value": "1、设计依据" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[2].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "35", + "index": "2", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "15", + "ur": "1", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[3].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "27", + "index": "3", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "15", + "ur": "1", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[4].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "25", + "index": "4", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "4", + "uc": "15", + "ur": "1", + "value": "2、工程投资" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[5].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "38", + "index": "5", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "8", + "uc": "15", + "ur": "1", + "value": "工程总投资:[工程总投资(万元)]万元" + }, + "1": { + "index": "1", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[6].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "25", + "index": "6", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "15", + "ur": "1", + "value": " 其中,工程静态投资:[工程静态投资(万元)]万元,单位静态投资:[静态投资(单)]万元⁄km。" + }, + "1": { + "index": "1", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[7].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "25", + "index": "7", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "4", + "uc": "15", + "ur": "1", + "value": "3、工程概况" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[8].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "40", + "index": "8", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "15", + "ur": "1", + "value": "3.1本工程线路全长[线路亘长]km,导线采用[导线1型号]钢芯铝绞线;" + }, + "1": { + "index": "1", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[9].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "25", + "index": "9", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "15", + "ur": "1", + "value": "3.2本概算所有材料均按规定计算损耗;" + }, + "1": { + "index": "1", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[10].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "25", + "index": "10", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "15", + "ur": "1", + "value": "3.3所有现浇基础均采用板式;" + }, + "1": { + "index": "1", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[11].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "25", + "index": "11", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "10", + "uc": "15", + "ur": "1", + "value": "3.4地形:平地[平地]%,丘陵[丘陵]%,山地[山地]%,高山[高山]%,峻岭[峻岭]%,泥沼[泥沼]%,河网[河网]%,沙漠[沙漠]%;" + }, + "1": { + "index": "1", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[12].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "28", + "index": "12", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "15", + "ur": "1", + "value": "3.5地质:普通土[普通土比例]%,坚土[坚土比例]%,松砂石[松砂石比例]%,岩石[岩石比例]%,\t泥水坑[泥水坑比例]%,流砂坑[流砂坑比例]%,水坑[水坑比例]%,干砂坑[干砂坑比例]%" + }, + "1": { + "index": "1", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[13].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "33", + "index": "13", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "4", + "uc": "15", + "ur": "1", + "value": "4、编制依据" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[14].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "38", + "index": "14", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "8", + "uc": "15", + "ur": "1", + "value": "4.1预算定额按《电力建设工程预算定额》第四册执行;" + }, + "1": { + "index": "1", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[15].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "25", + "index": "15", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "15", + "ur": "1", + "value": "4.2根据《电网工程建设预算编制与计算标准》进行项目划分和编制" + }, + "1": { + "index": "1", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[16].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "25", + "index": "16", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "4", + "uc": "15", + "ur": "1", + "value": "5、编制方法" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[17].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "38", + "index": "17", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "8", + "uc": "15", + "ur": "1", + "value": "5.1工程取费按照[电压等级][工程性质]工程、[地区分类]取费;" + }, + "1": { + "index": "1", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[18].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "25", + "index": "18", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "8", + "uc": "15", + "ur": "1", + "value": "5.2工程材料机械按材机系数调整执行;" + }, + "1": { + "index": "1", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.编制说明.tableStyle.rows[19].cellArrayMap.14" + } + ], + "fixRowheight": "0", + "height": "25", + "index": "19", + "newpage": "0" + } + ] + } + }, + "目录": { + "tableName": "目录", + "rows": [ + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 0, + "Data": "表N.10 架空输电线路工程总预算表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 0, + "Data": " 1" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 1, + "Data": "表N.11 架空输电线路安装工程汇总预算表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 1, + "Data": " 2" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 2, + "Data": "表N.12 架空输电线路单位工程预算表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 2, + "Data": " 4" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 3, + "Data": "架空线路单位工程预算表(拆除工程) " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 3, + "Data": " 48" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 4, + "Data": "架空线路单位工程预算表(余物清理工程) " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 4, + "Data": " 49" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 5, + "Data": "表N.15 架空输电线路辅助设施工程预算表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 5, + "Data": " 51" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 6, + "Data": "表N.13 架空输电线路其他费用预算表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 6, + "Data": " 52" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 7, + "Data": "表N.14 架空输电线路工程概况及主要技术经济指标表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 7, + "Data": " 53" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 8, + "Data": "架空线路工程概况及主要技术经济指标表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 8, + "Data": " 54" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 9, + "Data": "表N.16 架空输电线路建设场地征用及清理费用预算表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 9, + "Data": " 56" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 10, + "Data": "综合地形增加系数计算表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 10, + "Data": " 57" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 11, + "Data": "输电线路工程装置性材料统计表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 11, + "Data": " 59" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 12, + "Data": "安装甲供装置性材料汇总表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 12, + "Data": " 63" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 13, + "Data": "安装乙供装置性材料汇总表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 13, + "Data": " 64" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 14, + "Data": "安装甲供装置性材料价差汇总表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 14, + "Data": " 67" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 15, + "Data": "安装乙供装置性材料价差汇总表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 15, + "Data": " 68" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 16, + "Data": "输电线路工程土石方量计算表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 16, + "Data": " 70" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 17, + "Data": "输电线路工程工地运输重量计算表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 17, + "Data": " 73" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 18, + "Data": "输电线路工程工地运输工程量计算表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 18, + "Data": " 75" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 19, + "Data": "输电线路工程杆塔分类一览表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 19, + "Data": " 78" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 20, + "Data": "安装甲供设备汇总表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 20, + "Data": " 79" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 21, + "Data": "安装乙供设备汇总表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 21, + "Data": " 80" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 22, + "Data": "安装材料汇总表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 22, + "Data": " 81" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 23, + "Data": "安装机械汇总表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 23, + "Data": " 85" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 24, + "Data": "安装人工按系数调差明细表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 24, + "Data": " 88" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 25, + "Data": "安装材料按系数调差明细表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 25, + "Data": " 89" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 26, + "Data": "安装机械按系数调差明细表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 26, + "Data": " 90" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 27, + "Data": "设备购置费明细表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 27, + "Data": " 91" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 28, + "Data": "建设期贷款利息明细表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 28, + "Data": " 92" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 29, + "Data": "勘察费明细表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 29, + "Data": " 93" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 30, + "Data": "勘察费复杂程度表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 30, + "Data": " 94" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 31, + "Data": "设计费明细表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 31, + "Data": " 95" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 32, + "Data": "主要材料设计费价格调整表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 32, + "Data": " 96" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 33, + "Data": "组合件汇总表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 33, + "Data": " 97" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 34, + "Data": "可抵扣增值税分析表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 34, + "Data": " 98" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 35, + "Data": "安装基准期价差明细表 " + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 35, + "Data": " 99" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "Data", + "columnLable": "Data", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "ColIndex", + "columnLable": "ColIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "RowIndex", + "columnLable": "RowIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeColCount", + "columnLable": "MergeColCount", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeRowCount", + "columnLable": "MergeRowCount", + "dataType": 0, + "columnIndex": 0 + } + ], + "tag": "unrule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "", + "tableStyle": { + "columns": [ + { + "width": "0" + }, + { + "width": "640" + }, + { + "width": "120" + }, + { + "width": "0" + } + ], + "pageInfo": { + "autoCalUnionRowHeight": "1", + "autoColumnWidth": "1", + "autoFillBlankLine": "0", + "bCalcPageCount": "0", + "bordyFrame": "0", + "colCount": "4", + "deflateSize": "2", + "fixColCount": "0", + "fixRowCount": "0", + "formatPrintFormulaText": "1", + "formatPrintText": "1", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "6.25", + "marginLeft": "6.25", + "marginRight": "6.25", + "marginTop": "9.375", + "middleMode": "0", + "orderMode": "1", + "orientMode": "0", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "", + "tailRightText": "" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-20", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "2", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "目录" + } + }, + "rowCount": "36", + "uniteCellAllowFillBlankLine": "0" + }, + "poePictureList": [], + "poeStylesList": [ + { + "adj": "33", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "8", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "SimSun", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "34", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "8", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "SimSun", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + } + ], + "prePictureList": [], + "rows": [ + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "表N.10 架空输电线路工程总[表头设置]表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 1" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[0].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[0].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "0", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "表N.11 架空输电线路安装工程汇总[表头设置]表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 2" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[1].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[1].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "1", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "表N.12 架空输电线路单位工程[表头设置]表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 4" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[2].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[2].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "2", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "架空线路单位工程[表头设置]表(拆除工程) [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 48" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[3].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[3].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "3", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "架空线路单位工程[表头设置]表(余物清理工程) [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 49" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[4].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[4].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "4", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "表N.15 架空输电线路辅助设施工程[表头设置]表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 51" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[5].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[5].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "5", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "表N.13 架空输电线路其他费用[表头设置]表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 52" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[6].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[6].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "6", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "表N.14 架空输电线路工程概况及主要技术经济指标表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 53" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[7].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[7].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "7", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "架空线路工程概况及主要技术经济指标表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 54" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[8].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[8].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "8", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "表N.16 架空输电线路建设场地征用及清理费用[表头设置]表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 56" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[9].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[9].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "9", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "综合地形增加系数计算表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 57" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[10].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[10].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "10", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "输电线路工程装置性材料统计表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 59" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[11].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[11].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "11", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装甲供装置性材料汇总表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 63" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[12].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[12].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "12", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装乙供装置性材料汇总表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 64" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[13].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[13].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "13", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装甲供装置性材料价差汇总表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 67" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[14].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[14].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "14", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装乙供装置性材料价差汇总表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 68" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[15].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[15].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "15", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "输电线路工程土石方量计算表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 70" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[16].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[16].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "16", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "输电线路工程工地运输重量计算表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 73" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[17].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[17].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "17", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "输电线路工程工地运输工程量计算表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 75" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[18].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[18].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "18", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "输电线路工程杆塔分类一览表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 78" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[19].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[19].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "19", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装甲供设备汇总表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 79" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[20].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[20].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "20", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装乙供设备汇总表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 80" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[21].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[21].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "21", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装材料汇总表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 81" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[22].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[22].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "22", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装机械汇总表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 85" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[23].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[23].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "23", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装人工按系数调差明细表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 88" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[24].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[24].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "24", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装材料按系数调差明细表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 89" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[25].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[25].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "25", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装机械按系数调差明细表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 90" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[26].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[26].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "26", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "设备购置费明细表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 91" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[27].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[27].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "27", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "建设期贷款利息明细表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 92" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[28].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[28].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "28", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "勘察费明细表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 93" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[29].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[29].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "29", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "勘察费复杂程度表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 94" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[30].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[30].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "30", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "设计费明细表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 95" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[31].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[31].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "31", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "主要材料设计费价格调整表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 96" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[32].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[32].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "32", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "组合件汇总表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 97" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[33].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[33].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "33", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "可抵扣增值税分析表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 98" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[34].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[34].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "34", + "newpage": "0" + }, + { + "cellArrayMap": { + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "安装基准期价差明细表 [目录间隔Ex]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[目录间隔Ex] 99" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.目录.tableStyle.rows[35].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.目录.tableStyle.rows[35].cellArrayMap.2" + } + ], + "fixRowheight": "0", + "height": "22", + "index": "35", + "newpage": "0" + } + ] + } + }, + "架空输电线路工程总预算表": { + "tableName": "架空输电线路工程总预算表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "135.6", + "序号": "一", + "工程或费用名称": "架空输电线路本体工程", + "各项占静态投资%": "89.57", + "费用金额": "1116", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "135.6", + "序号": "(一)", + "工程或费用名称": "一般线路本体工程", + "各项占静态投资%": "89.57", + "费用金额": "1116", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "", + "序号": "二", + "工程或费用名称": "辅助设施工程", + "各项占静态投资%": "", + "费用金额": "", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "135.6", + "序号": "", + "工程或费用名称": "小计", + "各项占静态投资%": "89.57", + "费用金额": "1116", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "20.53", + "序号": "三", + "工程或费用名称": "其中:编制基准期价差", + "各项占静态投资%": "13.56", + "费用金额": "169", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "", + "序号": "四", + "工程或费用名称": "设备购置费", + "各项占静态投资%": "", + "费用金额": "", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "14.34", + "序号": "五", + "工程或费用名称": "其他费用", + "各项占静态投资%": "9.47", + "费用金额": "118", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "", + "序号": "1", + "工程或费用名称": "其中:建设场地征用及清理费", + "各项占静态投资%": "", + "费用金额": "", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "1.46", + "序号": "六", + "工程或费用名称": "基本预备费", + "各项占静态投资%": "0.96", + "费用金额": "12", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "", + "序号": "七", + "工程或费用名称": "特殊项目", + "各项占静态投资%": "", + "费用金额": "", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "151.4", + "序号": "", + "工程或费用名称": "工程静态投资(一~七项合计)", + "各项占静态投资%": "100", + "费用金额": "1246", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "", + "序号": "八", + "工程或费用名称": "动态费用", + "各项占静态投资%": "", + "费用金额": "22", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "", + "序号": "(一)", + "工程或费用名称": "价差预备费", + "各项占静态投资%": "", + "费用金额": "", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "", + "序号": "(二)", + "工程或费用名称": "建设期贷款利息", + "各项占静态投资%": "", + "费用金额": "22", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "", + "序号": "", + "工程或费用名称": "工程动态投资(一~八项合计)", + "各项占静态投资%": "", + "费用金额": "1268", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "费用金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位投资万元/km": "", + "序号": "", + "工程或费用名称": "其中:可抵扣增值税额", + "各项占静态投资%": "", + "费用金额": "113", + "单位投资万元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "各项占静态投资%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 35, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "工程或费用名称", + "columnLable": "工程或费用名称", + "dataType": 140, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "费用金额", + "columnLable": "费用金额", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "各项占静态投资%", + "columnLable": "各项占静态投资%", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位投资万元/km", + "columnLable": "单位投资万元/km", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "表一 建设规模:8.23km", + "middleHeader": "", + "rightHeader": "金额单位:万元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "35" + }, + { + "fileName": "工程或费用名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "工程或费用名称", + "show": "1", + "width": "140" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "安装工程费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "安装工程费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "设备购置费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设备购置费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "其他费用", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其他费用", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "费用金额", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "费用金额", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "施工费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "施工费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "各项占静态投资(%)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "各项占静态投资%", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单位投资", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单位投资万元/km", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "安装甲供设备费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "安装甲供设备费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "安装甲供运杂费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "安装甲供运杂费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "安装乙供设备费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "安装乙供设备费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "安装乙供运杂费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "安装乙供运杂费", + "show": "0", + "width": "70" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "1", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "表一 建设规模:[线路亘长]km", + "subTitleRightText": "金额单位:[金额单位]" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "表N.10 架空输电线路工程总[表头设置]表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路安装工程汇总预算表": { + "tableName": "架空输电线路安装工程汇总预算表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "1976126", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "一", + "架线工程": "2054048", + "工程或费用名称": "直接费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "66.04", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "7367123", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "2013766", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "65145", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "540117", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "717921", + "单位投资元/km": "895154.64", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "1770043", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1", + "架线工程": "1917502", + "工程或费用名称": "直接工程费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "61.35", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "6843369", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "1921751", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "58817", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "506727", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "668530", + "单位投资元/km": "831515.115", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "1125385", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1.1", + "架线工程": "626204", + "工程或费用名称": "定额直接费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "20.99", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "2341344", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "221657", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "28766", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "141560", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "197773", + "单位投资元/km": "284488.998", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "745433", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1.1.1", + "架线工程": "350066", + "工程或费用名称": "人工费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "13.61", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "1517823", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "172982", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "25060", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "68640", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "155642", + "单位投资元/km": "184425.668", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "127880", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1.1.2", + "架线工程": "99338", + "工程或费用名称": "材料费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "2.43", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "270813", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "1857", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "229", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "38356", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "3153", + "单位投资元/km": "32905.582", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "252072", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1.1.3", + "架线工程": "176800", + "工程或费用名称": "施工机械使用费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "4.95", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "552708", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "46818", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "3477", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "34564", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "38978", + "单位投资元/km": "67157.748", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "644658", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1.2", + "架线工程": "1291298", + "工程或费用名称": "装置性材料费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "40.36", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "4502025", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "1700094", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "30051", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "365167", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "470757", + "单位投资元/km": "547026.117", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1.2.1", + "架线工程": "1224184", + "工程或费用名称": "甲供装置性材料费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "30.8", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "3435351", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "1700094", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "48373", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "462700", + "单位投资元/km": "417418.126", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "644658", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1.2.2", + "架线工程": "67114", + "工程或费用名称": "乙供装置性材料费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "9.56", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "1066674", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "30051", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "316794", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "8057", + "单位投资元/km": "129607.991", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "206084", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "2", + "架线工程": "136546", + "工程或费用名称": "措施费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "4.7", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "523753", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "92015", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "6328", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "33390", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "49390", + "单位投资元/km": "63639.525", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "26612", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "2.1", + "架线工程": "12497", + "工程或费用名称": "冬雨季施工增加费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "0.49", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "54186", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "3.57", + "杆塔工程": "6175", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "895", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "2450", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "5556", + "单位投资元/km": "6583.996", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "2.2", + "架线工程": "", + "工程或费用名称": "夜间施工增加费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "", + "杆塔工程": "", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "", + "单位投资元/km": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "28476", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "2.3", + "架线工程": "13373", + "工程或费用名称": "施工工具用具使用费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "0.52", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "57981", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "3.82", + "杆塔工程": "6608", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "957", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "2622", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "5946", + "单位投资元/km": "7045.061", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "2.4", + "架线工程": "", + "工程或费用名称": "特殊地区施工增加费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "", + "杆塔工程": "", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "", + "单位投资元/km": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "71462", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "2.5", + "架线工程": "39764", + "工程或费用名称": "临时设施费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "1.33", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "148675", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "6.35", + "杆塔工程": "14075", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "1827", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "8989", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "12559", + "单位投资元/km": "18065.051", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "16698", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "2.6", + "架线工程": "7841", + "工程或费用名称": "施工机构迁移费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "0.3", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "33999", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "2.24", + "杆塔工程": "3875", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "561", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "1538", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "3486", + "单位投资元/km": "4131.135", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "62837", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "2.7", + "架线工程": "63071", + "工程或费用名称": "安全文明施工费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "2.05", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "228912", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "3.55", + "杆塔工程": "61282", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "2088", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "17791", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "21843", + "单位投资元/km": "27814.282", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "558704", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "二", + "架线工程": "263411", + "工程或费用名称": "间接费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "10.2", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "1138142", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "129232", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "18686", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "51848", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "116260", + "单位投资元/km": "138291.811", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "280208", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1", + "架线工程": "131590", + "工程或费用名称": "规费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "5.11", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "570550", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "65024", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "9420", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "25802", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "58506", + "单位投资元/km": "69325.609", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "186284", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1.1", + "架线工程": "87482", + "工程或费用名称": "社会保险费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "3.4", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "379304", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "23.8", + "杆塔工程": "43228", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "6262", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "17153", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "38895", + "单位投资元/km": "46087.974", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "93925", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1.2", + "架线工程": "44108", + "工程或费用名称": "住房公积金", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "1.71", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "191246", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "12", + "杆塔工程": "21796", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "3158", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "8649", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "19611", + "单位投资元/km": "23237.634", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "266567", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "2", + "架线工程": "125184", + "工程或费用名称": "企业管理费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "4.87", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "542774", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "35.76", + "杆塔工程": "61858", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "8961", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "24546", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "55658", + "单位投资元/km": "65950.619", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "11929", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "3", + "架线工程": "6638", + "工程或费用名称": "施工企业配合调试费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "0.22", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "24818", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "1.06", + "杆塔工程": "2350", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "305", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "1501", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "2096", + "单位投资元/km": "3015.583", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "126742", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "三", + "架线工程": "108830", + "工程或费用名称": "利润", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "3.64", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "405505", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "5", + "杆塔工程": "97374", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "4192", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "29320", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "39048", + "单位投资元/km": "49271.612", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "478682", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "四", + "架线工程": "403581", + "工程或费用名称": "编制基准期价差", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "15.17", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "1692683", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "724282", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "25394", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "33618", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "27126", + "单位投资元/km": "205672.299", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "98621", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1", + "架线工程": "46314", + "工程或费用名称": "人工价差", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "1.8", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "200808", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "22885", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "3315", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "9081", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "20591", + "单位投资元/km": "24399.516", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "9348", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "2", + "架线工程": "7262", + "工程或费用名称": "材料价差", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "0.18", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "19796", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "136", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "17", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "2804", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "230", + "单位投资元/km": "2405.398", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "18426", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "3", + "架线工程": "12924", + "工程或费用名称": "机械价差", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "0.36", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "40403", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "3422", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "254", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "2527", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "2849", + "单位投资元/km": "4909.231", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "352286", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "4", + "架线工程": "337082", + "工程或费用名称": "装置性材料价差", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "12.83", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "1431676", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "697839", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "21808", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "19207", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "3455", + "单位投资元/km": "173958.154", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "4.1", + "架线工程": "337082", + "工程或费用名称": "甲供装置性材料价差", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "9.31", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "1038375", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "697839", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "3455", + "单位投资元/km": "126169.482", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "352286", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "4.2", + "架线工程": "", + "工程或费用名称": "乙供装置性材料价差", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "3.53", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "393301", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "21808", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "19207", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "", + "单位投资元/km": "47788.672", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "282623", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "五", + "架线工程": "114174", + "工程或费用名称": "税金", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "4.95", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "551675", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "9", + "杆塔工程": "51005", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "10208", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "54588", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "39078", + "单位投资元/km": "67032.248", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "六", + "架线工程": "", + "工程或费用名称": "设备费", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "", + "单位投资元/km": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "1", + "架线工程": "", + "工程或费用名称": "乙供设备不含税价", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "", + "单位投资元/km": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "2", + "架线工程": "", + "工程或费用名称": "甲供设备含税价", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "", + "单位投资元/km": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "3422877", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "九", + "架线工程": "2944044", + "工程或费用名称": "总计", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "100", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "11155128", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "100", + "杆塔工程": "3015659", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "123625", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "709491", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "939432", + "单位投资元/km": "1355422.61", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "", + "架线工程": "", + "工程或费用名称": "", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "", + "杆塔工程": "", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "", + "单位投资元/km": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "3422877", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "", + "架线工程": "2944044", + "工程或费用名称": "合计", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "100", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "11155128", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "", + "杆塔工程": "3015659", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "123625", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "709491", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "939432", + "单位投资元/km": "1355422.61", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "31", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "", + "架线工程": "26", + "工程或费用名称": "各项占合计(%)", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "100", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "", + "杆塔工程": "27", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "1", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "6", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "8", + "单位投资元/km": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:42px;", + "基础工程": "415902", + "单位投资元/kmTDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "序号": "", + "架线工程": "357721", + "工程或费用名称": "单位投资(元/km)", + "附件工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "各项占总计%": "", + "架线工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合计": "1355423", + "杆塔工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费率%": "", + "杆塔工程": "366423", + "辅助工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "取费基数": "", + "各项占总计%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "接地工程": "15021", + "合计TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "辅助工程": "86208", + "取费基数TDSTYLE": "font-weight:400;font-family:宋体;width:161px;", + "基础工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "接地工程TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "附件工程": "114147", + "单位投资元/km": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:168px;", + "费率%TDSTYLE": "font-weight:400;font-family:宋体;width:45px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 42, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "工程或费用名称", + "columnLable": "工程或费用名称", + "dataType": 168, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "取费基数", + "columnLable": "取费基数", + "dataType": 161, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "费率%", + "columnLable": "费率%", + "dataType": 45, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "基础工程", + "columnLable": "基础工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "杆塔工程", + "columnLable": "杆塔工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "接地工程", + "columnLable": "接地工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "架线工程", + "columnLable": "架线工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "附件工程", + "columnLable": "附件工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "辅助工程", + "columnLable": "辅助工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合计", + "columnLable": "合计", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "各项占总计%", + "columnLable": "各项占总计%", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位投资元/km", + "columnLable": "单位投资元/km", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "表二", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "42" + }, + { + "fileName": "工程或费用名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "工程或费用名称", + "show": "1", + "width": "168" + }, + { + "fileName": "取费基数", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "取费基数", + "show": "1", + "width": "161" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "费率(%)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "费率%", + "show": "1", + "width": "45" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "基础工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "基础工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "杆塔工程费率(%)", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "杆塔工程费率(%)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "杆塔工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "杆塔工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "接地工程费率(%)", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "接地工程费率(%)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "接地工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "接地工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "架线工程费率(%)", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "架线工程费率(%)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "架线工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "架线工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "附件安装工程费率(%)", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "附件工程费率(%)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "附件安装工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "附件工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "辅助工程费率(%)", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "辅助工程费率(%)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "辅助工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "辅助工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "电缆工程费率(%)", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "电缆工程费率(%)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "电缆工程", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "电缆工程", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "通信线路工程费率(%)", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "通信线路工程费率(%)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "通信线路工程", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "通信线路工程", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "各项占总计(%)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "各项占总计%", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单位投资", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单位投资元/km", + "show": "1", + "width": "77" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "表二", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "表N.11 架空输电线路安装工程汇总[表头设置]表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路单位工程预算表": { + "tableName": "架空输电线路单位工程预算表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "一", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "架空输电线路本体工程", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "4502025", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1517823", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "552708", + "合价.安装费.合计": "11155128", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "1", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "基础工程", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "644658", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "745433", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "252072", + "合价.安装费.合计": "3422877", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "1.1", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "基础工程材料工地运输", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "95884", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "16939", + "合价.安装费.合计": "250340", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "金具、绝缘子、零星钢材:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人力运输 金具、绝缘子、零星钢材", + "单价.安装费.合计": "131.28", + "单价.安装费.其中:机械费": "8.28", + "编制依据": "YX1-17", + "单位": "t.km", + "数量": "25.346", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "3118", + "单价.安装费.其中:人工费": "123", + "合价.安装费.其中:机械费": "210", + "合价.安装费.合计": "3327", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 装卸", + "单价.安装费.合计": "46.02", + "单价.安装费.其中:机械费": "26.19", + "编制依据": "YX1-97", + "单位": "t", + "数量": "84.486", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1065", + "单价.安装费.其中:人工费": "12.61", + "合价.安装费.其中:机械费": "2213", + "合价.安装费.合计": "3888", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 运输", + "单价.安装费.合计": "1.53", + "单价.安装费.其中:机械费": "1.02", + "编制依据": "YX1-98", + "单位": "t.km", + "数量": "844.861", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "431", + "单价.安装费.其中:人工费": "0.51", + "合价.安装费.其中:机械费": "862", + "合价.安装费.合计": "1293", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "其他建筑安装材料:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人力运输 其他建筑安装材料", + "单价.安装费.合计": "113.84", + "单价.安装费.其中:机械费": "7.3", + "编制依据": "YX1-22", + "单位": "t.km", + "数量": "725.3", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "77273", + "单价.安装费.其中:人工费": "106.54", + "合价.安装费.其中:机械费": "5295", + "合价.安装费.合计": "82568", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 其他建筑安装材料 装卸", + "单价.安装费.合计": "27.46", + "单价.安装费.其中:机械费": "17.87", + "编制依据": "YX1-107", + "单位": "t", + "数量": "323.575", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "3103", + "单价.安装费.其中:人工费": "9.59", + "合价.安装费.其中:机械费": "5782", + "合价.安装费.合计": "8885", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 其他建筑安装材料 运输", + "单价.安装费.合计": "1.16", + "单价.安装费.其中:机械费": "0.75", + "编制依据": "YX1-108", + "单位": "t.km", + "数量": "3235.746", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1327", + "单价.安装费.其中:人工费": "0.41", + "合价.安装费.其中:机械费": "2427", + "合价.安装费.合计": "3753", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输(人力运输)金具、绝缘子、零星钢材、塔材、其他建筑安装材料(不含机械费)", + "单价.安装费.合计": "80391.02", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "11.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "9486", + "单价.安装费.其中:人工费": "80391.02", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9486", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输拖拉机、汽车运输(不含装卸,沙漠地形没有正式公路时使用)", + "单价.安装费.合计": "5046.1", + "单价.安装费.其中:机械费": "3288.57", + "编制依据": "", + "单位": "%", + "数量": "4.6", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "81", + "单价.安装费.其中:人工费": "1757.53", + "合价.安装费.其中:机械费": "151", + "合价.安装费.合计": "232", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "95884", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "16939", + "合价.安装费.合计": "113433", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "133896.88", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "133897", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "113433.35", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "113433", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "113433.35", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "113433", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "95883.99", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "95884", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "609.99", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "610", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "16939.37", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "16939", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "20463.53", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "20464", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "95883.99", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3423", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "95883.99", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3663", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "113433.35", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "7203", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "95883.99", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2148", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "113433.35", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4027", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "71533.3", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "71533", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "36042.79", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "36043", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "100678.19", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "23961", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "100678.19", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "12081", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "95883.99", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "34288", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "113433.35", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1202", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "205430.19", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "10272", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "13968.31", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "13968", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "12685.45", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "12685", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "44.59", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "45", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "1238.27", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1238", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "229670.01", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "20670", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "250340.31", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "250340", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "250340.31", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "250340", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "250340.31", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "250340", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "1.2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "基础土石方工程", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "434759", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "195964", + "合价.安装费.合计": "1403040", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "线路复测及分坑:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "线路复测及分坑 直线自立塔", + "单价.安装费.合计": "76.56", + "单价.安装费.其中:机械费": "2.58", + "编制依据": "YX2-6", + "单位": "基", + "数量": "19", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "793", + "单价.安装费.其中:人工费": "41.76", + "合价.安装费.其中:机械费": "49", + "合价.安装费.合计": "1455", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "线路复测及分坑 耐张(转角)自立塔", + "单价.安装费.合计": "103.96", + "单价.安装费.其中:机械费": "3.74", + "编制依据": "YX2-7", + "单位": "基", + "数量": "10", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "626", + "单价.安装费.其中:人工费": "62.62", + "合价.安装费.其中:机械费": "37", + "合价.安装费.合计": "1040", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "松砂石:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 松砂石 坑深3.0m以内", + "单价.安装费.合计": "33.82", + "单价.安装费.其中:机械费": "2.86", + "编制依据": "YX2-25", + "单位": "m?", + "数量": "220.684", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6832", + "单价.安装费.其中:人工费": "30.96", + "合价.安装费.其中:机械费": "631", + "合价.安装费.合计": "7464", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 松砂石 坑深4.0m以内", + "单价.安装费.合计": "40.72", + "单价.安装费.其中:机械费": "3.74", + "编制依据": "YX2-26", + "单位": "m?", + "数量": "1439.64", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "53238", + "单价.安装费.其中:人工费": "36.98", + "合价.安装费.其中:机械费": "5384", + "合价.安装费.合计": "58622", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 松砂石 坑深5.0m以内", + "单价.安装费.合计": "45.34", + "单价.安装费.其中:机械费": "3.84", + "编制依据": "YX2-27", + "单位": "m?", + "数量": "448.743", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "18623", + "单价.安装费.其中:人工费": "41.5", + "合价.安装费.其中:机械费": "1723", + "合价.安装费.合计": "20346", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "挖孔基础人工挖方(或爆破) 松砂石 坑径1000mm以内 坑深5m以内", + "单价.安装费.合计": "54.98", + "单价.安装费.其中:机械费": "5.03", + "编制依据": "YX2-129", + "单位": "m?", + "数量": "41.184", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1874", + "单价.安装费.其中:人工费": "45.51", + "合价.安装费.其中:机械费": "207", + "合价.安装费.合计": "2264", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "挖孔基础人工挖方(或爆破) 松砂石 坑径1000mm以内 坑深10m以内", + "单价.安装费.合计": "95.1", + "单价.安装费.其中:机械费": "9.9", + "编制依据": "YX2-130", + "单位": "m?", + "数量": "7.855", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "628", + "单价.安装费.其中:人工费": "79.97", + "合价.安装费.其中:机械费": "78", + "合价.安装费.合计": "747", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "挖孔基础人工挖方(或爆破) 松砂石 坑径1500mm以内 坑深10m以内", + "单价.安装费.合计": "92.44", + "单价.安装费.其中:机械费": "9.74", + "编制依据": "YX2-135", + "单位": "m?", + "数量": "36.947", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2862", + "单价.安装费.其中:人工费": "77.47", + "合价.安装费.其中:机械费": "360", + "合价.安装费.合计": "3415", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "挖孔基础机械挖方 松砂石 孔深6m以上 孔径1.0m以内", + "单价.安装费.合计": "683.98", + "单价.安装费.其中:机械费": "499.25", + "编制依据": "YX2-207", + "单位": "m", + "数量": "10", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1822", + "单价.安装费.其中:人工费": "182.15", + "合价.安装费.其中:机械费": "4993", + "合价.安装费.合计": "6840", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "挖孔基础机械挖方 松砂石 孔深6m以上 孔径1.2m以内", + "单价.安装费.合计": "739.07", + "单价.安装费.其中:机械费": "552.38", + "编制依据": "YX2-208", + "单位": "m", + "数量": "22.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "4186", + "单价.安装费.其中:人工费": "183.6", + "合价.安装费.其中:机械费": "12594", + "合价.安装费.合计": "16851", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "挖孔基础机械挖方 松砂石 孔深6m以上 孔径1.4m以内", + "单价.安装费.合计": "826.1", + "单价.安装费.其中:机械费": "637.54", + "编制依据": "YX2-209", + "单位": "m", + "数量": "34", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6288", + "单价.安装费.其中:人工费": "184.94", + "合价.安装费.其中:机械费": "21676", + "合价.安装费.合计": "28087", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "泥水:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 泥水 坑深4.0m以内", + "单价.安装费.合计": "93.43", + "单价.安装费.其中:机械费": "24.8", + "编制依据": "YX2-50", + "单位": "m?", + "数量": "1306.66", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "64222", + "单价.安装费.其中:人工费": "49.15", + "合价.安装费.其中:机械费": "32405", + "合价.安装费.合计": "122081", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 泥水 坑深5.0m以内", + "单价.安装费.合计": "103.04", + "单价.安装费.其中:机械费": "26.08", + "编制依据": "YX2-51", + "单位": "m?", + "数量": "205", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "11785", + "单价.安装费.其中:人工费": "57.49", + "合价.安装费.其中:机械费": "5346", + "合价.安装费.合计": "21123", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "流砂:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 流砂 坑深2.0m以内", + "单价.安装费.合计": "101.26", + "单价.安装费.其中:机械费": "27.01", + "编制依据": "YX2-56", + "单位": "m?", + "数量": "0.108", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6", + "单价.安装费.其中:人工费": "54.77", + "合价.安装费.其中:机械费": "3", + "合价.安装费.合计": "11", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 流砂 坑深3.0m以内", + "单价.安装费.合计": "118.31", + "单价.安装费.其中:机械费": "31.45", + "编制依据": "YX2-57", + "单位": "m?", + "数量": "311.904", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "21016", + "单价.安装费.其中:人工费": "67.38", + "合价.安装费.其中:机械费": "9809", + "合价.安装费.合计": "36901", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 流砂 坑深4.0m以内", + "单价.安装费.合计": "143.3", + "单价.安装费.其中:机械费": "35.9", + "编制依据": "YX2-58", + "单位": "m?", + "数量": "1609.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "141494", + "单价.安装费.其中:人工费": "87.92", + "合价.安装费.其中:机械费": "57776", + "合价.安装费.合计": "230620", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 流砂 坑深5.0m以内", + "单价.安装费.合计": "168.95", + "单价.安装费.其中:机械费": "38.87", + "编制依据": "YX2-59", + "单位": "m?", + "数量": "691.576", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "76737", + "单价.安装费.其中:人工费": "110.96", + "合价.安装费.其中:机械费": "26882", + "合价.安装费.合计": "116842", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "普通土:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "挖孔基础人工挖方(或爆破) 普通土 坑径1000mm以内 坑深5m以内", + "单价.安装费.合计": "34.45", + "单价.安装费.其中:机械费": "2.45", + "编制依据": "YX2-89", + "单位": "m?", + "数量": "7.373", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "203", + "单价.安装费.其中:人工费": "27.56", + "合价.安装费.其中:机械费": "18", + "合价.安装费.合计": "254", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "坚土:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "挖孔基础人工挖方(或爆破) 坚土 坑径1000mm以内 坑深5m以内", + "单价.安装费.合计": "35.8", + "单价.安装费.其中:机械费": "3.27", + "编制依据": "YX2-109", + "单位": "m?", + "数量": "47.731", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1341", + "单价.安装费.其中:人工费": "28.09", + "合价.安装费.其中:机械费": "156", + "合价.安装费.合计": "1709", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "普通土、坚土:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "挖孔基础机械挖方 普通土、坚土 孔深6m以上 孔径1.0m以内", + "单价.安装费.合计": "365.36", + "单价.安装费.其中:机械费": "237.53", + "编制依据": "YX2-195", + "单位": "m", + "数量": "40", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "5010", + "单价.安装费.其中:人工费": "125.26", + "合价.安装费.其中:机械费": "9501", + "合价.安装费.合计": "14614", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "挖孔基础机械挖方 普通土、坚土 孔深6m以上 孔径1.2m以内", + "单价.安装费.合计": "397.41", + "单价.安装费.其中:机械费": "267.45", + "编制依据": "YX2-196", + "单位": "m", + "数量": "7.2", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "913", + "单价.安装费.其中:人工费": "126.86", + "合价.安装费.其中:机械费": "1926", + "合价.安装费.合计": "2861", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "挖孔基础机械挖方 普通土、坚土 孔深6m以上 孔径1.4m以内", + "单价.安装费.合计": "447.05", + "单价.安装费.其中:机械费": "314.94", + "编制依据": "YX2-197", + "单位": "m", + "数量": "14", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1799", + "单价.安装费.其中:人工费": "128.49", + "合价.安装费.其中:机械费": "4409", + "合价.安装费.合计": "6259", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--土石方工程(不含机械费)", + "单价.安装费.合计": "422300.75", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "2.95", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "12458", + "单价.安装费.其中:人工费": "422300.75", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "12458", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "434759", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "195964", + "合价.安装费.合计": "712864", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "825304.86", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "825305", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "712864.06", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "712864", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "712864.06", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "712864", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "434758.62", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "434759", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "82141.3", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "82141", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "195964.14", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "195964", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "112440.8", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "112441", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "434758.62", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "15521", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "434758.62", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "16608", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "712864.06", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "45267", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "434758.62", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9739", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "712864.06", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "25307", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "326451.81", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "326452", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "163425.76", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "163426", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "456496.55", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "108646", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "456496.55", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "54780", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "434758.62", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "155470", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "712864.06", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "7556", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "1151756.66", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "57588", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "77848.07", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "77848", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "57518.57", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "57519", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "6004.53", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6005", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "14324.98", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "14325", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "1287192.57", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "115847", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "1403039.9", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1403040", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "1403039.9", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1403040", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "1403039.9", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1403040", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "1.3", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "基础砌筑", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "644658", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "214791", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "39168", + "合价.安装费.合计": "1769497", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "1.3.2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "现浇基础", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "644658", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "214791", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "39168", + "合价.安装费.合计": "1769497", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "钢筋加工及制作:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "钢筋加工及制作", + "单价.安装费.合计": "531.26", + "单价.安装费.其中:机械费": "142.64", + "编制依据": "YX3-43", + "单位": "t", + "数量": "46.193", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "17544", + "单价.安装费.其中:人工费": "379.79", + "合价.安装费.其中:机械费": "6589", + "合价.安装费.合计": "24540", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "钢筋笼加工及制作", + "单价.安装费.合计": "622.56", + "单价.安装费.其中:机械费": "156.96", + "编制依据": "YX3-44", + "单位": "t", + "数量": "24.316", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "11085", + "单价.安装费.其中:人工费": "455.88", + "合价.安装费.其中:机械费": "3817", + "合价.安装费.合计": "15138", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "基础垫层:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "基础垫层 素混凝土垫层 每基混凝土量10m?以内", + "单价.安装费.合计": "146.79", + "单价.安装费.其中:机械费": "18.34", + "编制依据": "YX3-61", + "单位": "m?", + "数量": "52.78", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6518", + "单价.安装费.其中:人工费": "123.49", + "合价.安装费.其中:机械费": "968", + "合价.安装费.合计": "7748", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制 每个基础混凝土量5m?以内", + "单价.安装费.合计": "249.71", + "单价.安装费.其中:机械费": "14.74", + "编制依据": "YX3-63", + "单位": "m?", + "数量": "118.036", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "21055", + "单价.安装费.其中:人工费": "178.38", + "合价.安装费.其中:机械费": "1740", + "合价.安装费.合计": "29475", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制 每个基础混凝土量5m?以内", + "单价.安装费.合计": "299.65", + "单价.安装费.其中:机械费": "17.69", + "编制依据": "调 YX3-63*1.2", + "单位": "m?", + "数量": "31.884", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6825", + "单价.安装费.其中:人工费": "214.06", + "合价.安装费.其中:机械费": "564", + "合价.安装费.合计": "9554", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制 每个基础混凝土量5m?以内", + "单价.安装费.合计": "224.74", + "单价.安装费.其中:机械费": "13.27", + "编制依据": "调 YX3-63*0.9", + "单位": "m?", + "数量": "68.608", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "11014", + "单价.安装费.其中:人工费": "160.54", + "合价.安装费.其中:机械费": "910", + "合价.安装费.合计": "15419", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制 每个基础混凝土量10m?以内", + "单价.安装费.合计": "213.81", + "单价.安装费.其中:机械费": "13.49", + "编制依据": "YX3-64", + "单位": "m?", + "数量": "63.912", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "9471", + "单价.安装费.其中:人工费": "148.19", + "合价.安装费.其中:机械费": "862", + "合价.安装费.合计": "13665", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制 每个基础混凝土量10m?以内", + "单价.安装费.合计": "256.57", + "单价.安装费.其中:机械费": "16.19", + "编制依据": "调 YX3-64*1.2", + "单位": "m?", + "数量": "13.16", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2340", + "单价.安装费.其中:人工费": "177.83", + "合价.安装费.其中:机械费": "213", + "合价.安装费.合计": "3376", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制 每个基础混凝土量10m?以内", + "单价.安装费.合计": "192.43", + "单价.安装费.其中:机械费": "12.14", + "编制依据": "调 YX3-64*0.9", + "单位": "m?", + "数量": "20.488", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2733", + "单价.安装费.其中:人工费": "133.37", + "合价.安装费.其中:机械费": "249", + "合价.安装费.合计": "3942", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制 每个基础混凝土量20m?以内", + "单价.安装费.合计": "192.64", + "单价.安装费.其中:机械费": "13.1", + "编制依据": "YX3-65", + "单位": "m?", + "数量": "329.688", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "43723", + "单价.安装费.其中:人工费": "132.62", + "合价.安装费.其中:机械费": "4319", + "合价.安装费.合计": "63511", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制 每个基础混凝土量20m?以内", + "单价.安装费.合计": "231.17", + "单价.安装费.其中:机械费": "15.72", + "编制依据": "调 YX3-65*1.2", + "单位": "m?", + "数量": "20.812", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "3312", + "单价.安装费.其中:人工费": "159.14", + "合价.安装费.其中:机械费": "327", + "合价.安装费.合计": "4811", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制 每个基础混凝土量40m?以内", + "单价.安装费.合计": "181.86", + "单价.安装费.其中:机械费": "12.44", + "编制依据": "YX3-66", + "单位": "m?", + "数量": "101.592", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "13085", + "单价.安装费.其中:人工费": "128.8", + "合价.安装费.其中:机械费": "1264", + "合价.安装费.合计": "18476", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制 每个基础混凝土量40m?以内", + "单价.安装费.合计": "218.23", + "单价.安装费.其中:机械费": "14.93", + "编制依据": "调 YX3-66*1.2", + "单位": "m?", + "数量": "6", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "927", + "单价.安装费.其中:人工费": "154.56", + "合价.安装费.其中:机械费": "90", + "合价.安装费.合计": "1309", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "混凝土搅拌及浇制 保护帽", + "单价.安装费.合计": "849.83", + "单价.安装费.其中:机械费": "47.04", + "编制依据": "YX3-72", + "单位": "m?", + "数量": "21.84", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "15556", + "单价.安装费.其中:人工费": "712.27", + "合价.安装费.其中:机械费": "1027", + "合价.安装费.合计": "18560", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "商品混凝土浇制:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "钻孔灌注桩基础 商品混凝土浇制 孔深10m以内", + "单价.安装费.合计": "163.1", + "单价.安装费.其中:机械费": "45.59", + "编制依据": "YX3-175", + "单位": "m?", + "数量": "242.658", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "26544", + "单价.安装费.其中:人工费": "109.39", + "合价.安装费.其中:机械费": "11063", + "合价.安装费.合计": "39578", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "基础护壁:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "现浇护壁 有筋", + "单价.安装费.合计": "581.85", + "单价.安装费.其中:机械费": "129.45", + "编制依据": "YX3-193", + "单位": "m?", + "数量": "13.666", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "4423", + "单价.安装费.其中:人工费": "323.63", + "合价.安装费.其中:机械费": "1769", + "合价.安装费.合计": "7952", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--基础工程", + "单价.安装费.合计": "231926.11", + "单价.安装费.其中:机械费": "35770.16", + "编制依据": "", + "单位": "%", + "数量": "9.5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "18635", + "单价.安装费.其中:人工费": "196155.95", + "合价.安装费.其中:机械费": "3398", + "合价.安装费.合计": "22033", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材损耗费:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "33824", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "644658", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "644658", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "214791", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "39168", + "合价.安装费.合计": "299087", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "1016924.64", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1016925", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "943745.28", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "943745", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "299087.43", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "299087", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "214790.76", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "214791", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "45128.34", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "45128", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "39168.33", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "39168", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料费", + "单价.安装费.合计": "644657.85", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "644658", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "乙供装置性材料费", + "单价.安装费.合计": "644657.85", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "644658", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "73179.36", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "73179", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "214790.76", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "7668", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "214790.76", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "8205", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "299087.43", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "18992", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "214790.76", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4811", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "943745.28", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "33503", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "160719.35", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "160719", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "80739.85", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "80740", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "225530.3", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "53676", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "225530.3", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "27064", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "214790.76", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "76809", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "299087.43", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3170", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "1177643.99", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "58882", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "386865.18", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "386865", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "28416.82", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "28417", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "3298.88", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3299", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "2863.2", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2863", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料价差", + "单价.安装费.合计": "352286.28", + "单价.安装费.其中:机械费": "", + "编制依据": "4", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "352286", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "乙供装置性材料价差", + "单价.安装费.合计": "352286.28", + "单价.安装费.其中:机械费": "", + "编制依据": "4.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "352286", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "1623391.37", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "146105", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "772552.47", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "772552", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费", + "单价.安装费.合计": "996944.13", + "单价.安装费.其中:机械费": "", + "编制依据": "八", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "996944", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "1769496.6", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1769497", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "1769496.6", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1769497", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "杆塔工程", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "1700094", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "172982", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "46818", + "合价.安装费.合计": "3015659", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "2.1", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "杆塔工程材料工地运输", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "33830", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "25259", + "合价.安装费.合计": "114456", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "塔材:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人力运输 角钢塔材", + "单价.安装费.合计": "157.47", + "单价.安装费.其中:机械费": "10.95", + "编制依据": "YX1-20", + "单位": "t.km", + "数量": "150.008", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "21979", + "单价.安装费.其中:人工费": "146.52", + "合价.安装费.其中:机械费": "1643", + "合价.安装费.合计": "23622", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 角钢塔材 装卸", + "单价.安装费.合计": "49.91", + "单价.安装费.其中:机械费": "36.56", + "编制依据": "YX1-103", + "单位": "t", + "数量": "500.028", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6380", + "单价.安装费.其中:人工费": "12.76", + "合价.安装费.其中:机械费": "18281", + "合价.安装费.合计": "24956", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 角钢塔材 运输", + "单价.安装费.合计": "1.57", + "单价.安装费.其中:机械费": "1.02", + "编制依据": "YX1-104", + "单位": "t.km", + "数量": "5000.277", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2750", + "单价.安装费.其中:人工费": "0.55", + "合价.安装费.其中:机械费": "5100", + "合价.安装费.合计": "7850", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输(人力运输)金具、绝缘子、零星钢材、塔材、其他建筑安装材料(不含机械费)", + "单价.安装费.合计": "21979.17", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "11.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2594", + "单价.安装费.其中:人工费": "21979.17", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2594", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输拖拉机、汽车运输(不含装卸,沙漠地形没有正式公路时使用)", + "单价.安装费.合计": "7850.43", + "单价.安装费.其中:机械费": "5100.28", + "编制依据": "", + "单位": "%", + "数量": "4.6", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "127", + "单价.安装费.其中:人工费": "2750.15", + "合价.安装费.其中:机械费": "235", + "合价.安装费.合计": "361", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "33830", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "25259", + "合价.安装费.合计": "59383", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "68520", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "68520", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "59383.25", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "59383", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "59383.25", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "59383", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "33829.73", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "33830", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "295.02", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "295", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "25258.51", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "25259", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "9136.75", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9137", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "33829.73", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1208", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "33829.73", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1292", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "59383.25", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3771", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "33829.73", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "758", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "59383.25", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2108", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "25443.57", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "25444", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "12716.6", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "12717", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "35521.22", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "8454", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "35521.22", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4263", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "33829.73", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "12098", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "59383.25", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "629", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "93963.57", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4698", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "6343.64", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6344", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "4475.67", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4476", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "21.57", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "22", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "1846.4", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1846", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "105005.38", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9450", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "114455.87", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "114456", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "114455.87", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "114456", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "114455.87", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "114456", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "2.2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "杆塔组立", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "1700094", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "139152", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "21559", + "合价.安装费.合计": "2901203", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "2.2.2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "铁塔、钢管杆组立", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "1700094", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "139152", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "21559", + "合价.安装费.合计": "2901203", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "角钢塔组立:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "角钢塔组立 塔全高20m以内 每米塔重400kg以上", + "单价.安装费.合计": "544.63", + "单价.安装费.其中:机械费": "60.85", + "编制依据": "YX4-37", + "单位": "t", + "数量": "18.628", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "8875", + "单价.安装费.其中:人工费": "476.45", + "合价.安装费.其中:机械费": "1134", + "合价.安装费.合计": "10145", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "角钢塔组立 塔全高30m以内 每米塔重300kg以内", + "单价.安装费.合计": "622.67", + "单价.安装费.其中:机械费": "69.49", + "编制依据": "YX4-40", + "单位": "t", + "数量": "7.953", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "4331", + "单价.安装费.其中:人工费": "544.54", + "合价.安装费.其中:机械费": "553", + "合价.安装费.合计": "4952", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "角钢塔组立 塔全高50m以内 每米塔重300kg以内", + "单价.安装费.合计": "564.59", + "单价.安装费.其中:机械费": "76.33", + "编制依据": "YX4-45", + "单位": "t", + "数量": "174.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "84243", + "单价.安装费.其中:人工费": "482.05", + "合价.安装费.其中:机械费": "13339", + "合价.安装费.合计": "98668", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "角钢塔组立 塔全高50m以内 每米塔重400kg以内", + "单价.安装费.合计": "529.67", + "单价.安装费.其中:机械费": "71.6", + "编制依据": "YX4-46", + "单位": "t", + "数量": "34.999", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "15830", + "单价.安装费.其中:人工费": "452.29", + "合价.安装费.其中:机械费": "2506", + "合价.安装费.合计": "18538", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "角钢塔组立 塔全高50m以内 每米塔重800kg以内", + "单价.安装费.合计": "513.64", + "单价.安装费.其中:机械费": "69.5", + "编制依据": "YX4-47", + "单位": "t", + "数量": "12.43", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "5451", + "单价.安装费.其中:人工费": "438.57", + "合价.安装费.其中:机械费": "864", + "合价.安装费.合计": "6385", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--杆塔工程", + "单价.安装费.合计": "137125.63", + "单价.安装费.其中:机械费": "18395.41", + "编制依据": "", + "单位": "%", + "数量": "17.2", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "20422", + "单价.安装费.其中:人工费": "118730.22", + "合价.安装费.其中:机械费": "3164", + "合价.安装费.合计": "23586", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材损耗费:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "8458", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "1700094", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "1700094", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "139152", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "21559", + "合价.安装费.合计": "162273", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "1945245.55", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1945246", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "1862367.46", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1862367", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "162273.28", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "162273", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "139151.82", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "139152", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "1562.05", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1562", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "21559.42", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "21559", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料费", + "单价.安装费.合计": "1700094.18", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1700094", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "甲供装置性材料费", + "单价.安装费.合计": "1700094.18", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1700094", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "82878.08", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "82878", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "139151.82", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4968", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "139151.82", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "5316", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "162273.28", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "10304", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "139151.82", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3117", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "1666856.63", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "59173", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "103787.95", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "103788", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "52307.17", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "52307", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "146109.41", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "34774", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "146109.41", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "17533", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "139151.82", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "49761", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "162273.28", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1720", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "1853522.67", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "92676", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "717938.62", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "717939", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "18409.79", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "18410", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "114.19", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "114", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "1575.99", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1576", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料价差", + "单价.安装费.合计": "697838.66", + "单价.安装费.其中:机械费": "", + "编制依据": "4", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "697839", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "甲供装置性材料价差", + "单价.安装费.合计": "697838.66", + "单价.安装费.其中:机械费": "", + "编制依据": "4.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "697839", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "461715.42", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "41554", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "503269.81", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "503270", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费", + "单价.安装费.合计": "2397932.84", + "单价.安装费.其中:机械费": "", + "编制依据": "八", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2397933", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "2901202.65", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2901203", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "2901202.65", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2901203", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "3", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "接地工程", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "30051", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "25060", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "3477", + "合价.安装费.合计": "123625", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "3.1", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "接地工程材料工地运输", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "449", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "299", + "合价.安装费.合计": "1539", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "金具、绝缘子、零星钢材:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人力运输 金具、绝缘子、零星钢材", + "单价.安装费.合计": "131.28", + "单价.安装费.其中:机械费": "8.28", + "编制依据": "YX1-17", + "单位": "t.km", + "数量": "2.277", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "280", + "单价.安装费.其中:人工费": "123", + "合价.安装费.其中:机械费": "19", + "合价.安装费.合计": "299", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 装卸", + "单价.安装费.合计": "46.02", + "单价.安装费.其中:机械费": "26.19", + "编制依据": "YX1-97", + "单位": "t", + "数量": "7.591", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "96", + "单价.安装费.其中:人工费": "12.61", + "合价.安装费.其中:机械费": "199", + "合价.安装费.合计": "349", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 运输", + "单价.安装费.合计": "1.53", + "单价.安装费.其中:机械费": "1.02", + "编制依据": "YX1-98", + "单位": "t.km", + "数量": "75.907", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "39", + "单价.安装费.其中:人工费": "0.51", + "合价.安装费.其中:机械费": "77", + "合价.安装费.合计": "116", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输(人力运输)金具、绝缘子、零星钢材、塔材、其他建筑安装材料(不含机械费)", + "单价.安装费.合计": "280.07", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "11.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "33", + "单价.安装费.其中:人工费": "280.07", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "33", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输拖拉机、汽车运输(不含装卸,沙漠地形没有正式公路时使用)", + "单价.安装费.合计": "116.14", + "单价.安装费.其中:机械费": "77.43", + "编制依据": "", + "单位": "%", + "数量": "4.6", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2", + "单价.安装费.其中:人工费": "38.71", + "合价.安装费.其中:机械费": "4", + "合价.安装费.合计": "5", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "449", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "299", + "合价.安装费.合计": "803", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "925.54", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "926", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "802.79", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "803", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "802.79", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "803", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "449.34", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "449", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "54.81", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "55", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "298.65", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "299", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "122.75", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "123", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "449.34", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "16", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "449.34", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "17", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "802.79", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "51", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "449.34", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "10", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "802.79", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "28", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "338.1", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "338", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "168.91", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "169", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "471.8", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "112", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "471.8", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "57", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "449.34", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "161", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "802.79", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "1263.64", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "63", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "85.28", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "85", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "59.45", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "59", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "4.01", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "21.83", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "22", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "1412.1", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "127", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "1539.19", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1539", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "1539.19", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1539", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "1539.19", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1539", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "3.2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "接地土石方", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "16119", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "1476", + "合价.安装费.合计": "40096", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "接地槽挖方(或爆破)及回填:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "接地槽挖方(或爆破)及回填 普通土", + "单价.安装费.合计": "12.07", + "单价.安装费.其中:机械费": "1.04", + "编制依据": "YX2-213", + "单位": "m?", + "数量": "1419.52", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "15657", + "单价.安装费.其中:人工费": "11.03", + "合价.安装费.其中:机械费": "1476", + "合价.安装费.合计": "17134", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--土石方工程(不含机械费)", + "单价.安装费.合计": "15657.31", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "2.95", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "462", + "单价.安装费.其中:人工费": "15657.31", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "462", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "16119", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "1476", + "合价.安装费.合计": "17595", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "20889.73", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "20890", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "17595.5", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "17595", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "17595.5", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "17595", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "16119.2", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "16119", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "1476.3", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1476", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "3294.23", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3294", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "16119.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "575", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "16119.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "616", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "17595.5", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1117", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "16119.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "361", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "17595.5", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "625", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "12009.94", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "12010", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "6059.21", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6059", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "16925.16", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4028", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "16925.16", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2031", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "16119.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "5764", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "17595.5", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "187", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "32899.67", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1645", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "2240.49", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2240", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "2132.57", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2133", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "107.92", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "108", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "36785.14", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3311", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "40095.81", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "40096", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "40095.81", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "40096", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "40095.81", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "40096", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "3.3", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "接地安装", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "30051", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "8491", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "1702", + "合价.安装费.合计": "81990", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "接地体加工及制作:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "接地体加工及制作", + "单价.安装费.合计": "271.75", + "单价.安装费.其中:机械费": "99.7", + "编制依据": "YX3-203", + "单位": "t", + "数量": "7.161", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1191", + "单价.安装费.其中:人工费": "166.28", + "合价.安装费.其中:机械费": "714", + "合价.安装费.合计": "1946", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "一般接地体安装:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "一般接地体安装 垂直接地体安装 土", + "单价.安装费.合计": "11.6", + "单价.安装费.其中:机械费": "0.85", + "编制依据": "YX3-204", + "单位": "根", + "数量": "392", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "4214", + "单价.安装费.其中:人工费": "10.75", + "合价.安装费.其中:机械费": "333", + "合价.安装费.合计": "4547", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "一般接地体安装 水平接地体敷设", + "单价.安装费.合计": "0.43", + "单价.安装费.其中:机械费": "0.03", + "编制依据": "YX3-206", + "单位": "m", + "数量": "4436", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1641", + "单价.安装费.其中:人工费": "0.37", + "合价.安装费.其中:机械费": "133", + "合价.安装费.合计": "1907", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "接地测量及其他:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "接地电阻测量", + "单价.安装费.合计": "37.33", + "单价.安装费.其中:机械费": "12.9", + "编制依据": "YX3-214", + "单位": "基", + "数量": "29", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "708", + "单价.安装费.其中:人工费": "24.43", + "合价.安装费.其中:机械费": "374", + "合价.安装费.合计": "1083", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--基础工程", + "单价.安装费.合计": "9308.85", + "单价.安装费.其中:机械费": "1554.33", + "编制依据": "", + "单位": "%", + "数量": "9.5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "737", + "单价.安装费.其中:人工费": "7754.52", + "合价.安装费.其中:机械费": "148", + "合价.安装费.合计": "884", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材损耗费:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "1701", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "30051", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "30051", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "8491", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "1702", + "合价.安装费.合计": "10368", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "43329.94", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "43330", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "40419.02", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "40419", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "10367.59", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "10368", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "8491.2", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "8491", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "174.4", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "174", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "1701.99", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1702", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料费", + "单价.安装费.合计": "30051.42", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "30051", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "乙供装置性材料费", + "单价.安装费.合计": "30051.42", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "30051", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "2910.92", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2911", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "8491.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "303", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "8491.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "324", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "10367.59", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "658", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "8491.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "190", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "40419.02", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1435", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "6338.19", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6338", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "3191.84", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3192", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "8915.76", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2122", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "8915.76", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1070", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "8491.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3036", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "10367.59", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "110", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "49668.13", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2483", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "23068.52", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "23069", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "1123.39", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1123", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "12.75", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "13", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "124.42", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "124", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料价差", + "单价.安装费.合计": "21807.97", + "单价.安装费.其中:机械费": "", + "编制依据": "4", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "21808", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "乙供装置性材料价差", + "单价.安装费.合计": "21807.97", + "单价.安装费.其中:机械费": "", + "编制依据": "4.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "21808", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "75220.05", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6770", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "30130.47", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "30130", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费", + "单价.安装费.合计": "51859.39", + "单价.安装费.其中:机械费": "", + "编制依据": "八", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "51859", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "81989.85", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "81990", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "81989.85", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "81990", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "4", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "架线工程", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "1291298", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "350066", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "176800", + "合价.安装费.合计": "2944044", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "4.1", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "架线工程材料工地运输", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1878", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "6884", + "合价.安装费.合计": "13774", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "金具、绝缘子、零星钢材:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人力运输 金具、绝缘子、零星钢材", + "单价.安装费.合计": "131.28", + "单价.安装费.其中:机械费": "8.28", + "编制依据": "YX1-17", + "单位": "t.km", + "数量": "0.841", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "103", + "单价.安装费.其中:人工费": "123", + "合价.安装费.其中:机械费": "7", + "合价.安装费.合计": "110", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 装卸", + "单价.安装费.合计": "46.02", + "单价.安装费.其中:机械费": "26.19", + "编制依据": "YX1-97", + "单位": "t", + "数量": "2.803", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "35", + "单价.安装费.其中:人工费": "12.61", + "合价.安装费.其中:机械费": "73", + "合价.安装费.合计": "129", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 运输", + "单价.安装费.合计": "1.53", + "单价.安装费.其中:机械费": "1.02", + "编制依据": "YX1-98", + "单位": "t.km", + "数量": "28.028", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "14", + "单价.安装费.其中:人工费": "0.51", + "合价.安装费.其中:机械费": "29", + "合价.安装费.合计": "43", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "线材:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 线材 每件重2000kg以内 装卸", + "单价.安装费.合计": "78.19", + "单价.安装费.其中:机械费": "65.81", + "编制依据": "YX1-87", + "单位": "t", + "数量": "13.468", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "165", + "单价.安装费.其中:人工费": "12.22", + "合价.安装费.其中:机械费": "886", + "合价.安装费.合计": "1053", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 线材 每件重2000kg以内 运输", + "单价.安装费.合计": "1.66", + "单价.安装费.其中:机械费": "1.05", + "编制依据": "YX1-88", + "单位": "t.km", + "数量": "134.68", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "82", + "单价.安装费.其中:人工费": "0.61", + "合价.安装费.其中:机械费": "141", + "合价.安装费.合计": "224", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 线材 每件重4000kg以内 装卸", + "单价.安装费.合计": "83.85", + "单价.安装费.其中:机械费": "70.14", + "编制依据": "YX1-89", + "单位": "t", + "数量": "68.625", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "930", + "单价.安装费.其中:人工费": "13.55", + "合价.安装费.其中:机械费": "4813", + "合价.安装费.合计": "5754", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 线材 每件重4000kg以内 运输", + "单价.安装费.合计": "2.03", + "单价.安装费.其中:机械费": "1.29", + "编制依据": "YX1-90", + "单位": "t.km", + "数量": "686.246", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "508", + "单价.安装费.其中:人工费": "0.74", + "合价.安装费.其中:机械费": "885", + "合价.安装费.合计": "1393", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输(人力运输)金具、绝缘子、零星钢材、塔材、其他建筑安装材料(不含机械费)", + "单价.安装费.合计": "103.44", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "11.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "12", + "单价.安装费.其中:人工费": "103.44", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "12", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输拖拉机、汽车运输(不含装卸,沙漠地形没有正式公路时使用)", + "单价.安装费.合计": "1659.53", + "单价.安装费.其中:机械费": "1055.26", + "编制依据": "", + "单位": "%", + "数量": "4.6", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "28", + "单价.安装费.其中:人工费": "604.27", + "合价.安装费.其中:机械费": "49", + "合价.安装费.合计": "76", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1878", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "6884", + "合价.安装费.合计": "8795", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "9846.23", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9846", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "8794.75", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "8795", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "8794.75", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "8795", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "1877.51", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1878", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "33.37", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "33", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "6883.86", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6884", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "1051.48", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1051", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "1877.51", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "67", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "1877.51", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "72", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "8794.75", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "558", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "1877.51", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "42", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "8794.75", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "312", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "1470.38", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1470", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "705.76", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "706", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "1971.39", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "469", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "1971.39", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "237", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "1877.51", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "671", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "8794.75", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "93", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "11316.61", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "566", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "754.04", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "754", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "248.39", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "248", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "2.44", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "503.21", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "503", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "12636.48", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1137", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "13773.77", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "13774", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "13773.77", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "13774", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "13773.77", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "13774", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "4.2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "导地线架设", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "1291298", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "82813", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "125089", + "合价.安装费.合计": "2126679", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "牵、张场场地建设:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "牵、张场场地建设 场地平整 二分裂导线", + "单价.安装费.合计": "1034.41", + "单价.安装费.其中:机械费": "60.63", + "编制依据": "YX5-19", + "单位": "处", + "数量": "1", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "974", + "单价.安装费.其中:人工费": "973.78", + "合价.安装费.其中:机械费": "61", + "合价.安装费.合计": "1034", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "牵、张场场地建设 钢板铺设 二分裂导线", + "单价.安装费.合计": "3965.6", + "单价.安装费.其中:机械费": "876.14", + "编制依据": "YX5-24", + "单位": "处", + "数量": "1", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "544", + "单价.安装费.其中:人工费": "544.01", + "合价.安装费.其中:机械费": "876", + "合价.安装费.合计": "3966", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "导引绳展放:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "导引绳展放 飞行器展放", + "单价.安装费.合计": "2468.63", + "单价.安装费.其中:机械费": "324.4", + "编制依据": "YX5-29", + "单位": "km", + "数量": "8.23", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "12962", + "单价.安装费.其中:人工费": "1574.99", + "合价.安装费.其中:机械费": "2670", + "合价.安装费.合计": "20317", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "张力放、紧线:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "张力放、紧线 OPGW 100mm?以上", + "单价.安装费.合计": "3184.36", + "单价.安装费.其中:机械费": "2326.27", + "编制依据": "YX5-31", + "单位": "km", + "数量": "16.46", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "13558", + "单价.安装费.其中:人工费": "823.68", + "合价.安装费.其中:机械费": "38290", + "合价.安装费.合计": "52415", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "张力放、紧线 交流线路 导线 2×300mm?以内", + "单价.安装费.合计": "13663.34", + "单价.安装费.其中:机械费": "7912.09", + "编制依据": "YX5-44", + "单位": "km", + "数量": "8.23", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "44582", + "单价.安装费.其中:人工费": "5416.96", + "合价.安装费.其中:机械费": "65117", + "合价.安装费.合计": "112449", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "单盘测量:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "OPGW单盘测量 芯数 36以内", + "单价.安装费.合计": "1111.93", + "单价.安装费.其中:机械费": "682.73", + "编制依据": "YX5-207", + "单位": "盘", + "数量": "6", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1009", + "单价.安装费.其中:人工费": "168.18", + "合价.安装费.其中:机械费": "4096", + "合价.安装费.合计": "6672", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "接续:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "OPGW接续 芯数 36以内", + "单价.安装费.合计": "2768.06", + "单价.安装费.其中:机械费": "1584.84", + "编制依据": "YX5-216", + "单位": "头", + "数量": "4", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "3364", + "单价.安装费.其中:人工费": "840.92", + "合价.安装费.其中:机械费": "6339", + "合价.安装费.合计": "11072", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "全程测量:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "OPGW全程测量 芯数 36以内", + "单价.安装费.合计": "2292.58", + "单价.安装费.其中:机械费": "1156.22", + "编制依据": "YX5-225", + "单位": "段", + "数量": "2", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2242", + "单价.安装费.其中:人工费": "1121.22", + "合价.安装费.其中:机械费": "2312", + "合价.安装费.合计": "4585", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--架线工程张力机械放、紧线(不包括跨越架设、拦河线安装)", + "单价.安装费.合计": "179632.8", + "单价.安装费.其中:机械费": "107013.49", + "编制依据": "", + "单位": "%", + "数量": "4.75", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "3449", + "单价.安装费.其中:人工费": "72619.31", + "合价.安装费.其中:机械费": "5083", + "合价.安装费.合计": "8533", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--架线工程光缆接续(不包括测量)", + "单价.安装费.合计": "9703.04", + "单价.安装费.其中:机械费": "6339.36", + "编制依据": "", + "单位": "%", + "数量": "3.85", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "130", + "单价.安装费.其中:人工费": "3363.68", + "合价.安装费.其中:机械费": "244", + "合价.安装费.合计": "374", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材损耗费:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "8096", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "1291298", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "1291298", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "82813", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "125089", + "合价.安装费.合计": "221416", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "1583448.99", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1583449", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "1512713.3", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1512713", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "221415.79", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "221416", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "82813.43", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "82813", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "13513.49", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "13513", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "125088.87", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "125089", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料费", + "单价.安装费.合计": "1291297.51", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1291298", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "甲供装置性材料费", + "单价.安装费.合计": "1224184", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1224184", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "乙供装置性材料费", + "单价.安装费.合计": "67113.51", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "67114", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "70735.69", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "70736", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "82813.43", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2956", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "82813.43", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3163", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "221415.79", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "14060", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "82813.43", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1855", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "1371855.15", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "48701", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "63090.66", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "63091", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "31129.57", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "31130", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "86954.1", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "20695", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "86954.1", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "10434", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "82813.43", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "29614", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "221415.79", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2347", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "1505681.5", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "75284", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "358169.61", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "358170", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "10956.22", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "10956", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "987.84", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "988", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "9144", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9144", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料价差", + "单价.安装费.合计": "337081.56", + "单价.安装费.其中:机械费": "", + "编制依据": "4", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "337082", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "甲供装置性材料价差", + "单价.安装费.合计": "337081.56", + "单价.安装费.其中:机械费": "", + "编制依据": "4.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "337082", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "518727.78", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "46685", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "498299.77", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "498300", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费", + "单价.安装费.合计": "1628379.06", + "单价.安装费.其中:机械费": "", + "编制依据": "八", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1628379", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "2126678.83", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2126679", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "2126678.83", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2126679", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "4.3", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "导地线跨越架设", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "265375", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "44827", + "合价.安装费.合计": "803592", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "跨越架设:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "跨越一般公路 220kV", + "单价.安装费.合计": "5904.76", + "单价.安装费.其中:机械费": "588.56", + "编制依据": "调 YX5-101*1.2", + "单位": "处", + "数量": "2", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "8421", + "单价.安装费.其中:人工费": "4210.74", + "合价.安装费.其中:机械费": "1177", + "合价.安装费.合计": "11810", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "跨越一般公路 220kV", + "单价.安装费.合计": "4920.63", + "单价.安装费.其中:机械费": "490.47", + "编制依据": "YX5-101", + "单位": "处", + "数量": "13", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "45616", + "单价.安装费.其中:人工费": "3508.95", + "合价.安装费.其中:机械费": "6376", + "合价.安装费.合计": "63968", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "220kV 跨越电力线 10kV", + "单价.安装费.合计": "3009.37", + "单价.安装费.其中:机械费": "280.88", + "编制依据": "YX5-129", + "单位": "处", + "数量": "10", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "25374", + "单价.安装费.其中:人工费": "2537.37", + "合价.安装费.其中:机械费": "2809", + "合价.安装费.合计": "30094", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "跨越低压、弱电线 220kV", + "单价.安装费.合计": "2140.2", + "单价.安装费.其中:机械费": "263.83", + "编制依据": "YX5-171", + "单位": "处", + "数量": "25", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "40255", + "单价.安装费.其中:人工费": "1610.19", + "合价.安装费.其中:机械费": "6596", + "合价.安装费.合计": "53505", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "跨越低压、弱电线 220kV(土路)", + "单价.安装费.合计": "1712.16", + "单价.安装费.其中:机械费": "211.06", + "编制依据": "调 YX5-171*0.8", + "单位": "处", + "数量": "10", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "12882", + "单价.安装费.其中:人工费": "1288.15", + "合价.安装费.其中:机械费": "2111", + "合价.安装费.合计": "17122", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "张力架线 跨越河流 河宽50m以内", + "单价.安装费.合计": "1793.73", + "单价.安装费.其中:机械费": "621.53", + "编制依据": "YX5-181", + "单位": "处", + "数量": "14", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "16411", + "单价.安装费.其中:人工费": "1172.2", + "合价.安装费.其中:机械费": "8701", + "合价.安装费.合计": "25112", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "带电跨越电力线:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "带电跨越电力线 被跨线电压等级 10kV", + "单价.安装费.合计": "2650.09", + "单价.安装费.其中:机械费": "52.29", + "编制依据": "YX5-185", + "单位": "处", + "数量": "10", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "8531", + "单价.安装费.其中:人工费": "853.1", + "合价.安装费.其中:机械费": "523", + "合价.安装费.合计": "26501", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "无跨越架索道封网式:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "特殊跨越 无跨越架索道封网式 单回路", + "单价.安装费.合计": "55960.81", + "单价.安装费.其中:机械费": "5511.42", + "编制依据": "调 YX5-197*2.2", + "单位": "处", + "数量": "3", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "107886", + "单价.安装费.其中:人工费": "35961.84", + "合价.安装费.其中:机械费": "16534", + "合价.安装费.合计": "167882", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "265375", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "44827", + "合价.安装费.合计": "395994", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "460752.52", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "460753", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "395993.54", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "395994", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "395993.54", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "395994", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "265375.11", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "265375", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "85791.42", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "85791", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "44827", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "44827", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "64758.98", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "64759", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "265375.11", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9474", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "265375.11", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "10137", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "395993.54", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "25146", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "265375.11", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "5944", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "395993.54", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "14058", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "198850.18", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "198850", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "99754.51", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "99755", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "278643.87", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "66317", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "278643.87", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "33437", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "265375.11", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "94898", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "395993.54", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4198", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "659602.7", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "32980", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "44657.33", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "44657", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "35109.13", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "35109", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "6271.35", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6271", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "3276.85", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3277", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "737240.17", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "66352", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "803591.79", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "803592", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "803591.79", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "803592", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "803591.79", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "803592", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "5", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "附件安装工程", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "470757", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "155642", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "38978", + "合价.安装费.合计": "939432", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "5.1", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "附件安装工程材料工地运输", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2199", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "1462", + "合价.安装费.合计": "7534", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "金具、绝缘子、零星钢材:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人力运输 金具、绝缘子、零星钢材", + "单价.安装费.合计": "131.28", + "单价.安装费.其中:机械费": "8.28", + "编制依据": "YX1-17", + "单位": "t.km", + "数量": "11.146", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1371", + "单价.安装费.其中:人工费": "123", + "合价.安装费.其中:机械费": "92", + "合价.安装费.合计": "1463", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 装卸", + "单价.安装费.合计": "46.02", + "单价.安装费.其中:机械费": "26.19", + "编制依据": "YX1-97", + "单位": "t", + "数量": "37.153", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "468", + "单价.安装费.其中:人工费": "12.61", + "合价.安装费.其中:机械费": "973", + "合价.安装费.合计": "1710", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 运输", + "单价.安装费.合计": "1.53", + "单价.安装费.其中:机械费": "1.02", + "编制依据": "YX1-98", + "单位": "t.km", + "数量": "371.525", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "189", + "单价.安装费.其中:人工费": "0.51", + "合价.安装费.其中:机械费": "379", + "合价.安装费.合计": "568", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输(人力运输)金具、绝缘子、零星钢材、塔材、其他建筑安装材料(不含机械费)", + "单价.安装费.合计": "1370.96", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "11.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "162", + "单价.安装费.其中:人工费": "1370.96", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "162", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输拖拉机、汽车运输(不含装卸,沙漠地形没有正式公路时使用)", + "单价.安装费.合计": "568.43", + "单价.安装费.其中:机械费": "378.96", + "编制依据": "", + "单位": "%", + "数量": "4.6", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "9", + "单价.安装费.其中:人工费": "189.48", + "合价.安装费.其中:机械费": "17", + "合价.安装费.合计": "26", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2199", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "1462", + "合价.安装费.合计": "3929", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "4530.2", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4530", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "3929.38", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3929", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "3929.38", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3929", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "2199.42", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2199", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "268.24", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "268", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "1461.71", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1462", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "600.81", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "601", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "2199.42", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "79", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "2199.42", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "84", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "3929.38", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "250", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "2199.42", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "49", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "3929.38", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "139", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "1654.93", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1655", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "826.76", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "827", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "2309.4", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "550", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "2309.4", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "277", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "2199.42", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "787", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "3929.38", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "42", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "6185.12", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "309", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "417.44", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "417", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "290.98", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "291", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "19.61", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "20", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "106.85", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "107", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "6911.82", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "622", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "7533.89", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "7534", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "7533.89", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "7534", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "7533.89", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "7534", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "5.2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "绝缘子串及金具安装", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "470757", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "153443", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "37516", + "合价.安装费.合计": "931898", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "5.2.1", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "耐张绝缘子串及金具安装", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "252430", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "143060", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "36141", + "合价.安装费.合计": "664431", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "耐张转角杆塔导线挂线及绝缘子串安装:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "耐张转角杆塔导线挂线及绝缘子串安装 220kV 双分裂", + "单价.安装费.合计": "1882.77", + "单价.安装费.其中:机械费": "331.33", + "编制依据": "YX6-5", + "单位": "组", + "数量": "72", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "109709", + "单价.安装费.其中:人工费": "1523.73", + "合价.安装费.其中:机械费": "23856", + "合价.安装费.合计": "135559", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "防振锤、间隔棒安装:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "防振锤 双分裂", + "单价.安装费.合计": "6.58", + "单价.安装费.其中:机械费": "0.26", + "编制依据": "调 YX6-102*1.2", + "单位": "个", + "数量": "378", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2055", + "单价.安装费.其中:人工费": "5.44", + "合价.安装费.其中:机械费": "100", + "合价.安装费.合计": "2486", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "导线间隔棒 双分裂", + "单价.安装费.合计": "9.01", + "单价.安装费.其中:机械费": "0.47", + "编制依据": "YX6-106", + "单位": "个", + "数量": "111", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "819", + "单价.安装费.其中:人工费": "7.38", + "合价.安装费.其中:机械费": "52", + "合价.安装费.合计": "1000", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "跳线制作及安装:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "软跳线制作及安装 220kV 双分裂", + "单价.安装费.合计": "1182.38", + "单价.安装费.其中:机械费": "346.81", + "编制依据": "YX6-156", + "单位": "单相", + "数量": "32", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "26379", + "单价.安装费.其中:人工费": "824.33", + "合价.安装费.其中:机械费": "11098", + "合价.安装费.合计": "37836", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--附件工程", + "单价.安装费.合计": "174066.75", + "单价.安装费.其中:机械费": "35105.64", + "编制依据": "", + "单位": "%", + "数量": "2.95", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "4099", + "单价.安装费.其中:人工费": "138961.11", + "合价.安装费.其中:机械费": "1036", + "合价.安装费.合计": "5135", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材损耗费:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "4333", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "252430", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "252430", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "143060", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "36141", + "合价.安装费.合计": "182016", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "474173.42", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "474173", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "434446.49", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "434446", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "182016.41", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "182016", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "143060.46", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "143060", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "2814.69", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2815", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "36141.26", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "36141", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料费", + "单价.安装费.合计": "252430.08", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "252430", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "甲供装置性材料费", + "单价.安装费.合计": "252430.08", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "252430", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "39726.93", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "39727", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "143060.46", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "5107", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "143060.46", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "5465", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "182016.41", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "11558", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "143060.46", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3205", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "405413.23", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "14392", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "106864.22", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "106864", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "53776.43", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "53776", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "150213.48", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "35751", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "150213.48", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "18026", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "143060.46", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "51158", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "182016.41", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1929", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "552004.39", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "27600", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "21774.58", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "21775", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "18926.9", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "18927", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "205.75", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "206", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "2641.93", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2642", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "377982.36", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "34018", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "412000.77", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "412001", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费", + "单价.安装费.合计": "252430.08", + "单价.安装费.其中:机械费": "", + "编制依据": "八", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "252430", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "664430.85", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "664431", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "664430.85", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "664431", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "5.2.2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "悬垂绝缘子串及金具安装", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "218327", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "10382", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "1375", + "合价.安装费.合计": "267468", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装 220kV I型单联串(悬垂串)", + "单价.安装费.合计": "35.48", + "单价.安装费.其中:机械费": "10.32", + "编制依据": "YX6-26", + "单位": "串", + "数量": "24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "591", + "单价.安装费.其中:人工费": "24.64", + "合价.安装费.其中:机械费": "248", + "合价.安装费.合计": "852", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装 220kV I型单联串(跳线串)", + "单价.安装费.合计": "35.48", + "单价.安装费.其中:机械费": "10.32", + "编制依据": "YX6-26", + "单位": "串", + "数量": "16", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "394", + "单价.安装费.其中:人工费": "24.64", + "合价.安装费.其中:机械费": "165", + "合价.安装费.合计": "568", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装 220kV I型双联串(悬垂串)", + "单价.安装费.合计": "61.18", + "单价.安装费.其中:机械费": "15.13", + "编制依据": "YX6-27", + "单位": "串", + "数量": "33", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1487", + "单价.安装费.其中:人工费": "45.05", + "合价.安装费.其中:机械费": "499", + "合价.安装费.合计": "2019", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装 220kV I型双联串(跳线串)", + "单价.安装费.合计": "61.18", + "单价.安装费.其中:机械费": "15.13", + "编制依据": "YX6-27", + "单位": "串", + "数量": "16", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "721", + "单价.安装费.其中:人工费": "45.05", + "合价.安装费.其中:机械费": "242", + "合价.安装费.合计": "979", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "导线缠绕预绞丝线夹安装:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "导线缠绕预绞丝线夹安装 直线(直线换位、直线转角)杆塔 220kV 双分裂", + "单价.安装费.合计": "79.48", + "单价.安装费.其中:机械费": "2.04", + "编制依据": "调 YX6-77*1.2", + "单位": "单相", + "数量": "89", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6892", + "单价.安装费.其中:人工费": "77.44", + "合价.安装费.其中:机械费": "182", + "合价.安装费.合计": "7073", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--附件工程", + "单价.安装费.合计": "11420.58", + "单价.安装费.其中:机械费": "1335.73", + "编制依据": "", + "单位": "%", + "数量": "2.95", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "298", + "单价.安装费.其中:人工费": "10084.85", + "合价.安装费.其中:机械费": "39", + "合价.安装费.合计": "337", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材损耗费:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "3879", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "218327", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "218327", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "10382", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "1375", + "合价.安装费.合计": "11827", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "239216.89", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "239217", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "230154.25", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "230154", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "11827.29", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "11827", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "10382.36", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "10382", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "69.8", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "70", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "1375.13", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1375", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料费", + "单价.安装费.合计": "218326.96", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "218327", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "甲供装置性材料费", + "单价.安装费.合计": "210269.72", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "210270", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "乙供装置性材料费", + "单价.安装费.合计": "8057.25", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "8057", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "9062.64", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9063", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "10382.36", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "371", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "10382.36", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "397", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "11827.29", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "751", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "10382.36", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "233", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "205965.74", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "7312", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "7740.83", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "7741", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "3902.73", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3903", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "10901.48", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2595", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "10901.48", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1308", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "10382.36", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3713", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "11827.29", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "125", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "222769.21", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "11138", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "4933.83", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4934", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "1373.59", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1374", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "5.1", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "5", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "100.52", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料价差", + "单价.安装费.合计": "3454.62", + "单价.安装费.其中:机械费": "", + "编制依据": "4", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3455", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "甲供装置性材料价差", + "单价.安装费.合计": "3454.62", + "单价.安装费.其中:机械费": "", + "编制依据": "4.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3455", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "49305.67", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4438", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "45685.94", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "45686", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费", + "单价.安装费.合计": "221781.58", + "单价.安装费.其中:机械费": "", + "编制依据": "八", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "221782", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "267467.52", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "267468", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "267467.52", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "267468", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "6", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "辅助工程", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "365167", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "68640", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "34564", + "合价.安装费.合计": "709491", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "6.1", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "尖峰、施工基面土石方工程", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2833", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "124", + "合价.安装费.合计": "6864", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "尖峰及施工基面挖方(或爆破):", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "尖峰及施工基面挖方(或爆破) 普通土", + "单价.安装费.合计": "7.25", + "单价.安装费.其中:机械费": "0.28", + "编制依据": "YX2-226", + "单位": "m?", + "数量": "130.5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "910", + "单价.安装费.其中:人工费": "6.97", + "合价.安装费.其中:机械费": "37", + "合价.安装费.合计": "946", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "尖峰及施工基面挖方(或爆破) 坚土", + "单价.安装费.合计": "9.5", + "单价.安装费.其中:机械费": "0.5", + "编制依据": "YX2-227", + "单位": "m?", + "数量": "101.5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "914", + "单价.安装费.其中:人工费": "9", + "合价.安装费.其中:机械费": "51", + "合价.安装费.合计": "964", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "尖峰及施工基面挖方(或爆破) 松砂石", + "单价.安装费.合计": "16.64", + "单价.安装费.其中:机械费": "0.63", + "编制依据": "YX2-228", + "单位": "m?", + "数量": "58", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "929", + "单价.安装费.其中:人工费": "16.01", + "合价.安装费.其中:机械费": "37", + "合价.安装费.合计": "965", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--土石方工程(不含机械费)", + "单价.安装费.合计": "2751.67", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "2.95", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "81", + "单价.安装费.其中:人工费": "2751.67", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "81", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2833", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "124", + "合价.安装费.合计": "2957", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "3522.18", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3522", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "2956.67", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2957", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "2956.67", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2957", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "2832.84", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2833", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "123.83", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "124", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "565.51", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "566", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "2832.84", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "2832.84", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "108", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "2956.67", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "188", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "2832.84", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "63", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "2956.67", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "105", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "2109.23", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2109", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "1064.86", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1065", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "2974.48", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "708", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "2974.48", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "357", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "2832.84", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1013", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "2956.67", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "31", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "5631.41", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "282", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "383.84", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "384", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "374.78", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "375", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "9.05", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "6296.82", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "567", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "6863.53", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6864", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "6863.53", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6864", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "6863.53", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6864", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "6.2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "护坡、挡土墙及排洪沟", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "17310", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "24628", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "1824", + "合价.安装费.合计": "102177", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "6.2.1", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "护坡、挡土墙及排洪沟材料工地运输", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "11110", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "847", + "合价.安装费.合计": "27406", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "其他建筑安装材料:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人力运输 其他建筑安装材料", + "单价.安装费.合计": "113.84", + "单价.安装费.其中:机械费": "7.3", + "编制依据": "YX1-22", + "单位": "t.km", + "数量": "92.496", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "9855", + "单价.安装费.其中:人工费": "106.54", + "合价.安装费.其中:机械费": "675", + "合价.安装费.合计": "10530", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 其他建筑安装材料 装卸", + "单价.安装费.合计": "27.46", + "单价.安装费.其中:机械费": "17.87", + "编制依据": "YX1-107", + "单位": "t", + "数量": "6.686", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "64", + "单价.安装费.其中:人工费": "9.59", + "合价.安装费.其中:机械费": "119", + "合价.安装费.合计": "184", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 其他建筑安装材料 运输", + "单价.安装费.合计": "1.16", + "单价.安装费.其中:机械费": "0.75", + "编制依据": "YX1-108", + "单位": "t.km", + "数量": "66.865", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "27", + "单价.安装费.其中:人工费": "0.41", + "合价.安装费.其中:机械费": "50", + "合价.安装费.合计": "78", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输(人力运输)金具、绝缘子、零星钢材、塔材、其他建筑安装材料(不含机械费)", + "单价.安装费.合计": "9854.52", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "11.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1163", + "单价.安装费.其中:人工费": "9854.52", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1163", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输拖拉机、汽车运输(不含装卸,沙漠地形没有正式公路时使用)", + "单价.安装费.合计": "77.56", + "单价.安装费.其中:机械费": "50.15", + "编制依据": "", + "单位": "%", + "数量": "4.6", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1", + "单价.安装费.其中:人工费": "27.41", + "合价.安装费.其中:机械费": "2", + "合价.安装费.合计": "4", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "11110", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "847", + "合价.安装费.合计": "11957", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "14210.99", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "14211", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "11957.31", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "11957", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "11957.31", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "11957", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "11110.15", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "11110", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "847.16", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "847", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "2253.68", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2254", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "11110.15", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "397", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "11110.15", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "424", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "11957.31", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "759", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "11110.15", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "249", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "11957.31", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "424", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "8276.04", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "8276", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "4176.31", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4176", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "11665.66", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2776", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "11665.66", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1400", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "11110.15", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3973", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "11957.31", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "127", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "22487.03", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1124", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "1531.8", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1532", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "1469.87", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1470", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "61.93", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "62", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "25143.18", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2263", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "27406.07", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "27406", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "27406.07", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "27406", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "27406.07", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "27406", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "6.2.2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "护坡、挡土墙及排洪沟土石方工程", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2098", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "112", + "合价.安装费.合计": "5157", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "排水沟挖方(或爆破):", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "排水沟挖方(或爆破) 普通土", + "单价.安装费.合计": "6.55", + "单价.安装费.其中:机械费": "0.5", + "编制依据": "YX2-220", + "单位": "m?", + "数量": "4.524", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "27", + "单价.安装费.其中:人工费": "6.05", + "合价.安装费.其中:机械费": "2", + "合价.安装费.合计": "30", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "排水沟挖方(或爆破) 坚土", + "单价.安装费.合计": "9.18", + "单价.安装费.其中:机械费": "0.5", + "编制依据": "YX2-221", + "单位": "m?", + "数量": "27.144", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "236", + "单价.安装费.其中:人工费": "8.68", + "合价.安装费.其中:机械费": "14", + "合价.安装费.合计": "249", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "排水沟挖方(或爆破) 松砂石", + "单价.安装费.合计": "12.52", + "单价.安装费.其中:机械费": "0.76", + "编制依据": "YX2-222", + "单位": "m?", + "数量": "27.144", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "319", + "单价.安装费.其中:人工费": "11.76", + "合价.安装费.其中:机械费": "21", + "合价.安装费.合计": "340", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "排水沟挖方(或爆破) 泥水", + "单价.安装费.合计": "15.33", + "单价.安装费.其中:机械费": "1.04", + "编制依据": "YX2-223", + "单位": "m?", + "数量": "20.563", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "294", + "单价.安装费.其中:人工费": "14.29", + "合价.安装费.其中:机械费": "21", + "合价.安装费.合计": "315", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "排水沟挖方(或爆破) 岩石 人工开凿", + "单价.安装费.合计": "106.65", + "单价.安装费.其中:机械费": "4.59", + "编制依据": "YX2-225", + "单位": "m?", + "数量": "11.731", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1161", + "单价.安装费.其中:人工费": "99", + "合价.安装费.其中:机械费": "54", + "合价.安装费.合计": "1251", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--土石方工程(不含机械费)", + "单价.安装费.合计": "2037.41", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "2.95", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "60", + "单价.安装费.其中:人工费": "2037.41", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "60", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2098", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "112", + "合价.安装费.合计": "2245", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "2669.36", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2669", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "2245.1", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2245", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "2245.1", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2245", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "2097.51", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2098", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "35.9", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "36", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "111.69", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "112", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "424.26", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "424", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "2097.51", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "75", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "2097.51", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "80", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "2245.1", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "143", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "2097.51", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "47", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "2245.1", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "80", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "1562.32", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1562", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "788.45", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "788", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "2202.39", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "524", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "2202.39", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "264", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "2097.51", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "750", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "2245.1", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "24", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "4231.68", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "212", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "288.29", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "288", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "277.5", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "278", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "2.62", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "8.16", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "8", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "4731.55", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "426", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "5157.39", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "5157", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "5157.39", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "5157", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "5157.39", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "5157", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "6.2.3", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "护坡、挡土墙及排洪沟砌筑", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "17310", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "11421", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "865", + "合价.安装费.合计": "69613", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "护坡、挡土墙及排洪沟砌筑:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "排洪沟砌筑 浆砌", + "单价.安装费.合计": "74.45", + "单价.安装费.其中:机械费": "5.03", + "编制依据": "YX7-18", + "单位": "m?", + "数量": "57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "3957", + "单价.安装费.其中:人工费": "69.42", + "合价.安装费.其中:机械费": "287", + "合价.安装费.合计": "4244", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "护坡、挡土墙砌筑 斜坡形 浆砌", + "单价.安装费.合计": "69.76", + "单价.安装费.其中:机械费": "5.03", + "编制依据": "YX7-20", + "单位": "m?", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6473", + "单价.安装费.其中:人工费": "64.73", + "合价.安装费.其中:机械费": "503", + "合价.安装费.合计": "6976", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--辅助工程(基础辅助)打桩,护坡、挡土墙及排洪沟砌筑,喷射混凝土护坡", + "单价.安装费.合计": "11219.65", + "单价.安装费.其中:机械费": "789.71", + "编制依据": "", + "单位": "%", + "数量": "9.5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "991", + "单价.安装费.其中:人工费": "10429.94", + "合价.安装费.其中:机械费": "75", + "合价.安装费.合计": "1066", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材损耗费:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "712", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "17310", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "17310", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "11421", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "865", + "合价.安装费.合计": "12286", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "32525.84", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "32526", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "29595.26", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "29595", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "12285.52", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "12286", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "11420.78", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "11421", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "864.73", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "865", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料费", + "单价.安装费.合计": "17309.74", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "17310", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "乙供装置性材料费", + "单价.安装费.合计": "17309.74", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "17310", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "2930.58", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2931", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "11420.78", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "408", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "11420.78", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "436", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "12285.52", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "780", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "11420.78", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "256", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "29595.26", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1051", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "8507.37", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "8507", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "4293.07", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4293", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "11991.82", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2854", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "11991.82", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1439", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "11420.78", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4084", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "12285.52", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "130", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "41033.21", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2052", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "20780.71", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "20781", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "1510.97", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1511", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "63.21", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "63", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料价差", + "单价.安装费.合计": "19206.53", + "单价.安装费.其中:机械费": "", + "编制依据": "4", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "19207", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "乙供装置性材料价差", + "单价.安装费.合计": "19206.53", + "单价.安装费.其中:机械费": "", + "编制依据": "4.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "19207", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "63865.58", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "5748", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "33097.22", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "33097", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费", + "单价.安装费.合计": "36516.27", + "单价.安装费.其中:机械费": "", + "编制依据": "八", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "36516", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "69613.49", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "69613", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "69613.49", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "69613", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "6.5", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "杆塔上装的各类辅助生产装置", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "48373", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6508", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "9911", + "合价.安装费.合计": "81643", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": ":", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "驱鸟器安装", + "单价.安装费.合计": "48.01", + "单价.安装费.其中:机械费": "33.26", + "编制依据": "YX7-29", + "单位": "个", + "数量": "120", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1715", + "单价.安装费.其中:人工费": "14.29", + "合价.安装费.其中:机械费": "3991", + "合价.安装费.合计": "5761", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "氧化锌避雷器安装 220kV", + "单价.安装费.合计": "1027.84", + "单价.安装费.其中:机械费": "417.62", + "编制依据": "YX7-34", + "单位": "单相", + "数量": "3", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1685", + "单价.安装费.其中:人工费": "561.8", + "合价.安装费.其中:机械费": "1253", + "合价.安装费.合计": "3084", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "金具、绝缘子、零星钢材:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人力运输 金具、绝缘子、零星钢材", + "单价.安装费.合计": "131.28", + "单价.安装费.其中:机械费": "8.28", + "编制依据": "YX1-17", + "单位": "t.km", + "数量": "0.135", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "17", + "单价.安装费.其中:人工费": "123", + "合价.安装费.其中:机械费": "1", + "合价.安装费.合计": "18", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 装卸", + "单价.安装费.合计": "46.02", + "单价.安装费.其中:机械费": "26.19", + "编制依据": "YX1-97", + "单位": "t", + "数量": "0.449", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6", + "单价.安装费.其中:人工费": "12.61", + "合价.安装费.其中:机械费": "12", + "合价.安装费.合计": "21", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 运输", + "单价.安装费.合计": "1.53", + "单价.安装费.其中:机械费": "1.02", + "编制依据": "YX1-98", + "单位": "t.km", + "数量": "4.494", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2", + "单价.安装费.其中:人工费": "0.51", + "合价.安装费.其中:机械费": "5", + "合价.安装费.合计": "7", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "杆塔标志牌安装:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "杆塔标志牌安装", + "单价.安装费.合计": "50.91", + "单价.安装费.其中:机械费": "30.11", + "编制依据": "YX7-27", + "单位": "块", + "数量": "145", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2896", + "单价.安装费.其中:人工费": "19.97", + "合价.安装费.其中:机械费": "4366", + "合价.安装费.合计": "7382", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输(人力运输)金具、绝缘子、零星钢材、塔材、其他建筑安装材料(不含机械费)", + "单价.安装费.合计": "16.61", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "11.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "2", + "单价.安装费.其中:人工费": "16.61", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输拖拉机、汽车运输(不含装卸,沙漠地形没有正式公路时使用)", + "单价.安装费.合计": "6.88", + "单价.安装费.其中:机械费": "4.58", + "编制依据": "", + "单位": "%", + "数量": "4.6", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "0", + "单价.安装费.其中:人工费": "2.29", + "合价.安装费.其中:机械费": "0", + "合价.安装费.合计": "0", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--辅助工程(杆塔辅助)杆塔标志牌,防鸟装置,防坠落装置,避雷器安装,监测装置安装调测", + "单价.安装费.合计": "15905.86", + "单价.安装费.其中:机械费": "9610.01", + "编制依据": "", + "单位": "%", + "数量": "2.95", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "186", + "单价.安装费.其中:人工费": "6295.85", + "合价.安装费.其中:机械费": "283", + "合价.安装费.合计": "469", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "48373", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "48373", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6508", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "9911", + "合价.安装费.合计": "16743", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "68920.62", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "68921", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "65116.63", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "65117", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "16743.43", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "16743", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "6508.2", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6508", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "324.05", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "324", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "9911.18", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9911", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料费", + "单价.安装费.合计": "48373.2", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "48373", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "甲供装置性材料费", + "单价.安装费.合计": "48373.2", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "48373", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "3803.99", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3804", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "6508.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "232", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "6508.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "249", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "16743.43", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1063", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "6508.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "146", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "59550.43", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2114", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "4951.25", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4951", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "2446.43", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2446", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "6833.61", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1626", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "6833.61", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "820", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "6508.2", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2327", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "16743.43", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "177", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "68305.66", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3415", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "1609.23", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1609", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "861.04", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "861", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "23.69", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "24", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "724.51", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "725", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "30523.18", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2747", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "33270.26", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "33270", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费", + "单价.安装费.合计": "48373.2", + "单价.安装费.其中:机械费": "", + "编制依据": "八", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "48373", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "81643.46", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "81643", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "81643.46", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "81643", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "6.6", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "输、送电线路试运", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "8416", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "6382", + "合价.安装费.合计": "34298", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": ":", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "输电线路试运 220kV", + "单价.安装费.合计": "19088.7", + "单价.安装费.其中:机械费": "6381.81", + "编制依据": "YX7-128", + "单位": "回", + "数量": "1", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "8416", + "单价.安装费.其中:人工费": "8415.88", + "合价.安装费.其中:机械费": "6382", + "合价.安装费.合计": "19089", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "8416", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "6382", + "合价.安装费.合计": "19089", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "21788.93", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "21789", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "19088.7", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "19089", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "19088.7", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "19089", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "8415.88", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "8416", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "4291.01", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4291", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "6381.81", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6382", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "2700.23", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2700", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "8415.88", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "300", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "8415.88", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "321", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "19088.7", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1212", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "8415.88", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "189", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "19088.7", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "678", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "6375.39", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6375", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "3163.53", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3164", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "8836.67", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2103", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "8836.67", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1060", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "8415.88", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3010", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "19088.7", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "202", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "28164.32", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1408", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "1893.6", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1894", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "1113.42", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1113", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "313.67", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "314", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "466.51", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "467", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "31466.14", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2832", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "34298.09", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "34298", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "34298.09", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "34298", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "34298.09", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "34298", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "6.7", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工道路", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "299484", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "26255", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "16323", + "合价.安装费.合计": "484509", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": ":", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工道路修筑 路床整形", + "单价.安装费.合计": "6.26", + "单价.安装费.其中:机械费": "0.63", + "编制依据": "YX7-1", + "单位": "m?", + "数量": "895", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "5039", + "单价.安装费.其中:人工费": "5.63", + "合价.安装费.其中:机械费": "564", + "合价.安装费.合计": "5603", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "回填及其他:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械填土碾压", + "单价.安装费.合计": "5.32", + "单价.安装费.其中:机械费": "5.01", + "编制依据": "YT1-115", + "单位": "m?", + "数量": "392", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "98", + "单价.安装费.其中:人工费": "0.25", + "合价.安装费.其中:机械费": "1964", + "合价.安装费.合计": "2085", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "预应力钢筋混凝土管道安装:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "预应力钢筋混凝土管道安装 Φ1600", + "单价.安装费.合计": "3256.94", + "单价.安装费.其中:机械费": "46.93", + "编制依据": "换 YT13-104", + "单位": "m", + "数量": "10", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "862", + "单价.安装费.其中:人工费": "86.18", + "合价.安装费.其中:机械费": "469", + "合价.安装费.合计": "32569", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "排水沟挖方(或爆破):", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "排水沟挖方(或爆破) 坚土", + "单价.安装费.合计": "9.18", + "单价.安装费.其中:机械费": "0.5", + "编制依据": "YX2-221", + "单位": "m?", + "数量": "25", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "217", + "单价.安装费.其中:人工费": "8.68", + "合价.安装费.其中:机械费": "13", + "合价.安装费.合计": "230", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "金具、绝缘子、零星钢材:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人力运输 金具、绝缘子、零星钢材", + "单价.安装费.合计": "131.28", + "单价.安装费.其中:机械费": "8.28", + "编制依据": "YX1-17", + "单位": "t.km", + "数量": "101.52", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "12487", + "单价.安装费.其中:人工费": "123", + "合价.安装费.其中:机械费": "841", + "合价.安装费.合计": "13328", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 装卸", + "单价.安装费.合计": "46.02", + "单价.安装费.其中:机械费": "26.19", + "编制依据": "YX1-97", + "单位": "t", + "数量": "338.4", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "4267", + "单价.安装费.其中:人工费": "12.61", + "合价.安装费.其中:机械费": "8863", + "合价.安装费.合计": "15573", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "汽车运输 金具、绝缘子、零星钢材 运输", + "单价.安装费.合计": "1.53", + "单价.安装费.其中:机械费": "1.02", + "编制依据": "YX1-98", + "单位": "t.km", + "数量": "3384", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1726", + "单价.安装费.其中:人工费": "0.51", + "合价.安装费.其中:机械费": "3452", + "合价.安装费.合计": "5178", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输(人力运输)金具、绝缘子、零星钢材、塔材、其他建筑安装材料(不含机械费)", + "单价.安装费.合计": "12486.96", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "11.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1473", + "单价.安装费.其中:人工费": "12486.96", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1473", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--工地运输拖拉机、汽车运输(不含装卸,沙漠地形没有正式公路时使用)", + "单价.安装费.合计": "5177.52", + "单价.安装费.其中:机械费": "3451.68", + "编制依据": "", + "单位": "%", + "数量": "4.6", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "79", + "单价.安装费.其中:人工费": "1725.84", + "合价.安装费.其中:机械费": "159", + "合价.安装费.合计": "238", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "地形系数增加--特征段1--土石方工程(不含机械费)", + "单价.安装费.合计": "217", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "2.95", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6", + "单价.安装费.其中:人工费": "217", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "299484", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "299484", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "26255", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "16323", + "合价.安装费.合计": "76283", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接费", + "单价.安装费.合计": "396479.38", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "396479", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "375767.3", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "375767", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "76283.3", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "76283", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工费", + "单价.安装费.合计": "26254.93", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "26255", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料费", + "单价.安装费.合计": "33705.07", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "33705", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "16323.31", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "16323", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "装置性材料费", + "单价.安装费.合计": "299484", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "299484", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "乙供装置性材料费", + "单价.安装费.合计": "299484", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2.2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "299484", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "措施费", + "单价.安装费.合计": "20712.08", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "20712", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "冬雨季施工增加费", + "单价.安装费.合计": "26254.93", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.57", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "937", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工工具用具使用费", + "单价.安装费.合计": "26254.93", + "单价.安装费.其中:机械费": "", + "编制依据": "2.3", + "单位": "", + "数量": "3.82", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1003", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "临时设施费", + "单价.安装费.合计": "76283.3", + "单价.安装费.其中:机械费": "", + "编制依据": "2.5", + "单位": "", + "数量": "6.35", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4844", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工机构迁移费", + "单价.安装费.合计": "26254.93", + "单价.安装费.其中:机械费": "", + "编制依据": "2.6", + "单位": "", + "数量": "2.24", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "588", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "375767.3", + "单价.安装费.其中:机械费": "", + "编制依据": "2.7", + "单位": "", + "数量": "3.55", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "13340", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "间接费", + "单价.安装费.合计": "20066.59", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "20067", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "规费", + "单价.安装费.合计": "9869.23", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9869", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "社会保险费", + "单价.安装费.合计": "27567.67", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "23.8", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "6561", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "住房公积金", + "单价.安装费.合计": "27567.67", + "单价.安装费.其中:机械费": "", + "编制依据": "1.2", + "单位": "", + "数量": "12", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3308", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "企业管理费", + "单价.安装费.合计": "26254.93", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "35.76", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9389", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "施工企业配合调试费", + "单价.安装费.合计": "76283.3", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "1.06", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "809", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "利润", + "单价.安装费.合计": "416545.97", + "单价.安装费.其中:机械费": "", + "编制依据": "三", + "单位": "", + "数量": "5", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "20827", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "编制基准期价差", + "单价.安装费.合计": "7130.6", + "单价.安装费.其中:机械费": "", + "编制依据": "四", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "7131", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "人工价差", + "单价.安装费.合计": "3473.53", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "3474", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "材料价差", + "单价.安装费.合计": "2463.84", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2464", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "机械价差", + "单价.安装费.合计": "1193.23", + "单价.安装费.其中:机械费": "", + "编制依据": "3", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "1193", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "税金", + "单价.安装费.合计": "444503.87", + "单价.安装费.其中:机械费": "", + "编制依据": "五", + "单位": "", + "数量": "9", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "40005", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "安装费", + "单价.安装费.合计": "185025.22", + "单价.安装费.其中:机械费": "", + "编制依据": "七", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "185025", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "主材费", + "单价.安装费.合计": "299484", + "单价.安装费.其中:机械费": "", + "编制依据": "八", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "299484", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "总计", + "单价.安装费.合计": "484509.22", + "单价.安装费.其中:机械费": "", + "编制依据": "九", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "484509", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价.装置性材料/设备": "", + "项目名称及规格": "合计", + "单价.安装费.合计": "484509.22", + "单价.安装费.其中:机械费": "", + "编制依据": "十", + "单位": "", + "数量": "100", + "合价.装置性材料/设备": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "484509", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "编制依据", + "columnLable": "编制依据", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "项目名称及规格", + "columnLable": "项目名称及规格", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "数量", + "columnLable": "数量", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.装置性材料/设备", + "columnLable": "单价.装置性材料/设备", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.安装费.合计", + "columnLable": "单价.安装费.合计", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.安装费.其中:人工费", + "columnLable": "单价.安装费.其中:人工费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.安装费.其中:机械费", + "columnLable": "单价.安装费.其中:机械费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.装置性材料/设备", + "columnLable": "合价.装置性材料/设备", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.安装费.合计", + "columnLable": "合价.安装费.合计", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.安装费.其中:人工费", + "columnLable": "合价.安装费.其中:人工费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.安装费.其中:机械费", + "columnLable": "合价.安装费.其中:机械费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "表三", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "编制依据", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编制依据", + "show": "1", + "width": "70" + }, + { + "fileName": "项目名称及规格", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "项目名称及规格", + "show": "1", + "width": "175" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.设备", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设备", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.装置性材料/设备", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料/设备", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.装置性材料损耗", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料损耗", + "show": "0", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:人工费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:人工费", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:材料费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:材料费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:甲供材料", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:甲供材料", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:机械费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:机械费", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "安装费", + "show": "1" + } + ], + "isZeroShow": "0", + "name": "单价", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.设备单价合计", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设备单价合计", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.设备运杂费合计", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设备运杂费合计", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.乙供设备税金合计", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "乙供设备税金合计", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.设备", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设备", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.装置性材料/设备", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料/设备", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.装置性材料损耗", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料损耗", + "show": "0", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:人工费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:人工费", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:材料费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:材料费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:甲供材料", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:甲供材料", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:机械费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:机械费", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "安装费", + "show": "1" + } + ], + "isZeroShow": "0", + "name": "合价", + "show": "1" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "0", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.单重", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.总重", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "重量", + "show": "0" + }, + { + "fileName": "备注", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "0", + "width": "70" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "表三", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "表N.12 架空输电线路单位工程[表头设置]表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路单位工程预算表(拆除表三)": { + "tableName": "架空输电线路单位工程预算表(拆除表三)", + "rows": [], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "编制依据", + "columnLable": "编制依据", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "项目名称及规格", + "columnLable": "项目名称及规格", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "数量", + "columnLable": "数量", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.装置性材料", + "columnLable": "单价.装置性材料", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.安装费.合计", + "columnLable": "单价.安装费.合计", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.安装费.其中:人工费", + "columnLable": "单价.安装费.其中:人工费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.安装费.其中:机械费", + "columnLable": "单价.安装费.其中:机械费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.装置性材料", + "columnLable": "合价.装置性材料", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.安装费.合计", + "columnLable": "合价.安装费.合计", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.安装费.其中:人工费", + "columnLable": "合价.安装费.其中:人工费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.安装费.其中:机械费", + "columnLable": "合价.安装费.其中:机械费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "表三", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "编制依据", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编制依据", + "show": "1", + "width": "70" + }, + { + "fileName": "项目名称及规格", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "项目名称及规格", + "show": "1", + "width": "175" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.装置性材料", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.装置性材料损耗", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料损耗", + "show": "0", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:人工费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:人工费", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:材料费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:材料费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:甲供材料", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:甲供材料", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:机械费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:机械费", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "安装费", + "show": "1" + } + ], + "isZeroShow": "0", + "name": "单价", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.装置性材料", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.装置性材料损耗", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料损耗", + "show": "0", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:人工费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:人工费", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:材料费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:材料费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:甲供材料", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:甲供材料", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:机械费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:机械费", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "安装费", + "show": "1" + } + ], + "isZeroShow": "0", + "name": "合价", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.单重", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.总重", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "重量", + "show": "0" + }, + { + "fileName": "备注", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "0", + "width": "77" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "77" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "表三", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "架空线路单位工程[表头设置]表(拆除工程)" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路单位工程预算表(余物清理表三)": { + "tableName": "架空输电线路单位工程预算表(余物清理表三)", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "安装工程", + "单价.安装费.合计": "", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4196", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "2.3", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "输电线路及通信线路", + "单价.安装费.合计": "", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4196", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "2.3.2", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "(2)拆除后不能利用", + "单价.安装费.合计": "", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "35", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4196", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "角钢塔组立 塔全高50m以内 每米塔重400kg以内", + "单价.安装费.合计": "529.67", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "71.6", + "编制依据": "YX4-46", + "单位": "t", + "数量": "15", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "6784", + "单价.安装费.其中:人工费": "452.29", + "合价.安装费.其中:机械费": "1074", + "合价.安装费.合计": "7945", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "人力运输 角钢塔材(拆除铁塔运输)", + "单价.安装费.合计": "157.47", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "10.95", + "编制依据": "YX1-20", + "单位": "t.km", + "数量": "6", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "879", + "单价.安装费.其中:人工费": "146.52", + "合价.安装费.其中:机械费": "66", + "合价.安装费.合计": "945", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "汽车运输 角钢塔材 运输(拆除铁塔运输)", + "单价.安装费.合计": "1.57", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "1.02", + "编制依据": "YX1-104", + "单位": "t.km", + "数量": "750", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "413", + "单价.安装费.其中:人工费": "0.55", + "合价.安装费.其中:机械费": "765", + "合价.安装费.合计": "1178", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "地形系数增加--特征段1--工地运输(人力运输)金具、绝缘子、零星钢材、塔材、其他建筑安装材料(不含机械费)", + "单价.安装费.合计": "879.12", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "11.8", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "104", + "单价.安装费.其中:人工费": "879.12", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "104", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "地形系数增加--特征段1--工地运输拖拉机、汽车运输(不含装卸,沙漠地形没有正式公路时使用)", + "单价.安装费.合计": "1177.5", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "765", + "编制依据": "", + "单位": "%", + "数量": "4.6", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "19", + "单价.安装费.其中:人工费": "412.5", + "合价.安装费.其中:机械费": "35", + "合价.安装费.合计": "54", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "地形系数增加--特征段1--杆塔工程", + "单价.安装费.合计": "7858.35", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "1074", + "编制依据": "", + "单位": "%", + "数量": "17.2", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "1167", + "单价.安装费.其中:人工费": "6784.35", + "合价.安装费.其中:机械费": "185", + "合价.安装费.合计": "1352", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "小计:", + "单价.安装费.合计": "", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "9366", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "2125", + "合价.安装费.合计": "11577", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "", + "单价.安装费.合计": "", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "", + "数量": "", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "直接费", + "单价.安装费.合计": "11987.89", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "一", + "单位": "", + "数量": "100", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "11988", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "直接工程费", + "单价.安装费.合计": "11576.91", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "1", + "单位": "", + "数量": "100", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "11577", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "定额直接费", + "单价.安装费.合计": "11576.91", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1", + "单位": "", + "数量": "100", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "11577", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "人工费", + "单价.安装费.合计": "9365.59", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.1", + "单位": "", + "数量": "100", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "9366", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "材料费", + "单价.安装费.合计": "86.7", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.2", + "单位": "", + "数量": "100", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "87", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "施工机械使用费", + "单价.安装费.合计": "2124.62", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "1.1.3", + "单位": "", + "数量": "100", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "2125", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "措施费", + "单价.安装费.合计": "410.98", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "2", + "单位": "", + "数量": "100", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "411", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "安全文明施工费", + "单价.安装费.合计": "11576.91", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "2.1", + "单位": "", + "数量": "3.55", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "411", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "合计", + "单价.安装费.合计": "11987.89", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "二", + "单位": "", + "数量": "100", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "11988", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编制依据TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "合价.装置性材料": "", + "序号": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "项目名称及规格": "余物清理费:", + "单价.安装费.合计": "11987.89", + "单价.装置性材料": "", + "单价.安装费.其中:机械费": "", + "编制依据": "", + "单位": "%", + "数量": "35", + "项目名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价.安装费.其中:人工费": "", + "单价.安装费.其中:人工费": "", + "合价.安装费.其中:机械费": "", + "合价.安装费.合计": "4196", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "编制依据", + "columnLable": "编制依据", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "项目名称及规格", + "columnLable": "项目名称及规格", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "数量", + "columnLable": "数量", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.装置性材料", + "columnLable": "单价.装置性材料", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.安装费.合计", + "columnLable": "单价.安装费.合计", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.安装费.其中:人工费", + "columnLable": "单价.安装费.其中:人工费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价.安装费.其中:机械费", + "columnLable": "单价.安装费.其中:机械费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.装置性材料", + "columnLable": "合价.装置性材料", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.安装费.合计", + "columnLable": "合价.安装费.合计", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.安装费.其中:人工费", + "columnLable": "合价.安装费.其中:人工费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价.安装费.其中:机械费", + "columnLable": "合价.安装费.其中:机械费", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "表三", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "编制依据", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编制依据", + "show": "1", + "width": "70" + }, + { + "fileName": "项目名称及规格", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "项目名称及规格", + "show": "1", + "width": "175" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.装置性材料", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.装置性材料损耗", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料损耗", + "show": "0", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:人工费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:人工费", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:材料费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:材料费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:甲供材料", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:甲供材料", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价.安装费.其中:机械费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:机械费", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "安装费", + "show": "1" + } + ], + "isZeroShow": "0", + "name": "单价", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.装置性材料", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.装置性材料损耗", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "装置性材料损耗", + "show": "0", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:人工费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:人工费", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:材料费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:材料费", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:甲供材料", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:甲供材料", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价.安装费.其中:机械费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其中:机械费", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "安装费", + "show": "1" + } + ], + "isZeroShow": "0", + "name": "合价", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.单重", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.总重", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "重量", + "show": "0" + }, + { + "fileName": "备注", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "0", + "width": "77" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "77" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "表三", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "架空线路单位工程[表头设置]表(余物清理工程)" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路辅助设施工程预算表": { + "tableName": "架空输电线路辅助设施工程预算表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:59px;", + "序号": "", + "工程或费用名称": "合计", + "编制依据及计算说明": "", + "总价": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:59px;", + "序号": "1", + "工程或费用名称": "巡线、检修站工程", + "编制依据及计算说明": "", + "总价": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:59px;", + "序号": "1.1", + "工程或费用名称": "办公室、汽车库及仓库", + "编制依据及计算说明": "", + "总价": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:59px;", + "序号": "1.2", + "工程或费用名称": "巡检修站征地", + "编制依据及计算说明": "", + "总价": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:59px;", + "序号": "1.3", + "工程或费用名称": "室外工程", + "编制依据及计算说明": "", + "总价": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:59px;", + "序号": "2", + "工程或费用名称": "巡线、检修道路工程", + "编制依据及计算说明": "", + "总价": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:59px;", + "序号": "3", + "工程或费用名称": "生产维护通信设备", + "编制依据及计算说明": "", + "总价": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:59px;", + "序号": "4", + "工程或费用名称": "生产作业工具", + "编制依据及计算说明": "", + "总价": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 59, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "工程或费用名称", + "columnLable": "工程或费用名称", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "编制依据及计算说明", + "columnLable": "编制依据及计算说明", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "总价", + "columnLable": "总价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "表六", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "59" + }, + { + "fileName": "工程或费用名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "工程或费用名称", + "show": "1", + "width": "175" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "fileName": "计算参数.费用代码", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "费用代码", + "show": "0", + "width": "60" + }, + { + "fileName": "计算参数.费用计算式", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "费用计算式", + "show": "0", + "width": "60" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "计算参数.费率", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "费率", + "show": "0", + "width": "60" + } + ], + "isZeroShow": "0", + "name": "计算参数", + "show": "1" + }, + { + "fileName": "编制依据及计算说明", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编制依据及计算说明", + "show": "1", + "width": "175" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "总价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总价", + "show": "1", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "1", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "表六", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "表N.15 架空输电线路辅助设施工程[表头设置]表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路其他费用预算表": { + "tableName": "架空输电线路其他费用预算表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "", + "合价": "1180564", + "编制依据及计算说明": "", + "工程或费用项目名称": "合计", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "1", + "合价": "4196", + "编制依据及计算说明": "(建设场地征用及清理费)", + "工程或费用项目名称": "建设场地征用及清理费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "2", + "合价": "338175", + "编制依据及计算说明": "", + "工程或费用项目名称": "项目建设管理费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "2.1", + "合价": "130515", + "编制依据及计算说明": "(本体工程费)*1.17%", + "工程或费用项目名称": "项目法人管理费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "2.2", + "合价": "31234", + "编制依据及计算说明": "(本体工程费)*0.28%", + "工程或费用项目名称": "招标费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "2.3", + "合价": "123996", + "编制依据及计算说明": "8.23*(1.48)*1.018*10000", + "工程或费用项目名称": "工程监理费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "2.5", + "合价": "52429", + "编制依据及计算说明": "(本体工程费)*0.47%", + "工程或费用项目名称": "施工过程造价咨询及竣工结算审核费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3", + "合价": "775724", + "编制依据及计算说明": "", + "工程或费用项目名称": "项目建设技术服务费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3.3", + "合价": "537252", + "编制依据及计算说明": "", + "工程或费用项目名称": "勘察设计费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3.3.1", + "合价": "37068", + "编制依据及计算说明": "(勘察费)", + "工程或费用项目名称": "勘察费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3.3.2", + "合价": "500184", + "编制依据及计算说明": "(设计费)", + "工程或费用项目名称": "设计费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3.4", + "合价": "147000", + "编制依据及计算说明": "", + "工程或费用项目名称": "设计文件评审费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3.4.1", + "合价": "35000", + "编制依据及计算说明": "(10*0.35*1*1*10000)", + "工程或费用项目名称": "可行性研究文件评审费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3.4.2", + "合价": "50000", + "编制依据及计算说明": "(10*0.5*1*1*10000)", + "工程或费用项目名称": "初步设计文件评审费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3.4.3", + "合价": "62000", + "编制依据及计算说明": "(10*0.62*1*1*10000)", + "工程或费用项目名称": "施工图文件评审费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3.5", + "合价": "55776", + "编制依据及计算说明": "(本体工程费)*0.5%", + "工程或费用项目名称": "项目后评价费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3.6", + "合价": "24541", + "编制依据及计算说明": "", + "工程或费用项目名称": "工程建设检测费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3.6.1", + "合价": "24541", + "编制依据及计算说明": "(本体工程费)*0.22%", + "工程或费用项目名称": "电力工程质量检测费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3.7", + "合价": "11155", + "编制依据及计算说明": "(本体工程费)*0.1%", + "工程或费用项目名称": "电力工程技术经济标准编制费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "4", + "合价": "62469", + "编制依据及计算说明": "", + "工程或费用项目名称": "生产准备费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "4.1", + "合价": "27888", + "编制依据及计算说明": "(本体工程费)*0.25%", + "工程或费用项目名称": "管理车辆购置费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "4.2", + "合价": "23426", + "编制依据及计算说明": "(本体工程费)*0.21%", + "工程或费用项目名称": "工器具及办公家具购置费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "4.3", + "合价": "11155", + "编制依据及计算说明": "(本体工程费)*0.1%", + "工程或费用项目名称": "生产职工培训及提前进场费", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "", + "合价": "", + "编制依据及计算说明": "", + "工程或费用项目名称": "", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "", + "合价": "1180564", + "编制依据及计算说明": "", + "工程或费用项目名称": "小计:", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "工程或费用项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "工程或费用项目名称", + "columnLable": "工程或费用项目名称", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "编制依据及计算说明", + "columnLable": "编制依据及计算说明", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价", + "columnLable": "合价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "表四", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "工程或费用名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "工程或费用项目名称", + "show": "1", + "width": "175" + }, + { + "fileName": "费用代码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "费用代码", + "show": "0", + "width": "175" + }, + { + "fileName": "费用计算式", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "费用计算式", + "show": "0", + "width": "175" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "费率", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "费率", + "show": "0", + "width": "70" + }, + { + "fileName": "编制依据及计算说明", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编制依据及计算说明", + "show": "1", + "width": "175" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价", + "show": "1", + "width": "70" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "表四", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "表N.13 架空输电线路其他费用[表头设置]表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程概况及主要技术经济指标表": { + "tableName": "架空输电线路工程概况及主要技术经济指标表", + "rows": [ + { + "itemMap": { + "MergeRowCount": "9", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 0, + "Data": "工程\n概况" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 0, + "Data": "起点" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "2", + "ColIndex": 2, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 0, + "Data": "终点" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "3", + "ColIndex": 5, + "RowIndex": 0, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 8, + "RowIndex": 0, + "Data": "电压等级(kV)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 9, + "RowIndex": 0, + "Data": "220kV" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 0, + "Data": "输送容量(MVA)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 0, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 12, + "RowIndex": 0, + "Data": "海拔高度(m)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 13, + "RowIndex": 0, + "Data": "500" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 0, + "Data": "设计风速(m/s)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 15, + "RowIndex": 0, + "Data": "27" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 16, + "RowIndex": 0, + "Data": "覆冰厚度(mm)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 17, + "RowIndex": 0, + "Data": "10" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 1, + "Data": "线路长度(km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 1, + "Data": "折合单回总长度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 1, + "Data": "8.23" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 1, + "Data": "其中:单回" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 1, + "Data": "8.23" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 6, + "RowIndex": 1, + "Data": "双回" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 1, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 8, + "RowIndex": 1, + "Data": "三回" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 9, + "RowIndex": 1, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 1, + "Data": "四回" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 1, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 12, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 13, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 15, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 16, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 17, + "RowIndex": 1, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 2, + "Data": "地形(%)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 2, + "Data": "平地" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 2, + "Data": "59" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 2, + "Data": "丘陵" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 2, + "Data": "23" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 6, + "RowIndex": 2, + "Data": "山地" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 2, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 8, + "RowIndex": 2, + "Data": "高山" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 9, + "RowIndex": 2, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 2, + "Data": "峻岭" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 2, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 12, + "RowIndex": 2, + "Data": "河网" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 13, + "RowIndex": 2, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 2, + "Data": "泥沼" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 15, + "RowIndex": 2, + "Data": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 16, + "RowIndex": 2, + "Data": "沙漠" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 17, + "RowIndex": 2, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 3, + "Data": "导线" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 3, + "Data": "型号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 3, + "Data": "JL/G1A-300/40" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 3, + "Data": "每相根数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 3, + "Data": "2" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 6, + "RowIndex": 3, + "Data": "地线" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 3, + "Data": "型号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "2", + "ColIndex": 8, + "RowIndex": 3, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 3, + "Data": "根数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 3, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "2", + "ColIndex": 12, + "RowIndex": 3, + "Data": "OPGW光缆" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 3, + "Data": "芯数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 15, + "RowIndex": 3, + "Data": "36" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 16, + "RowIndex": 3, + "Data": "根数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 17, + "RowIndex": 3, + "Data": "2" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 4, + "Data": "杆塔" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 4, + "Data": "数量(基)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 4, + "Data": "29" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 4, + "Data": "耐张比例(%)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 4, + "Data": "34.483%" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 6, + "RowIndex": 4, + "Data": "其中:角钢塔(基)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 4, + "Data": "29" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 8, + "RowIndex": 4, + "Data": "钢管塔(基)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 9, + "RowIndex": 4, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 4, + "Data": "混凝土杆(基)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 4, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 12, + "RowIndex": 4, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 13, + "RowIndex": 4, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 4, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 15, + "RowIndex": 4, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 16, + "RowIndex": 4, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 17, + "RowIndex": 4, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 5, + "Data": "基础(基)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 5, + "Data": "阶梯" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 5, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 5, + "Data": "大板" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 5, + "Data": "26" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 6, + "RowIndex": 5, + "Data": "插入式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 5, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 8, + "RowIndex": 5, + "Data": "掏挖" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 9, + "RowIndex": 5, + "Data": "7" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 5, + "Data": "人工挖孔" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 5, + "Data": "2" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 12, + "RowIndex": 5, + "Data": "灌注桩" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 13, + "RowIndex": 5, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 5, + "Data": "锚杆" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 15, + "RowIndex": 5, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 16, + "RowIndex": 5, + "Data": "其他" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 17, + "RowIndex": 5, + "Data": "4" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 6, + "Data": "基坑土质比(%)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 6, + "Data": "普通土" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 6, + "Data": "0.288" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 6, + "Data": "坚土" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 6, + "Data": "1.486" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 6, + "RowIndex": 6, + "Data": "松砂石" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 6, + "Data": "34.96" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 8, + "RowIndex": 6, + "Data": "岩石(爆破)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 9, + "RowIndex": 6, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 6, + "Data": "岩石(人凿)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 6, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 12, + "RowIndex": 6, + "Data": "泥水坑" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 13, + "RowIndex": 6, + "Data": "23.187" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 6, + "Data": "流砂" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 15, + "RowIndex": 6, + "Data": "40.079" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 16, + "RowIndex": 6, + "Data": "干砂" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 17, + "RowIndex": 6, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 7, + "Data": "交叉跨越(处)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 7, + "Data": "铁路" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 7, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 7, + "Data": "高速公路" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 7, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 6, + "RowIndex": 7, + "Data": "高铁" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 7, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 8, + "RowIndex": 7, + "Data": "等级公路" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 9, + "RowIndex": 7, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 7, + "Data": "高压电力线" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 7, + "Data": "10" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 12, + "RowIndex": 7, + "Data": "通航河流" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 13, + "RowIndex": 7, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 7, + "Data": "其他" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 15, + "RowIndex": 7, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 16, + "RowIndex": 7, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 17, + "RowIndex": 7, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 8, + "Data": "绝缘子串型式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 8, + "Data": "悬垂串" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 8, + "Data": "57" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 8, + "Data": "V型串" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 8, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 6, + "RowIndex": 8, + "Data": "耐张串" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 8, + "Data": "72" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 8, + "RowIndex": 8, + "Data": "跳线串" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 9, + "RowIndex": 8, + "Data": "32" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 8, + "Data": "其他" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 8, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 12, + "RowIndex": 8, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 13, + "RowIndex": 8, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 8, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 15, + "RowIndex": 8, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 16, + "RowIndex": 8, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 17, + "RowIndex": 8, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "6", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 9, + "Data": "主要\n技术\n经济\n指标" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "2", + "ColIndex": 1, + "RowIndex": 9, + "Data": "导线(t/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 9, + "Data": "7.1932" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "3", + "ColIndex": 4, + "RowIndex": 9, + "Data": "角钢塔(t/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 9, + "Data": "30.227" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "3", + "ColIndex": 8, + "RowIndex": 9, + "Data": "现浇混凝土(m?/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 9, + "Data": "125.213" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "4", + "ColIndex": 12, + "RowIndex": 9, + "Data": "盘式绝缘子(片/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "2", + "ColIndex": 16, + "RowIndex": 9, + "Data": "537.424" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "2", + "ColIndex": 1, + "RowIndex": 10, + "Data": "地线(t/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 10, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "3", + "ColIndex": 4, + "RowIndex": 10, + "Data": "钢管塔(t/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 10, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "3", + "ColIndex": 8, + "RowIndex": 10, + "Data": "灌注桩混凝土(m?/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 10, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "4", + "ColIndex": 12, + "RowIndex": 10, + "Data": "合成绝缘子(支/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "2", + "ColIndex": 16, + "RowIndex": 10, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "2", + "ColIndex": 1, + "RowIndex": 11, + "Data": "基础钢材(t/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 11, + "Data": "8.567" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "3", + "ColIndex": 4, + "RowIndex": 11, + "Data": "地脚螺栓(t/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 11, + "Data": "1.178" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "3", + "ColIndex": 8, + "RowIndex": 11, + "Data": "基础护壁(m?/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 11, + "Data": "1.661" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "4", + "ColIndex": 12, + "RowIndex": 11, + "Data": "挂线金具(t/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "2", + "ColIndex": 16, + "RowIndex": 11, + "Data": "0.742" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "3", + "ColIndex": 1, + "RowIndex": 12, + "Data": "运距" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "3", + "ColIndex": 4, + "RowIndex": 12, + "Data": "人力运距(km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 12, + "Data": "0.3" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "3", + "ColIndex": 8, + "RowIndex": 12, + "Data": "汽车运距(km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 12, + "Data": "10" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "4", + "ColIndex": 12, + "RowIndex": 12, + "Data": "余土汽车运距(km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "2", + "ColIndex": 16, + "RowIndex": 12, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "16", + "ColIndex": 1, + "RowIndex": 13, + "Data": "主要材料价格" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 17, + "RowIndex": 13, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "2", + "ColIndex": 1, + "RowIndex": 14, + "Data": "导线(元/t)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 14, + "Data": "15000" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 14, + "Data": "地线(元/t)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 14, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 6, + "RowIndex": 14, + "Data": "角钢塔材(元/t)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 7, + "RowIndex": 14, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 8, + "RowIndex": 14, + "Data": "钢管塔材(元/t)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 9, + "RowIndex": 14, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 10, + "RowIndex": 14, + "Data": "基础钢筋(元/t)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 11, + "RowIndex": 14, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 12, + "RowIndex": 14, + "Data": "水泥(元/t)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 13, + "RowIndex": 14, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 14, + "RowIndex": 14, + "Data": "挂线金具(元/t)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 15, + "RowIndex": 14, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 16, + "RowIndex": 14, + "Data": "OPGW(元/km)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 17, + "RowIndex": 14, + "Data": "0" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "Data", + "columnLable": "Data", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "ColIndex", + "columnLable": "ColIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "RowIndex", + "columnLable": "RowIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeColCount", + "columnLable": "MergeColCount", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeRowCount", + "columnLable": "MergeRowCount", + "dataType": 0, + "columnIndex": 0 + } + ], + "tag": "unrule", + "repeatColumn": false, + "leftHeader": "表五", + "middleHeader": "", + "rightHeader": "", + "tableStyle": { + "columns": [ + { + "width": "45" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + }, + { + "width": "64" + } + ], + "pageInfo": { + "autoCalUnionRowHeight": "0", + "autoColumnWidth": "1", + "autoFillBlankLine": "0", + "bCalcPageCount": "1", + "bordyFrame": "1", + "colCount": "18", + "deflateSize": "3", + "fixColCount": "0", + "fixRowCount": "0", + "formatPrintFormulaText": "1", + "formatPrintText": "1", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "6.25", + "marginLeft": "6.25", + "marginRight": "6.25", + "marginTop": "10.416667", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "表五", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "2", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "表N.14 架空输电线路工程概况及主要技术经济指标表" + } + }, + "rowCount": "15", + "uniteCellAllowFillBlankLine": "0" + }, + "poePictureList": [], + "poeStylesList": [ + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "61458", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "61442", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "53266", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "0", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "49152", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "1", + "siz": "0", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "49152", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "8192", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "57344", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "32", + "bsiz": "0", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "40960", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "0", + "rsiz": "0", + "siz": "0", + "stl": "0", + "tsiz": "0" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "49152", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "32", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "57344", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + } + ], + "prePictureList": [], + "rows": [ + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[工程概况信息_输送容量]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "海拔高度(m)" + }, + "13": { + "index": "13", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[工程概况信息_海拔高度]" + }, + "14": { + "index": "14", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "设计风速(m⁄s)" + }, + "15": { + "index": "15", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[气象条件_设计风速(导则)]" + }, + "16": { + "index": "16", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "覆冰厚度(mm)" + }, + "17": { + "index": "17", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[气象条件_覆冰厚度(导则)]" + }, + "0": { + "index": "0", + "sel": "0", + "style": "0", + "uc": "1", + "ur": "9", + "value": "工程\n概况" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "起点" + }, + "2": { + "index": "2", + "sel": "0", + "style": "2", + "uc": "2", + "ur": "1", + "value": "[工程概况信息_起点]" + }, + "3": { + "index": "3", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "终点" + }, + "5": { + "index": "5", + "sel": "0", + "style": "2", + "uc": "3", + "ur": "1", + "value": "[工程概况信息_终点]" + }, + "6": { + "index": "6", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "电压等级(kV)" + }, + "9": { + "index": "9", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[电压等级]" + }, + "10": { + "index": "10", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "输送容量(MVA)" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[0].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "0", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[四回路]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "15": { + "index": "15", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "16": { + "index": "16", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "17": { + "index": "17", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "概况" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "线路长度(km)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "折合单回总长度" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[折单回总长度]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "其中:单回" + }, + "5": { + "index": "5", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[单回路]" + }, + "6": { + "index": "6", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "双回" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[双回路]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "三回" + }, + "9": { + "index": "9", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[三回路]" + }, + "10": { + "index": "10", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "四回" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[1].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "1", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[峻岭]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "河网" + }, + "13": { + "index": "13", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[河网]" + }, + "14": { + "index": "14", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "泥沼" + }, + "15": { + "index": "15", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[泥沼]" + }, + "16": { + "index": "16", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "沙漠" + }, + "17": { + "index": "17", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[沙漠]" + }, + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "地形(%)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "平地" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[平地]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "丘陵" + }, + "5": { + "index": "5", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[丘陵]" + }, + "6": { + "index": "6", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "山地" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[山地]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "高山" + }, + "9": { + "index": "9", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[高山]" + }, + "10": { + "index": "10", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "峻岭" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[2].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "2", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[地线1根数]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "OPGW光缆" + }, + "13": { + "index": "13", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "芯数" + }, + "15": { + "index": "15", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[光缆1芯数]" + }, + "16": { + "index": "16", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "根数" + }, + "17": { + "index": "17", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[光缆1根数]" + }, + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "导线" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "型号" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[导线1型号]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "每相根数" + }, + "5": { + "index": "5", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[导线1根数]" + }, + "6": { + "index": "6", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "地线" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "型号" + }, + "8": { + "index": "8", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "[地线1型号]" + }, + "9": { + "index": "9", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "根数" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[3].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "3", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[混凝土杆基数]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "15": { + "index": "15", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "16": { + "index": "16", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "17": { + "index": "17", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "杆塔" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "数量(基)" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[杆塔总数]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "耐张比例(%)" + }, + "5": { + "index": "5", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[耐张比例]" + }, + "6": { + "index": "6", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "其中:角钢塔(基)" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[角钢塔基数]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "钢管塔(基)" + }, + "9": { + "index": "9", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[钢管塔基数]" + }, + "10": { + "index": "10", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "混凝土杆(基)" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[4].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "4", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[人工挖孔]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "灌注桩" + }, + "13": { + "index": "13", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[其中:灌注桩]" + }, + "14": { + "index": "14", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "锚杆" + }, + "15": { + "index": "15", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[锚杆]" + }, + "16": { + "index": "16", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "其他" + }, + "17": { + "index": "17", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[其他基础型式(预规)]" + }, + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "基础(基)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "阶梯" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[阶梯式]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "大板" + }, + "5": { + "index": "5", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[大板式]" + }, + "6": { + "index": "6", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "插入式" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[插入式]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "掏挖" + }, + "9": { + "index": "9", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[掏挖式]" + }, + "10": { + "index": "10", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "人工挖孔" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[5].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "5", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[岩石(人凿)比例]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "泥水坑" + }, + "13": { + "index": "13", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[泥水坑比例]" + }, + "14": { + "index": "14", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "流砂" + }, + "15": { + "index": "15", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[流砂坑比例]" + }, + "16": { + "index": "16", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "干砂" + }, + "17": { + "index": "17", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[干砂坑比例]" + }, + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "基坑土质比(%)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "普通土" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[普通土比例]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "坚土" + }, + "5": { + "index": "5", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[坚土比例]" + }, + "6": { + "index": "6", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "松砂石" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[松砂石比例]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "岩石(爆破)" + }, + "9": { + "index": "9", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[岩石(爆破)比例]" + }, + "10": { + "index": "10", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "岩石(人凿)" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[6].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "6", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[高压线(含10kV)]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "通航河流" + }, + "13": { + "index": "13", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "其他" + }, + "15": { + "index": "15", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "16": { + "index": "16", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "17": { + "index": "17", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "交叉跨越(处)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "铁路" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[铁路]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "高速公路" + }, + "5": { + "index": "5", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[高速公路]" + }, + "6": { + "index": "6", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "高铁" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[高铁]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "等级公路" + }, + "9": { + "index": "9", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "高压电力线" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[7].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "7", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "15": { + "index": "15", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "16": { + "index": "16", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "17": { + "index": "17", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "绝缘子串型式" + }, + "2": { + "index": "2", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "悬垂串" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[悬垂串]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "V型串" + }, + "5": { + "index": "5", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[V型串]" + }, + "6": { + "index": "6", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "耐张串" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[耐张串]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "跳线串" + }, + "9": { + "index": "9", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[跳线串]" + }, + "10": { + "index": "10", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "其他" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[8].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "8", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[现浇混凝土单公里用量]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "0", + "uc": "4", + "ur": "1", + "value": "盘式绝缘子(片⁄km)" + }, + "13": { + "index": "13", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "15": { + "index": "15", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "16": { + "index": "16", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "[盘式绝缘子单公里用量]" + }, + "17": { + "index": "17", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "0", + "uc": "1", + "ur": "6", + "value": "主要\n技术\n经济\n指标" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "导线(t⁄km)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[导线单公里用量(含弧垂)]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "0", + "uc": "3", + "ur": "1", + "value": "角钢塔(t⁄km)" + }, + "5": { + "index": "5", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[角钢塔材单公里用量]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "0", + "uc": "3", + "ur": "1", + "value": "现浇混凝土(m?⁄km)" + }, + "9": { + "index": "9", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[9].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "9", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[其中:灌注桩单公里用量]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "0", + "uc": "4", + "ur": "1", + "value": "合成绝缘子(支⁄km)" + }, + "13": { + "index": "13", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "15": { + "index": "15", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "16": { + "index": "16", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "[合成绝缘子单公里用量]" + }, + "17": { + "index": "17", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "技术" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "地线(t⁄km)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[地线单公里用量(含弧垂)]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "0", + "uc": "3", + "ur": "1", + "value": "钢管塔(t⁄km)" + }, + "5": { + "index": "5", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[钢管塔材单公里用量]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "0", + "uc": "3", + "ur": "1", + "value": "灌注桩混凝土(m?⁄km)" + }, + "9": { + "index": "9", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[10].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "10", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[其中:基础护壁单公里用量]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "0", + "uc": "4", + "ur": "1", + "value": "挂线金具(t⁄km)" + }, + "13": { + "index": "13", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "15": { + "index": "15", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "16": { + "index": "16", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "[挂线金具单公里用量]" + }, + "17": { + "index": "17", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "经济" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "基础钢材(t⁄km)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[基础钢材单公里用量]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "0", + "uc": "3", + "ur": "1", + "value": "地脚螺栓(t⁄km)" + }, + "5": { + "index": "5", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[地脚螺栓单公里用量]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "0", + "uc": "3", + "ur": "1", + "value": "基础护壁(m?⁄km)" + }, + "9": { + "index": "9", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[11].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "11", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[汽车运距]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "0", + "uc": "4", + "ur": "1", + "value": "余土汽车运距(km)" + }, + "13": { + "index": "13", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "15": { + "index": "15", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "16": { + "index": "16", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "[余土汽车运距]" + }, + "17": { + "index": "17", + "sel": "0", + "style": "9", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "指标" + }, + "1": { + "index": "1", + "sel": "0", + "style": "2", + "uc": "3", + "ur": "1", + "value": "运距" + }, + "2": { + "index": "2", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "0", + "uc": "3", + "ur": "1", + "value": "人力运距(km)" + }, + "5": { + "index": "5", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[人力运距]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "0", + "uc": "3", + "ur": "1", + "value": "汽车运距(km)" + }, + "9": { + "index": "9", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[12].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "12", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "12": { + "index": "12", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "13": { + "index": "13", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "14": { + "index": "14", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "15": { + "index": "15", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "16": { + "index": "16", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "17": { + "index": "17", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "" + }, + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "16", + "ur": "1", + "value": "主要材料价格" + }, + "2": { + "index": "2", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "6": { + "index": "6", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "7": { + "index": "7", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "8": { + "index": "8", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "9": { + "index": "9", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + }, + "10": { + "index": "10", + "sel": "0", + "style": "8", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[13].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "13", + "newpage": "0" + }, + { + "cellArrayMap": { + "11": { + "index": "11", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[主要材料价格_基础钢材]" + }, + "12": { + "index": "12", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "水泥(元⁄t)" + }, + "13": { + "index": "13", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[主要材料价格_水泥]" + }, + "14": { + "index": "14", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "挂线金具(元⁄t)" + }, + "15": { + "index": "15", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[主要材料价格_挂线金具]" + }, + "16": { + "index": "16", + "sel": "1", + "style": "1", + "uc": "0", + "ur": "0", + "value": "OPGW(元⁄km)" + }, + "17": { + "index": "17", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[主要材料价格_OPGW]" + }, + "0": { + "index": "0", + "sel": "0", + "style": "7", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "2", + "uc": "2", + "ur": "1", + "value": "导线(元⁄t)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[导线1单价]" + }, + "4": { + "index": "4", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "地线(元⁄t)" + }, + "5": { + "index": "5", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[地线1单价]" + }, + "6": { + "index": "6", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "角钢塔材(元⁄t)" + }, + "7": { + "index": "7", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[主要材料价格_角钢塔材]" + }, + "8": { + "index": "8", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "钢管塔材(元⁄t)" + }, + "9": { + "index": "9", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "[主要材料价格_钢管塔材]" + }, + "10": { + "index": "10", + "sel": "0", + "style": "1", + "uc": "0", + "ur": "0", + "value": "基础钢筋(元⁄t)" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.5" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.6" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.7" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.8" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.9" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.10" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.11" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.12" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.13" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.14" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.15" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.16" + }, + { + "$ref": "$.projectData.report.架空输电线路工程概况及主要技术经济指标表.tableStyle.rows[14].cellArrayMap.17" + } + ], + "fixRowheight": "1", + "height": "35", + "index": "14", + "newpage": "0" + } + ] + } + }, + "装置性材料单公里用量表": { + "tableName": "装置性材料单公里用量表", + "rows": [ + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 0, + "Data": "序号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 0, + "Data": "项 目 名 称" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 0, + "Data": "单 位" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 0, + "Data": "数量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 0, + "Data": "公里指标" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 0, + "Data": "备 注" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 1, + "Data": "1" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 1, + "Data": "导线" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 1, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 1, + "Data": "55.8488" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 1, + "Data": "6.786" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 1, + "Data": "不含弧垂用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 2, + "Data": "2" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 2, + "Data": "避雷线" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 2, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 2, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 2, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 2, + "Data": "不含弧垂用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 3, + "Data": "2.1" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 3, + "Data": "钢绞地线" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 3, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 3, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 3, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 3, + "Data": "不含弧垂用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 4, + "Data": "2.2" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 4, + "Data": "良导体地线" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 4, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 4, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 4, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 4, + "Data": "不含弧垂用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 5, + "Data": "2.3" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 5, + "Data": "引流线和地线弧垂用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 5, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 5, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 5, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 5, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 6, + "Data": "3" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 6, + "Data": "OPGW" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 6, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 6, + "Data": "10.6661" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 6, + "Data": "1.296" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 6, + "Data": "不含弧垂用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 7, + "Data": "4" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 7, + "Data": "塔材" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 7, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 7, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 7, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 7, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 8, + "Data": "4.1" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 8, + "Data": "角钢塔材" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 8, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 8, + "Data": "248.77" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 8, + "Data": "30.227" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 8, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 9, + "Data": "4.2" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 9, + "Data": "钢管塔材" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 9, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 9, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 9, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 9, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 10, + "Data": "5" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 10, + "Data": "基础钢材" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 10, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 10, + "Data": "70.509" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 10, + "Data": "8.567" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 10, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 11, + "Data": "6" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 11, + "Data": "地脚螺栓" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 11, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 11, + "Data": "9.692" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 11, + "Data": "1.178" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 11, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 12, + "Data": "7" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 12, + "Data": "插入式角钢" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 12, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 12, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 12, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 12, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 13, + "Data": "8" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 13, + "Data": "接地钢材" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 13, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 13, + "Data": "7.161" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 13, + "Data": "0.87" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 13, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 14, + "Data": "9" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 14, + "Data": "挂线金具" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 14, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 14, + "Data": "6.108" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 14, + "Data": "0.742" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 14, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 15, + "Data": "10" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 15, + "Data": "间隔棒" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 15, + "Data": "组" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 15, + "Data": "111" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 15, + "Data": "13.487" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 15, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 16, + "Data": "11" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 16, + "Data": "防振锤" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 16, + "Data": "只" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 16, + "Data": "378" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 16, + "Data": "45.93" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 16, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 17, + "Data": "12" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 17, + "Data": "瓷绝缘子" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 17, + "Data": "片" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 17, + "Data": "103" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 17, + "Data": "12.515" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 17, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 18, + "Data": "13" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 18, + "Data": "玻璃绝缘子" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 18, + "Data": "片" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 18, + "Data": "4320" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 18, + "Data": "524.909" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 18, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 19, + "Data": "14" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 19, + "Data": "合成绝缘子" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 19, + "Data": "支" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 19, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 19, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 19, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 20, + "Data": "15" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 20, + "Data": "跳线串" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 20, + "Data": "串" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 20, + "Data": "32" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 20, + "Data": "3.888" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 20, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 21, + "Data": "16" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 21, + "Data": "现浇混凝土" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 21, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 21, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 21, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 21, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 22, + "Data": "16.1" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 22, + "Data": "现浇基础现浇混凝土量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 22, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 22, + "Data": "662.052" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 22, + "Data": "80.444" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 22, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 23, + "Data": "16.2" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 23, + "Data": "灌注桩基础混凝土量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 23, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 23, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 23, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 23, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 24, + "Data": "16.3" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 24, + "Data": "挖孔基础现浇混凝土量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 24, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 24, + "Data": "354.786" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 24, + "Data": "43.109" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 24, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 25, + "Data": "17" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 25, + "Data": "灰土垫层" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 25, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 25, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 25, + "Data": "0" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 25, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 26, + "Data": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 26, + "Data": "水泥" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 26, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 26, + "Data": "284.974" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 26, + "Data": "34.626" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 26, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 27, + "Data": "19" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 27, + "Data": "砂子" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 27, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 27, + "Data": "553.588" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 27, + "Data": "67.265" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 27, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 28, + "Data": "20" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 28, + "Data": "碎石" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 28, + "Data": "吨" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 28, + "Data": "1177.523" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 28, + "Data": "143.077" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 28, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 29, + "Data": "21" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 29, + "Data": "基坑土石方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 29, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 29, + "Data": "6449.975" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 29, + "Data": "783.715" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 29, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 30, + "Data": "22" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 30, + "Data": "护壁土石方" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 30, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 30, + "Data": "11.68" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 30, + "Data": "1.419" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 30, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 31, + "Data": "23" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 31, + "Data": "护坡挡土墙排水沟土石方" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 31, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 31, + "Data": "157" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 31, + "Data": "19.077" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 31, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 32, + "Data": "24" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 32, + "Data": "开挖土方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 32, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 32, + "Data": "6180.885" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 32, + "Data": "751.019" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 32, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 33, + "Data": "25" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 33, + "Data": "掏挖土方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 33, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 33, + "Data": "269.09" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 33, + "Data": "32.696" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 33, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 34, + "Data": "26" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 34, + "Data": "接地土方" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 34, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 34, + "Data": "1419.52" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 34, + "Data": "172.481" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 34, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 35, + "Data": "27" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 35, + "Data": "基面土方" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 35, + "Data": "立方米" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 35, + "Data": "290" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 35, + "Data": "35.237" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 35, + "Data": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 0, + "RowIndex": 36, + "Data": "28" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 1, + "RowIndex": 36, + "Data": "本体投资" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 2, + "RowIndex": 36, + "Data": "万元" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 3, + "RowIndex": 36, + "Data": "1116" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 4, + "RowIndex": 36, + "Data": "135.6" + }, + "itemMaps": [] + }, + { + "itemMap": { + "MergeRowCount": "1", + "MergeColCount": "1", + "ColIndex": 5, + "RowIndex": 36, + "Data": "" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "Data", + "columnLable": "Data", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "ColIndex", + "columnLable": "ColIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "RowIndex", + "columnLable": "RowIndex", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeColCount", + "columnLable": "MergeColCount", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "MergeRowCount", + "columnLable": "MergeRowCount", + "dataType": 0, + "columnIndex": 0 + } + ], + "tag": "unrule", + "repeatColumn": false, + "leftHeader": "附表七", + "middleHeader": "", + "rightHeader": "", + "tableStyle": { + "columns": [ + { + "width": "50" + }, + { + "width": "350" + }, + { + "width": "82" + }, + { + "width": "200" + }, + { + "width": "200" + }, + { + "width": "187" + } + ], + "pageInfo": { + "autoCalUnionRowHeight": "0", + "autoColumnWidth": "1", + "autoFillBlankLine": "0", + "bCalcPageCount": "1", + "bordyFrame": "1", + "colCount": "6", + "deflateSize": "2", + "fixColCount": "0", + "fixRowCount": "0", + "formatPrintFormulaText": "1", + "formatPrintText": "1", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "6.25", + "marginLeft": "6.25", + "marginRight": "6.25", + "marginTop": "10.416667", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "附表七", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "2", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "架空线路工程概况及主要技术经济指标表" + } + }, + "rowCount": "37", + "uniteCellAllowFillBlankLine": "0" + }, + "poePictureList": [], + "poeStylesList": [ + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "61442", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + } + ], + "prePictureList": [], + "rows": [ + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "序号" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "项 目 名 称" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "单 位" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "数量" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "公里指标" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "备 注" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[0].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[0].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[0].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[0].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[0].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[0].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "1" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "导线" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[导线用量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[导线单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "不含弧垂用量" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[1].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[1].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[1].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[1].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[1].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[1].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "1" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "2" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "避雷线" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[地线用量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[地线单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "不含弧垂用量" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[2].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[2].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[2].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[2].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[2].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[2].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "2" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "2.1" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "钢绞地线" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[钢绞地线用量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[钢绞地线单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "不含弧垂用量" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[3].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[3].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[3].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[3].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[3].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[3].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "3" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "2.2" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "良导体地线" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[良导体地线用量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[良导体地线单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "不含弧垂用量" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[4].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[4].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[4].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[4].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[4].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[4].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "4" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "2.3" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "引流线和地线弧垂用量" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[地线弧垂用量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[地线弧垂单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[5].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[5].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[5].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[5].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[5].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[5].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "5" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "3" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "OPGW" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[OPGW用量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[OPGW单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "不含弧垂用量" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[6].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[6].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[6].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[6].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[6].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[6].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "6" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "4" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "塔材" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[7].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[7].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[7].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[7].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[7].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[7].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "7" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "4.1" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "角钢塔材" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[角钢塔材用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[角钢塔材单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[8].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[8].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[8].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[8].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[8].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[8].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "8" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "4.2" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "钢管塔材" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[钢管塔材用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[钢管塔材单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[9].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[9].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[9].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[9].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[9].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[9].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "9" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "5" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "基础钢材" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[基础钢材用量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[基础钢材单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[10].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[10].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[10].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[10].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[10].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[10].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "10" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "6" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "地脚螺栓" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[地脚螺栓用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[地脚螺栓单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[11].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[11].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[11].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[11].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[11].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[11].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "11" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "7" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "插入式角钢" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[插入材用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[插入材单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[12].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[12].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[12].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[12].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[12].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[12].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "12" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "8" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "接地钢材" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[接地钢材用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[接地钢材单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[13].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[13].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[13].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[13].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[13].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[13].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "13" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "9" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "挂线金具" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[挂线金具用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[挂线金具单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[14].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[14].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[14].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[14].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[14].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[14].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "14" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "10" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "间隔棒" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "组" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[间隔棒用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[间隔棒单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[15].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[15].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[15].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[15].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[15].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[15].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "15" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "11" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "防振锤" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "只" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[防振锤用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[防振锤单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[16].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[16].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[16].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[16].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[16].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[16].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "16" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "12" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "瓷绝缘子" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "片" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[瓷绝缘子用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[瓷绝缘子单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[17].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[17].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[17].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[17].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[17].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[17].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "17" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "13" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "玻璃绝缘子" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "片" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[玻璃绝缘子用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[玻璃绝缘子单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[18].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[18].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[18].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[18].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[18].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[18].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "18" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "14" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "合成绝缘子" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "支" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[合成绝缘子用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[合成绝缘子单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[19].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[19].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[19].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[19].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[19].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[19].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "19" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "15" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "跳线串" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "串" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[跳线串]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[跳线串单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[20].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[20].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[20].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[20].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[20].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[20].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "20" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "16" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "现浇混凝土" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[21].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[21].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[21].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[21].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[21].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[21].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "21" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "16.1" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "现浇基础现浇混凝土量" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[其中:现浇基础现浇混凝土量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[其中:现浇基础现浇混凝土单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[22].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[22].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[22].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[22].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[22].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[22].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "22" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "16.2" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "灌注桩基础混凝土量" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[其中:灌注桩用量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[其中:灌注桩单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[23].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[23].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[23].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[23].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[23].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[23].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "23" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "16.3" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "挖孔基础现浇混凝土量" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[其中:挖孔基础现浇混凝土量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[其中:挖孔基础现浇混凝土单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[24].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[24].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[24].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[24].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[24].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[24].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "24" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "17" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "灰土垫层" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[灰土垫层]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[灰土垫层单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[25].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[25].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[25].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[25].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[25].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[25].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "25" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "18" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "水泥" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[水泥用量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[水泥单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[26].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[26].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[26].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[26].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[26].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[26].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "26" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "19" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "砂子" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[砂子用量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[砂子单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[27].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[27].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[27].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[27].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[27].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[27].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "27" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "20" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "碎石" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "吨" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[碎石用量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[碎石单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[28].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[28].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[28].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[28].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[28].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[28].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "28" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "21" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "基坑土石方量" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[基坑土石方量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[基坑土石方单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[29].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[29].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[29].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[29].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[29].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[29].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "29" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "22" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "护壁土石方" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[护壁土石方量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[护壁土石方单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[30].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[30].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[30].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[30].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[30].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[30].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "30" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "23" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "护坡挡土墙排水沟土石方" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[护坡挡土墙排洪沟土石方量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[护坡挡土墙排水沟土石方单公里量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[31].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[31].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[31].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[31].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[31].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[31].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "31" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "24" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "开挖土方量" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[开挖土方量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[开挖土方单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[32].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[32].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[32].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[32].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[32].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[32].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "32" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "25" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "掏挖土方量" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[掏挖土方量(西北)]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[掏挖土方单公里用量(西北)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[33].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[33].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[33].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[33].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[33].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[33].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "33" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "26" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "接地土方" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[接地土石方量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[接地土石方单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[34].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[34].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[34].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[34].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[34].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[34].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "34" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "27" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "基面土方" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "立方米" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[尖峰及施工基面土石方量]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[尖峰及施工基面土石方单公里用量]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[35].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[35].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[35].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[35].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[35].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[35].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "35" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "28" + }, + "1": { + "index": "1", + "style": "0", + "uc": "0", + "ur": "0", + "value": "本体投资" + }, + "2": { + "index": "2", + "style": "0", + "uc": "0", + "ur": "0", + "value": "万元" + }, + "3": { + "index": "3", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[本体工程]" + }, + "4": { + "index": "4", + "style": "0", + "uc": "0", + "ur": "0", + "value": "[本体工程(单)]" + }, + "5": { + "index": "5", + "style": "0", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[36].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[36].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[36].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[36].cellArrayMap.3" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[36].cellArrayMap.4" + }, + { + "$ref": "$.projectData.report.装置性材料单公里用量表.tableStyle.rows[36].cellArrayMap.5" + } + ], + "fixRowheight": "1", + "height": "28", + "index": "36" + } + ] + } + }, + "架空输电线路建设场地征用及清理费用预算表": { + "tableName": "架空输电线路建设场地征用及清理费用预算表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "", + "合价": "4196", + "工程或费用名称": "合计", + "编制依据及计算说明": "", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "1", + "合价": "4196", + "工程或费用名称": "建设场地征用及清理费", + "编制依据及计算说明": "", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "1.6", + "合价": "4196", + "工程或费用名称": "余物清理费", + "编制依据及计算说明": "(余物清理费+拆除工程费)", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "", + "合价": "", + "工程或费用名称": "", + "编制依据及计算说明": "", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "", + "合价": "4196", + "工程或费用名称": "小计:", + "编制依据及计算说明": "", + "编制依据及计算说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "工程或费用名称", + "columnLable": "工程或费用名称", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "编制依据及计算说明", + "columnLable": "编制依据及计算说明", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价", + "columnLable": "合价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "表七", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "工程或费用名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "工程或费用名称", + "show": "1", + "width": "175" + }, + { + "fileName": "费用代码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "费用代码", + "show": "0", + "width": "175" + }, + { + "fileName": "费用计算式", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "费用计算式", + "show": "0", + "width": "175" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "费率", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "费率", + "show": "0", + "width": "70" + }, + { + "fileName": "编制依据及计算说明", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编制依据及计算说明", + "show": "1", + "width": "175" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价", + "show": "1", + "width": "70" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "表七", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "表N.16 架空输电线路建设场地征用及清理费用[表头设置]表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "综合地形增加系数计算表": { + "tableName": "综合地形增加系数计算表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "", + "地形增加系数.山地": "", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "特征段1", + "综合增加系数.高山": "", + "项目": "", + "地形增加系数.沙漠": "", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "", + "地形比例.山地": "", + "地形比例.丘陵": "", + "综合增加系数.泥沼": "", + "地形增加系数.河网": "", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "", + "地形增加系数.高山": "", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "", + "地形比例.泥沼": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "40", + "地形增加系数.山地": "150", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "1", + "综合增加系数.高山": "", + "项目": "工地运输(人力运输)混凝土杆、混凝土预制品、钢管杆、线材(不含机械费)", + "地形增加系数.沙漠": "65", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "70", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "12.6", + "地形增加系数.河网": "", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "400", + "地形增加系数.高山": "300", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "9.2", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "21.8", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "20", + "地形增加系数.山地": "100", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "2", + "综合增加系数.高山": "", + "项目": "工地运输(人力运输)金具、绝缘子、零星钢材、塔材、其他建筑安装材料(不含机械费)", + "地形增加系数.沙漠": "35", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "40", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "7.2", + "地形增加系数.河网": "", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "200", + "地形增加系数.高山": "150", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "4.6", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "11.8", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "20", + "地形增加系数.山地": "80", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "3", + "综合增加系数.高山": "", + "项目": "工地运输拖拉机、汽车运输(不含装卸,沙漠地形没有正式公路时使用)", + "地形增加系数.沙漠": "40", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "", + "地形增加系数.河网": "", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "", + "地形增加系数.高山": "", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "4.6", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "4.6", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "5", + "地形增加系数.山地": "10", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "4", + "综合增加系数.高山": "", + "项目": "土石方工程(不含机械费)", + "地形增加系数.沙漠": "10", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "10", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "1.8", + "地形增加系数.河网": "5", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "25", + "地形增加系数.高山": "20", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "1.15", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "2.95", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "10", + "地形增加系数.山地": "20", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "5", + "综合增加系数.高山": "", + "项目": "基础工程", + "地形增加系数.沙漠": "30", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "40", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "7.2", + "地形增加系数.河网": "10", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "50", + "地形增加系数.高山": "40", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "2.3", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "9.5", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "20", + "地形增加系数.山地": "70", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "6", + "综合增加系数.高山": "", + "项目": "杆塔工程", + "地形增加系数.沙漠": "50", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "70", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "12.6", + "地形增加系数.河网": "20", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "120", + "地形增加系数.高山": "110", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "4.6", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "17.2", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "15", + "地形增加系数.山地": "100", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "7", + "综合增加系数.高山": "", + "项目": "架线工程一般放、紧线(不包括跨越架设、拦河线安装)", + "地形增加系数.沙漠": "35", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "40", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "7.2", + "地形增加系数.河网": "10", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "170", + "地形增加系数.高山": "150", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "3.45", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "10.65", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "5", + "地形增加系数.山地": "40", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "8", + "综合增加系数.高山": "", + "项目": "架线工程张力机械放、紧线(不包括跨越架设、拦河线安装)", + "地形增加系数.沙漠": "15", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "20", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "3.6", + "地形增加系数.河网": "5", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "90", + "地形增加系数.高山": "80", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "1.15", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "4.75", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "5", + "地形增加系数.山地": "30", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "9", + "综合增加系数.高山": "", + "项目": "架线工程光缆接续(不包括测量)", + "地形增加系数.沙漠": "10", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "15", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "2.7", + "地形增加系数.河网": "5", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "80", + "地形增加系数.高山": "60", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "1.15", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "3.85", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "5", + "地形增加系数.山地": "20", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "10", + "综合增加系数.高山": "", + "项目": "附件工程", + "地形增加系数.沙漠": "10", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "10", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "1.8", + "地形增加系数.河网": "5", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "60", + "地形增加系数.高山": "50", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "1.15", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "2.95", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "10", + "地形增加系数.山地": "20", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "11", + "综合增加系数.高山": "", + "项目": "辅助工程(基础辅助)打桩,护坡、挡土墙及排洪沟砌筑,喷射混凝土护坡", + "地形增加系数.沙漠": "30", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "40", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "7.2", + "地形增加系数.河网": "10", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "50", + "地形增加系数.高山": "40", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "2.3", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "9.5", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "5", + "地形增加系数.山地": "20", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "12", + "综合增加系数.高山": "", + "项目": "辅助工程(杆塔辅助)杆塔标志牌,防鸟装置,防坠落装置,避雷器安装,监测装置安装调测", + "地形增加系数.沙漠": "10", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "10", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "1.8", + "地形增加系数.河网": "5", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "60", + "地形增加系数.高山": "50", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "1.15", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "2.95", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "40", + "地形增加系数.山地": "150", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "13", + "综合增加系数.高山": "", + "项目": "辅助工程(其他)索道站支架、绳索及附件运输(地形选择按架设索道站所处地带实际地形为准)", + "地形增加系数.沙漠": "", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "", + "地形增加系数.河网": "", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "400", + "地形增加系数.高山": "300", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "9.2", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "9.2", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "地形增加系数.丘陵": "20", + "地形增加系数.山地": "70", + "地形比例.河网": "", + "综合增加系数.峻岭": "", + "序号": "14", + "综合增加系数.高山": "", + "项目": "辅助工程(其他)索道设施安装(地形选择按架设索道站所处地带实际地形为准)", + "地形增加系数.沙漠": "", + "综合增加系数.沙漠": "", + "地形比例.高山": "", + "地形增加系数.泥沼": "", + "地形比例.山地": "", + "地形比例.丘陵": "23", + "综合增加系数.泥沼": "", + "地形增加系数.河网": "", + "地形比例.峻岭": "", + "综合增加系数.河网": "", + "地形比例.沙漠": "", + "地形增加系数.峻岭": "120", + "地形增加系数.高山": "110", + "综合增加系数.山地": "", + "综合增加系数.丘陵": "4.6", + "项目TDSTYLE": "font-weight:400;font-family:宋体;width:259px;", + "综合增加系数.合计": "4.6", + "地形比例.泥沼": "18" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "项目", + "columnLable": "项目", + "dataType": 259, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形增加系数.丘陵", + "columnLable": "地形增加系数.丘陵", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形增加系数.山地", + "columnLable": "地形增加系数.山地", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形增加系数.高山", + "columnLable": "地形增加系数.高山", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形增加系数.峻岭", + "columnLable": "地形增加系数.峻岭", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形增加系数.泥沼", + "columnLable": "地形增加系数.泥沼", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形增加系数.河网", + "columnLable": "地形增加系数.河网", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形增加系数.沙漠", + "columnLable": "地形增加系数.沙漠", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形比例.丘陵", + "columnLable": "地形比例.丘陵", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形比例.山地", + "columnLable": "地形比例.山地", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形比例.高山", + "columnLable": "地形比例.高山", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形比例.峻岭", + "columnLable": "地形比例.峻岭", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形比例.泥沼", + "columnLable": "地形比例.泥沼", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形比例.河网", + "columnLable": "地形比例.河网", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形比例.沙漠", + "columnLable": "地形比例.沙漠", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "综合增加系数.丘陵", + "columnLable": "综合增加系数.丘陵", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "综合增加系数.山地", + "columnLable": "综合增加系数.山地", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "综合增加系数.高山", + "columnLable": "综合增加系数.高山", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "综合增加系数.峻岭", + "columnLable": "综合增加系数.峻岭", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "综合增加系数.泥沼", + "columnLable": "综合增加系数.泥沼", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "综合增加系数.河网", + "columnLable": "综合增加系数.河网", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "综合增加系数.沙漠", + "columnLable": "综合增加系数.沙漠", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "综合增加系数.合计", + "columnLable": "综合增加系数.合计", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "附表一", + "middleHeader": "", + "rightHeader": "%", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "77" + }, + { + "fileName": "项目", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "项目", + "show": "1", + "width": "259" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形增加系数.丘陵", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "丘陵", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形增加系数.山地", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "山地", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形增加系数.高山", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "高山", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形增加系数.峻岭", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "峻岭", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形增加系数.泥沼", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "泥沼", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形增加系数.河网", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "河网", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形增加系数.沙漠", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "沙漠", + "show": "1", + "width": "80" + } + ], + "isZeroShow": "0", + "name": "地形增加系数", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形比例.平地", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "平地", + "show": "0", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形比例.丘陵", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "丘陵", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形比例.山地", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "山地", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形比例.高山", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "高山", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形比例.峻岭", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "峻岭", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形比例.泥沼", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "泥沼", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形比例.河网", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "河网", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "地形比例.沙漠", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "沙漠", + "show": "1", + "width": "77" + } + ], + "isZeroShow": "0", + "name": "地形比例", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合增加系数.丘陵", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "丘陵", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合增加系数.山地", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "山地", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合增加系数.高山", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "高山", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合增加系数.峻岭", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "峻岭", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合增加系数.泥沼", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "泥沼", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合增加系数.河网", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "河网", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合增加系数.沙漠", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "沙漠", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合增加系数.合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "77" + } + ], + "isZeroShow": "0", + "name": "综合增加系数", + "show": "1" + } + ], + "fixColNum": "0", + "fixRowNum": "2", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "附表一", + "subTitleRightText": "%" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "综合地形增加系数计算表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "综合地形增加系数计算表_SPAN": { + "tableName": "综合地形增加系数计算表_SPAN", + "rows": [ + { + "itemMap": { + "TABLENAME": "综合地形增加系数计算表_SPAN", + "EXTENDVALUE": "{colspan:24,rowspan:1,colIndex:0,rowIndex:0}", + "SHOWORDER": 0, + "EXTENDNAME": 0 + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "PRJVIEWID", + "columnLable": "PRJVIEWID", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "TABLENAME", + "columnLable": "TABLENAME", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "EXTENDNAME", + "columnLable": "EXTENDNAME", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "EXTENDVALUE", + "columnLable": "EXTENDVALUE", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "SHOWORDER", + "columnLable": "SHOWORDER", + "dataType": 0, + "columnIndex": 0 + } + ], + "repeatColumn": false + }, + "输电线路工程装置性材料统计表": { + "tableName": "输电线路工程装置性材料统计表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "一", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "架空输电线路本体工程", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "26.55", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "11280", + "材料名称及规格": "路基箱租赁及铺设", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "块*天", + "单重": "30", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "299484", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "338400", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "4960", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "3", + "材料名称及规格": "220kV避雷器 Y10W-204/532W,附在线监测仪", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "14880", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "279.11", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "120", + "材料名称及规格": "防鸟盒", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "个", + "单重": "3.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "33493.2", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "420", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "80", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "152.5", + "材料名称及规格": "块石", + "损耗率%": "2.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "1600", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "12505", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "250100", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "693.74", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "24", + "材料名称及规格": "悬垂Ⅰ串 2XZ11CLC-4000-12P(H)-1A", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "套", + "单重": "20.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "16899.51", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "499.38", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "258.21", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "16", + "材料名称及规格": "跳线串 2TP-20-07PZ", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "套", + "单重": "8.2", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "4193.33", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "133.168", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "654.12", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "16", + "材料名称及规格": "跳线串 2TP-25-07PRS", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "套", + "单重": "36.1", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "10622.91", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "586.264", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "1387.48", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "36", + "材料名称及规格": "悬垂双串 2XZ22CLCS-4045-12P(H)-1D", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "套", + "单重": "35", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "50698.52", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "1278.9", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "74.42", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "99", + "材料名称及规格": "交流盘形悬式瓷绝缘子 U70BP/155T,320,550", + "损耗率%": "2", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "件", + "单重": "3.8", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "7514.93", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "383.724", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "132.92", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "4", + "材料名称及规格": "地线用盘形悬式瓷绝缘子 UE70CN,160,200,160", + "损耗率%": "2", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "件", + "单重": "3.8", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "542.31", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "15.504", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "509.65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "12", + "材料名称及规格": "单联耐张 2MP11Y-4000-07P", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "套", + "单重": "10.2", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "6207.54", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "124.236", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "57.92", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "3552", + "材料名称及规格": "线路电瓷 玻璃绝缘子 U120BP/146-2", + "损耗率%": "2", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "只", + "单重": "6.1", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "209846.48", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "22100.544", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "146.29", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "12", + "材料名称及规格": "线路 间隔棒 FJZ-240/24", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "件", + "单重": "3.8", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "1781.81", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "46.284", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "115.26", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "378", + "材料名称及规格": "导线防振锤 FDNJ-4/5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "件", + "单重": "5.6", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "44221.8", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "2148.552", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "491.47", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "2", + "材料名称及规格": "地线耐张串 BN4Y-BG-21Z", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "套", + "单重": "16.2", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "997.68", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "32.886", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "33.03", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "99", + "材料名称及规格": "线路 间隔棒 FJG-220/24", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "件", + "单重": "3.8", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "3319.02", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "381.843", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "1061.78", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "21", + "材料名称及规格": "双联耐张 2NZ21Y-4040-12P(H)R", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "套", + "单重": "59.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "22631.84", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "1268.243", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "1061.78", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "45", + "材料名称及规格": "双联耐张 2NZ21Y-4040-12PZ", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "套", + "单重": "59.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "48496.8", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "2717.663", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "15000", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "59.2", + "材料名称及规格": "钢芯铝绞线 JL/G1A-300/40", + "损耗率%": "0.8", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "895104", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "59673.6", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "427.43", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "16", + "材料名称及规格": "光缆接头盒,OPGW光缆用,3", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "个", + "单重": "1.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "6941.46", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "24.36", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "117.79", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "8", + "材料名称及规格": "光缆余缆架", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "个", + "单重": "1.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "956.45", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "12.18", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "107.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "8", + "材料名称及规格": "光缆余缆架1", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "个", + "单重": "1.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "869.65", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "12.18", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "48.85", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "8", + "材料名称及规格": "光缆卡具, OPGW光缆用,普通杆用", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "个", + "单重": "1.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "396.66", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "12.18", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "40.71", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "160", + "材料名称及规格": "光缆卡具, OPGW光缆用,塔用", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "个", + "单重": "2.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "6611.3", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "406", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "54.87", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "132", + "材料名称及规格": "光缆防振金具 ,OPGW光缆用,预绞丝式,14.2/15.5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "个", + "单重": "2.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "7351.48", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "334.95", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "544.07", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "8", + "材料名称及规格": "光缆耐张串, 70kN,OPGW用单线夹,双联绝缘,14.2/15.5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "个", + "单重": "30.74", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "4417.85", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "249.609", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "287.05", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "44", + "材料名称及规格": "光缆耐张串 ,120kN,OPGW用单线夹,非绝缘,14.2/15.5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "个", + "单重": "16.2", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "12819.65", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "723.492", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "571.05", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "40", + "材料名称及规格": "光缆悬垂串 120kN,OPGW用双线夹,非绝缘,14.2/15.5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "个", + "单重": "15.2", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "23184.63", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "617.12", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "54.87", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "64", + "材料名称及规格": "光缆防振金具 OPGW光缆用,预绞丝式,14.2/15.5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "个", + "单重": "3.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "3564.36", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "227.36", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "3959", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "7.161", + "材料名称及规格": "镀锌圆钢 综合", + "损耗率%": "6", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "30051.42", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "7590.66", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "6018", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "9.632", + "材料名称及规格": "地脚螺栓", + "损耗率%": "0.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "58255.2", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "9680.16", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "5.51", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "2040.48", + "材料名称及规格": "超声波测管", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "kg", + "单重": "1", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "11411.69", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "2071.087", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "6018", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "0.06", + "材料名称及规格": "爬梯", + "损耗率%": "0.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "362.89", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "60.3", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "53.51", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "768", + "材料名称及规格": "线路电瓷 玻璃绝缘子 U70BP/146-2", + "损耗率%": "2", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "只", + "单重": "3.8", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "41917.59", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "2976.768", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "45.86", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "12", + "材料名称及规格": "线路 接续管(钢芯铝绞线用) JYD-300/40(BY-300Q)", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "件", + "单重": "1.4", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "558.57", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "17.052", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "16.77", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "18", + "材料名称及规格": "线路 修补管 JX-300/40", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "件", + "单重": "0.6", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "306.39", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "10.962", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "3959", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "68.469", + "材料名称及规格": "普通圆钢 综合", + "损耗率%": "6", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "287332.9", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "72577.14", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "19000", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "17.32", + "材料名称及规格": "OPGW光缆 OPGW-36B1-125", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "km", + "单重": "648", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "329080", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "11223.36", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "246.43", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "202.714", + "材料名称及规格": "商品混凝土 C25", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "2714.45", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "50704.13", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "558510.873", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "246.43", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "39.944", + "材料名称及规格": "商品混凝土(立柱) C25", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "2714.45", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "9991.05", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "110052.381", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "(甲)", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "6800", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "248.77", + "材料名称及规格": "塔材 角钢塔", + "损耗率%": "0.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "1700094.18", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "250013.85", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "74.62", + "材料名称及规格": "混凝土 C15", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "21.491", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "8935.96", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "22565.55", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "37.982", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "2839.15", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "67702.915", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "80", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "65.143", + "材料名称及规格": "碎石 粒径40mm以内", + "损耗率%": "10", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "1600", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "5732.58", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "114651.68", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "13.432", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "55.07", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "13432", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "700.796", + "材料名称及规格": "混凝土(基础) C25", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "252.287", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "104900.93", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "264901.35", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "313.256", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "23415.89", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "558378.82", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "80", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "648.937", + "材料名称及规格": "碎石 粒径40mm以内", + "损耗率%": "10", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "1600", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "57106.46", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "1142129.12", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "126.143", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "517.19", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "126143", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "73.384", + "材料名称及规格": "混凝土(立柱) C25", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "26.418", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "10984.6", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "27738.9", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "32.803", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "2452.02", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "58471.348", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "80", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "67.954", + "材料名称及规格": "碎石 粒径40mm以内", + "损耗率%": "10", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "1600", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "5979.95", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "119599.04", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "13.209", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "54.16", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "13209", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "13.666", + "材料名称及规格": "混凝土(护壁) C25", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "4.92", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "2045.74", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "5166", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "6.109", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "456.65", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "10889.293", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "80", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "12.654", + "材料名称及规格": "碎石 粒径40mm以内", + "损耗率%": "10", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "1600", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "1113.55", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "22271.04", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "2.46", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "10.09", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "2460", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "20", + "材料名称及规格": "水泥砂浆 M7.5", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "5.36", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "2228.69", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "5628", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "23.6", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "1764.1", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "42067", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "4.4", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "18.04", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "4400", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "4.5", + "材料名称及规格": "水泥砂浆 M5", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "0.945", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "392.93", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "992.25", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "5.31", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "396.92", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "9465.075", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "0.99", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "4.06", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "990", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "小计:", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "4502024.94", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "4340966.193", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "合计:", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "4502024.94", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "4340966.193", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "材料名称及规格", + "columnLable": "材料名称及规格", + "dataType": 189, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单重", + "columnLable": "单重", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价", + "columnLable": "单价", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "设计用量", + "columnLable": "设计用量", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "损耗率%", + "columnLable": "损耗率%", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "总重", + "columnLable": "总重", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "总价", + "columnLable": "总价", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "附表二", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "材料名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料名称及规格", + "show": "1", + "width": "189" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "设计用量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设计用量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "损耗率", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "损耗率%", + "show": "1", + "width": "56" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "63" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "总重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "总价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总价", + "show": "1", + "width": "100" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "附表二", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "输电线路工程装置性材料统计表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程甲供主材汇总表": { + "tableName": "架空输电线路工程甲供主材汇总表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "一", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "架空输电线路本体工程", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "4960", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "3", + "材料名称及规格": "220kV避雷器 Y10W-204/532W,附在线监测仪", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "台", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "14880", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "279.11", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "120", + "材料名称及规格": "防鸟盒", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "个", + "单重": "3.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "33493.2", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "420", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "693.74", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "24", + "材料名称及规格": "悬垂Ⅰ串 2XZ11CLC-4000-12P(H)-1A", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "套", + "单重": "20.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "16899.51", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "499.38", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "258.21", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "16", + "材料名称及规格": "跳线串 2TP-20-07PZ", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "套", + "单重": "8.2", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "4193.33", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "133.168", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "654.12", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "16", + "材料名称及规格": "跳线串 2TP-25-07PRS", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "套", + "单重": "36.1", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "10622.91", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "586.264", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "1387.48", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "36", + "材料名称及规格": "悬垂双串 2XZ22CLCS-4045-12P(H)-1D", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "套", + "单重": "35", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "50698.52", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "1278.9", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "509.65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "12", + "材料名称及规格": "单联耐张 2MP11Y-4000-07P", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "套", + "单重": "10.2", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "6207.54", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "124.236", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "57.92", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "3552", + "材料名称及规格": "线路电瓷 玻璃绝缘子 U120BP/146-2", + "损耗率%": "2", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "只", + "单重": "6.1", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "209846.48", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "22100.544", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "146.29", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "12", + "材料名称及规格": "线路 间隔棒 FJZ-240/24", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "件", + "单重": "3.8", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "1781.81", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "46.284", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "115.26", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "378", + "材料名称及规格": "导线防振锤 FDNJ-4/5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "件", + "单重": "5.6", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "44221.8", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "2148.552", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "491.47", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "2", + "材料名称及规格": "地线耐张串 BN4Y-BG-21Z", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "套", + "单重": "16.2", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "997.68", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "32.886", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "33.03", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "99", + "材料名称及规格": "线路 间隔棒 FJG-220/24", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "件", + "单重": "3.8", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "3319.02", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "381.843", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "1061.78", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "21", + "材料名称及规格": "双联耐张 2NZ21Y-4040-12P(H)R", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "套", + "单重": "59.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "22631.84", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "1268.243", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "1061.78", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "45", + "材料名称及规格": "双联耐张 2NZ21Y-4040-12PZ", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "套", + "单重": "59.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "48496.8", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "2717.663", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "15000", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "59.2", + "材料名称及规格": "钢芯铝绞线 JL/G1A-300/40", + "损耗率%": "0.8", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "895104", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "59673.6", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "53.51", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "768", + "材料名称及规格": "线路电瓷 玻璃绝缘子 U70BP/146-2", + "损耗率%": "2", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "只", + "单重": "3.8", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "41917.59", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "2976.768", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "45.86", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "12", + "材料名称及规格": "线路 接续管(钢芯铝绞线用) JYD-300/40(BY-300Q)", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "件", + "单重": "1.4", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "558.57", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "17.052", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "16.77", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "18", + "材料名称及规格": "线路 修补管 JX-300/40", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "件", + "单重": "0.6", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "306.39", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "10.962", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "19000", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "17.32", + "材料名称及规格": "OPGW光缆 OPGW-36B1-125", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "km", + "单重": "648", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "329080", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "11223.36", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "6800", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "248.77", + "材料名称及规格": "塔材 角钢塔", + "损耗率%": "0.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "1700094.18", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "250013.85", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "小计:", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "3435351.18", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "355653.554", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "合计:", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "3435351.18", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "355653.554", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "材料名称及规格", + "columnLable": "材料名称及规格", + "dataType": 189, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单重", + "columnLable": "单重", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价", + "columnLable": "单价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "设计用量", + "columnLable": "设计用量", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "损耗率%", + "columnLable": "损耗率%", + "dataType": 50, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "总重", + "columnLable": "总重", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "总价", + "columnLable": "总价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "材料名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料名称及规格", + "show": "1", + "width": "189" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.单重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "设计用量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设计用量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "损耗率(%)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "损耗率%", + "show": "1", + "width": "50" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "63" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.总重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(含税).合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总价", + "show": "1", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(不含税).单价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(不含税).市场单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(不含税).单价价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(不含税).合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(不含税).市场合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(不含税).合价价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "价格(不含税)", + "show": "0" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(含税).市场单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(含税).单价价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(含税).合价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(含税).市场合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(含税).合价价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "价格(含税)", + "show": "1" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "80" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装甲供装置性材料汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程乙供主材汇总表": { + "tableName": "架空输电线路工程乙供主材汇总表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "一", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "架空输电线路本体工程", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "26.55", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "11280", + "材料名称及规格": "路基箱租赁及铺设", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "块*天", + "单重": "30", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "299484", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "338400", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "80", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "152.5", + "材料名称及规格": "块石", + "损耗率%": "2.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "1600", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "12505", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "250100", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "74.42", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "99", + "材料名称及规格": "交流盘形悬式瓷绝缘子 U70BP/155T,320,550", + "损耗率%": "2", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "件", + "单重": "3.8", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "7514.93", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "383.724", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "132.92", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "4", + "材料名称及规格": "地线用盘形悬式瓷绝缘子 UE70CN,160,200,160", + "损耗率%": "2", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "件", + "单重": "3.8", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "542.31", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "15.504", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "427.43", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "16", + "材料名称及规格": "光缆接头盒,OPGW光缆用,3", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "个", + "单重": "1.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "6941.46", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "24.36", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "117.79", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "8", + "材料名称及规格": "光缆余缆架", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "个", + "单重": "1.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "956.45", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "12.18", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "107.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "8", + "材料名称及规格": "光缆余缆架1", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "个", + "单重": "1.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "869.65", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "12.18", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "48.85", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "8", + "材料名称及规格": "光缆卡具, OPGW光缆用,普通杆用", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "个", + "单重": "1.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "396.66", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "12.18", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "40.71", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "160", + "材料名称及规格": "光缆卡具, OPGW光缆用,塔用", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "个", + "单重": "2.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "6611.3", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "406", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "54.87", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "132", + "材料名称及规格": "光缆防振金具 ,OPGW光缆用,预绞丝式,14.2/15.5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "个", + "单重": "2.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "7351.48", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "334.95", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "544.07", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "8", + "材料名称及规格": "光缆耐张串, 70kN,OPGW用单线夹,双联绝缘,14.2/15.5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "个", + "单重": "30.74", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "4417.85", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "249.609", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "287.05", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "44", + "材料名称及规格": "光缆耐张串 ,120kN,OPGW用单线夹,非绝缘,14.2/15.5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "个", + "单重": "16.2", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "12819.65", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "723.492", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "571.05", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "40", + "材料名称及规格": "光缆悬垂串 120kN,OPGW用双线夹,非绝缘,14.2/15.5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "个", + "单重": "15.2", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "23184.63", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "617.12", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "54.87", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "64", + "材料名称及规格": "光缆防振金具 OPGW光缆用,预绞丝式,14.2/15.5", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "个", + "单重": "3.5", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "3564.36", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "227.36", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "3959", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "7.161", + "材料名称及规格": "镀锌圆钢 综合", + "损耗率%": "6", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "30051.42", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "7590.66", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "6018", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "9.632", + "材料名称及规格": "地脚螺栓", + "损耗率%": "0.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "58255.2", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "9680.16", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "5.51", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "2040.48", + "材料名称及规格": "超声波测管", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "kg", + "单重": "1", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "11411.69", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "2071.087", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "6018", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "0.06", + "材料名称及规格": "爬梯", + "损耗率%": "0.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "362.89", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "60.3", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "3959", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "68.469", + "材料名称及规格": "普通圆钢 综合", + "损耗率%": "6", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "287332.9", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "72577.14", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "246.43", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "202.714", + "材料名称及规格": "商品混凝土 C25", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "2714.45", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "50704.13", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "558510.873", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "246.43", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "39.944", + "材料名称及规格": "商品混凝土(立柱) C25", + "损耗率%": "1.5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "2714.45", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "9991.05", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "110052.381", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "74.62", + "材料名称及规格": "混凝土 C15", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "21.491", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "8935.96", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "22565.55", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "37.982", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "2839.15", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "67702.915", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "80", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "65.143", + "材料名称及规格": "碎石 粒径40mm以内", + "损耗率%": "10", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "1600", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "5732.58", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "114651.68", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "13.432", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "55.07", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "13432", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "700.796", + "材料名称及规格": "混凝土(基础) C25", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "252.287", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "104900.93", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "264901.35", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "313.256", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "23415.89", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "558378.82", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "80", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "648.937", + "材料名称及规格": "碎石 粒径40mm以内", + "损耗率%": "10", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "1600", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "57106.46", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "1142129.12", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "126.143", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "517.19", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "126143", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "73.384", + "材料名称及规格": "混凝土(立柱) C25", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "26.418", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "10984.6", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "27738.9", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "32.803", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "2452.02", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "58471.348", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "80", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "67.954", + "材料名称及规格": "碎石 粒径40mm以内", + "损耗率%": "10", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "1600", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "5979.95", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "119599.04", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "13.209", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "54.16", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "13209", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "13.666", + "材料名称及规格": "混凝土(护壁) C25", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "4.92", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "2045.74", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "5166", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "6.109", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "456.65", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "10889.293", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "80", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "12.654", + "材料名称及规格": "碎石 粒径40mm以内", + "损耗率%": "10", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "1600", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "1113.55", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "22271.04", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "2.46", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "10.09", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "2460", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "20", + "材料名称及规格": "水泥砂浆 M7.5", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "5.36", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "2228.69", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "5628", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "23.6", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "1764.1", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "42067", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "4.4", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "18.04", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "4400", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "4.5", + "材料名称及规格": "水泥砂浆 M5", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "396", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "0.945", + "材料名称及规格": "普通硅酸盐水泥 42.5", + "损耗率%": "5", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "392.93", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "992.25", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "65", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "5.31", + "材料名称及规格": "中砂", + "损耗率%": "15", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "m?", + "单重": "1550", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "396.92", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "9465.075", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "4.1", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "0.99", + "材料名称及规格": "水", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "t", + "单重": "1000", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "4.06", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "990", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "小计:", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "1066673.76", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "3985312.639", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "总重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "序号": "", + "总价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "材料名称及规格": "合计:", + "损耗率%": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位": "", + "单重": "", + "单重TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "总价": "1066673.76", + "材料名称及规格TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "总重": "3985312.639", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "损耗率%TDSTYLE": "font-weight:400;font-family:宋体;width:50px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "材料名称及规格", + "columnLable": "材料名称及规格", + "dataType": 189, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单重", + "columnLable": "单重", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价", + "columnLable": "单价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "设计用量", + "columnLable": "设计用量", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "损耗率%", + "columnLable": "损耗率%", + "dataType": 50, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "总重", + "columnLable": "总重", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "总价", + "columnLable": "总价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "材料名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料名称及规格", + "show": "1", + "width": "189" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.单重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(不含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "设计用量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设计用量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "损耗率(%)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "损耗率%", + "show": "1", + "width": "50" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "63" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.总重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(不含税).合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总价", + "show": "1", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(不含税).单价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(不含税).市场单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(不含税).单价价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(不含税).合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(不含税).市场合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(不含税).合价价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "价格(不含税)", + "show": "0" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(含税).市场单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "价格(含税).单价价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(含税).合价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(含税).市场合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "价格(含税).合价价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "价格(含税)", + "show": "1" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "80" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装乙供装置性材料汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程甲供主材价差汇总表": { + "tableName": "架空输电线路工程甲供主材价差汇总表", + "rows": [ + { + "itemMap": { + "合价(含税).价差": "", + "合价(含税).预算价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "编号": "一", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "架空输电线路本体工程", + "单位": "", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "损耗率(%)": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "合价(含税).市场价": "", + "单价(含税).市场价": "", + "单价(含税).预算价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "合价(含税).价差": "425711", + "合价(含税).预算价": "895104", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "59.2", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "钢芯铝绞线 JL/G1A-300/40", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "损耗率(%)": "0.8", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "合价(含税).市场价": "1320815", + "单价(含税).市场价": "22134", + "单价(含税).预算价": "15000", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "合价(含税).价差": "3455", + "合价(含税).预算价": "41918", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "768", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "线路电瓷 玻璃绝缘子 U70BP/146-2", + "单位": "只", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "损耗率(%)": "2", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "合价(含税).市场价": "45372", + "单价(含税).市场价": "57.92", + "单价(含税).预算价": "53.51", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "合价(含税).价差": "-88630", + "合价(含税).预算价": "329080", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "17.32", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "OPGW光缆 OPGW-36B1-125", + "单位": "km", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "损耗率(%)": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "合价(含税).市场价": "240450", + "单价(含税).市场价": "13882.8", + "单价(含税).预算价": "19000", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "合价(含税).价差": "697839", + "合价(含税).预算价": "1700094", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "248.77", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "塔材 角钢塔", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "损耗率(%)": "0.5", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "合价(含税).市场价": "2397933", + "单价(含税).市场价": "9591.2", + "单价(含税).预算价": "6800", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "合价(含税).价差": "", + "合价(含税).预算价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "", + "单位": "", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "损耗率(%)": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "合价(含税).市场价": "", + "单价(含税).市场价": "", + "单价(含税).预算价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "合价(含税).价差": "1038375", + "合价(含税).预算价": "2966196", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "小计:", + "单位": "", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "损耗率(%)": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "合价(含税).市场价": "4004571", + "单价(含税).市场价": "", + "单价(含税).预算价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "合价(含税).价差": "", + "合价(含税).预算价": "", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "", + "单位": "", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "损耗率(%)": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "合价(含税).市场价": "", + "单价(含税).市场价": "", + "单价(含税).预算价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "合价(含税).价差": "1038375", + "合价(含税).预算价": "2966196", + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "合计:", + "单位": "", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "损耗率(%)": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "合价(含税).市场价": "4004571", + "单价(含税).市场价": "", + "单价(含税).预算价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "编号", + "columnLable": "编号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "材料名称", + "columnLable": "材料名称", + "dataType": 189, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "设计用量", + "columnLable": "设计用量", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "损耗率(%)", + "columnLable": "损耗率(%)", + "dataType": 50, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价(含税).预算价", + "columnLable": "单价(含税).预算价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价(含税).市场价", + "columnLable": "单价(含税).市场价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价(含税).预算价", + "columnLable": "合价(含税).预算价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价(含税).市场价", + "columnLable": "合价(含税).市场价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价(含税).价差", + "columnLable": "合价(含税).价差", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "56" + }, + { + "fileName": "材料名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料名称", + "show": "1", + "width": "189" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "设计用量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设计用量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "损耗率(%)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "损耗率(%)", + "show": "1", + "width": "50" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "63" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "单价(不含税)", + "show": "0" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "合价(不含税)", + "show": "0" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "单价(含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "合价(含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.单重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重", + "show": "0", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.总重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "0", + "width": "84" + } + ], + "isZeroShow": "0", + "name": "重量", + "show": "0" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "98" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装甲供装置性材料价差汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程乙供主材价差汇总表": { + "tableName": "架空输电线路工程乙供主材价差汇总表", + "rows": [ + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "编号": "一", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "架空输电线路本体工程", + "单位": "", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "", + "损耗率(%)": "", + "合价(不含税).价差": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "", + "单价(不含税).市场价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "152.5", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "块石", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "24697", + "损耗率(%)": "2.5", + "合价(不含税).价差": "12192", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "80", + "单价(不含税).市场价": "158", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "12505" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "7.161", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "镀锌圆钢 综合", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "51859", + "损耗率(%)": "6", + "合价(不含税).价差": "21808", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "3959", + "单价(不含税).市场价": "6832", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "30051" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "9.632", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "地脚螺栓", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "77616", + "损耗率(%)": "0.5", + "合价(不含税).价差": "19360", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "6018", + "单价(不含税).市场价": "8018", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "58255" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "0.06", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "爬梯", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "483", + "损耗率(%)": "0.5", + "合价(不含税).价差": "121", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "6018", + "单价(不含税).市场价": "8018", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "363" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "68.469", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "普通圆钢 综合", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "328847", + "损耗率(%)": "6", + "合价(不含税).价差": "41514", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "3959", + "单价(不含税).市场价": "4531", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "287333" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "202.714", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "商品混凝土 C25", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "121655", + "损耗率(%)": "1.5", + "合价(不含税).价差": "70950", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "246.43", + "单价(不含税).市场价": "591.26", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "50704" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "39.944", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "商品混凝土(立柱) C25", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "23972", + "损耗率(%)": "1.5", + "合价(不含税).价差": "13980", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "246.43", + "单价(不含税).市场价": "591.26", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "9991" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "74.62", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "混凝土 C15", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "", + "损耗率(%)": "", + "合价(不含税).价差": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "", + "单价(不含税).市场价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "21.491", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "普通硅酸盐水泥 42.5", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "13579", + "损耗率(%)": "5", + "合价(不含税).价差": "4643", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "396", + "单价(不含税).市场价": "601.77", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "8936" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "37.982", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "中砂", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "10265", + "损耗率(%)": "15", + "合价(不含税).价差": "7425", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "65", + "单价(不含税).市场价": "235", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "2839" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "65.143", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "碎石 粒径40mm以内", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "10992", + "损耗率(%)": "10", + "合价(不含税).价差": "5260", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "80", + "单价(不含税).市场价": "153.4", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "5733" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "700.796", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "混凝土(基础) C25", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "", + "损耗率(%)": "", + "合价(不含税).价差": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "", + "单价(不含税).市场价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "252.287", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "普通硅酸盐水泥 42.5", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "159410", + "损耗率(%)": "5", + "合价(不含税).价差": "54509", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "396", + "单价(不含税).市场价": "601.77", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "104901" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "313.256", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "中砂", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "84657", + "损耗率(%)": "15", + "合价(不含税).价差": "61242", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "65", + "单价(不含税).市场价": "235", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "23416" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "648.937", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "碎石 粒径40mm以内", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "109502", + "损耗率(%)": "10", + "合价(不含税).价差": "52395", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "80", + "单价(不含税).市场价": "153.4", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "57106" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "73.384", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "混凝土(立柱) C25", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "", + "损耗率(%)": "", + "合价(不含税).价差": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "", + "单价(不含税).市场价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "26.418", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "普通硅酸盐水泥 42.5", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "16692", + "损耗率(%)": "5", + "合价(不含税).价差": "5708", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "396", + "单价(不含税).市场价": "601.77", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "10985" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "32.803", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "中砂", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "8865", + "损耗率(%)": "15", + "合价(不含税).价差": "6413", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "65", + "单价(不含税).市场价": "235", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "2452" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "67.954", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "碎石 粒径40mm以内", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "11467", + "损耗率(%)": "10", + "合价(不含税).价差": "5487", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "80", + "单价(不含税).市场价": "153.4", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "5980" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "13.666", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "混凝土(护壁) C25", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "", + "损耗率(%)": "", + "合价(不含税).价差": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "", + "单价(不含税).市场价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "4.92", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "普通硅酸盐水泥 42.5", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "3109", + "损耗率(%)": "5", + "合价(不含税).价差": "1063", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "396", + "单价(不含税).市场价": "601.77", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "2046" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "6.109", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "中砂", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "1651", + "损耗率(%)": "15", + "合价(不含税).价差": "1194", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "65", + "单价(不含税).市场价": "235", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "457" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "12.654", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "碎石 粒径40mm以内", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "2135", + "损耗率(%)": "10", + "合价(不含税).价差": "1022", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "80", + "单价(不含税).市场价": "153.4", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "1114" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "20", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "水泥砂浆 M7.5", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "", + "损耗率(%)": "", + "合价(不含税).价差": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "", + "单价(不含税).市场价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "5.36", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "普通硅酸盐水泥 42.5", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "3387", + "损耗率(%)": "5", + "合价(不含税).价差": "1158", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "396", + "单价(不含税).市场价": "601.77", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "2229" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "23.6", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "中砂", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "6378", + "损耗率(%)": "15", + "合价(不含税).价差": "4614", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "65", + "单价(不含税).市场价": "235", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "1764" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "4.5", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "水泥砂浆 M5", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "", + "损耗率(%)": "", + "合价(不含税).价差": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "", + "单价(不含税).市场价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "0.945", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "普通硅酸盐水泥 42.5", + "单位": "t", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "597", + "损耗率(%)": "5", + "合价(不含税).价差": "204", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "396", + "单价(不含税).市场价": "601.77", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "393" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "5.31", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "中砂", + "单位": "m?", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "1435", + "损耗率(%)": "15", + "合价(不含税).价差": "1038", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "65", + "单价(不含税).市场价": "235", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "397" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "", + "单位": "", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "", + "损耗率(%)": "", + "合价(不含税).价差": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "", + "单价(不含税).市场价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "小计:", + "单位": "", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "1073249", + "损耗率(%)": "", + "合价(不含税).价差": "393301", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "", + "单价(不含税).市场价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "679949" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "", + "单位": "", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "", + "损耗率(%)": "", + "合价(不含税).价差": "", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "", + "单价(不含税).市场价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "设计用量TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "设计用量": "", + "编号": "", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "材料名称": "合计:", + "单位": "", + "损耗率(%)TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "合价(不含税).市场价": "1073249", + "损耗率(%)": "", + "合价(不含税).价差": "393301", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:189px;", + "单价(不含税).预算价": "", + "单价(不含税).市场价": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "合价(不含税).预算价": "679949" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "编号", + "columnLable": "编号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "材料名称", + "columnLable": "材料名称", + "dataType": 189, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "设计用量", + "columnLable": "设计用量", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "损耗率(%)", + "columnLable": "损耗率(%)", + "dataType": 50, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价(不含税).预算价", + "columnLable": "单价(不含税).预算价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价(不含税).市场价", + "columnLable": "单价(不含税).市场价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价(不含税).预算价", + "columnLable": "合价(不含税).预算价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价(不含税).市场价", + "columnLable": "合价(不含税).市场价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价(不含税).价差", + "columnLable": "合价(不含税).价差", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "56" + }, + { + "fileName": "材料名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料名称", + "show": "1", + "width": "189" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "设计用量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设计用量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "损耗率(%)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "损耗率(%)", + "show": "1", + "width": "50" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "63" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "单价(不含税)", + "show": "0" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "合价(不含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "单价(含税)", + "show": "0" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "合价(含税)", + "show": "0" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.单重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重", + "show": "0", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.总重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "0", + "width": "84" + } + ], + "isZeroShow": "0", + "name": "重量", + "show": "0" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "98" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装乙供装置性材料价差汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "输电线路工程土石方量计算表": { + "tableName": "输电线路工程土石方量计算表", + "rows": [ + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "泥水坑", + "坑底长×宽m": "106.399", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "452.721", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "452.721", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "452.721", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "泥水坑", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "1", + "基础型式": "自立塔坑", + "每基坑数个": "3", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "泥水坑", + "坑底长×宽m": "132.826", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "514.555", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "514.555", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "514.555", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "泥水坑", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "1", + "基础型式": "自立塔坑", + "每基坑数个": "3", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "106.399", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "648.291", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "648.291", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "648.291", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "1", + "基础型式": "自立塔坑", + "每基坑数个": "3", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "142.492", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "691.576", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "691.576", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "691.576", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "4.4", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "0.036", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "0.036", + "坑深2m以内.基数": "1", + "基础型式": "自立塔坑", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.036", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "0.1", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "0.072", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "0.072", + "坑深2m以内.基数": "1", + "基础型式": "自立塔坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.036", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "0.1", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "97.298", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "416.082", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "416.082", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "416.082", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "1", + "基础型式": "自立塔坑", + "每基坑数个": "3", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "8.41", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "171.5", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "42.875", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "171.5", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "8.41", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "171.5", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "42.875", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "171.5", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "8.41", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "171.5", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "42.875", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "171.5", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "8.41", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "171.5", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "42.875", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "171.5", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "泥水坑", + "坑底长×宽m": "19.36", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "205", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "102.5", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "205", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "4.1", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "泥水坑", + "坑底长×宽m": "16.81", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "167.884", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "83.942", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "167.884", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "8.41", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "171.5", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "42.875", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "171.5", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "10.24", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "155.952", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "38.988", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.7", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "155.952" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "10.24", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "155.952", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "38.988", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.7", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "155.952" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "16.81", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "335.768", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "83.942", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "335.768", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "泥水坑", + "坑底长×宽m": "8.41", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "171.5", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "42.875", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "171.5", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "10.24", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "220.684", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "55.171", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.7", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "220.684" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "8.41", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "428.82", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "107.205", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "428.82", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "16.81", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "362.53", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "181.265", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "362.53", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "3.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "19.36", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "448.744", + "坑深2m以内.基数": "", + "基础型式": "自立塔坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "224.372", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "448.744", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "4.1", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "3.08", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.77", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "3.08", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "9", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "15.396", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "3.849", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "15.396", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "9", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "36.948", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "9.237", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "36.948", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "9", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "0.786", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.393", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "0.786", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "7.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "3.142", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "1.571", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "3.142", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "7.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "7.854", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "3.927", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "7.854", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "7.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "0.786", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.393", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "0.786", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "7.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "3.142", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "1.571", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "3.142", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "7.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "7.854", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "3.927", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "7.854", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "7.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "0.382", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.191", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "0.382" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "6.028", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "3.014", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "6.028" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "0.382", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.191", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "0.382" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "6.028", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "2", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "3.014", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "6.028" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "1.272", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.318", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "1.272" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "11.56", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "2.89", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "11.56" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "0.764", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.191", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "0.764" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "12.056", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "3.014", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "12.056" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "0.764", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.191", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "0.764" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "12.06", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "3.015", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "12.06" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "2.536", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.634", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "2.536", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "4.4", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "29.632", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "7.408", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "29.632", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "4.4", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "1.272", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.318", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "1.272" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "11.552", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "2.888", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "2.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "11.552" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "3.08", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.77", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "3.08", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "9", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "52.34", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "13.085", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "52.34", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "9", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "2.1", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.525", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "2.1", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "7.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "5.456", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "1.364", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "5.456", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "7.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "23.928", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "5.982", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "23.928", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "7.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "1.572", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "0.393", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "1.572", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "7.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "21.992", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "4", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "5.498", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "21.992", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "7.5", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "1", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "595.2", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "99.2", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "39.68", + "坑深2m以内.基数": "15", + "基础型式": "接地装置", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "39.68", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "0.4", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "824.32", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "147.2", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "58.88", + "坑深2m以内.基数": "14", + "基础型式": "接地装置", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "58.88", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "0.4", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "4.524", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "82.5", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "4.524", + "坑深2m以内.基数": "1", + "基础型式": "排水沟", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "4.524", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "0.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "27.144", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "82.5", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "27.144", + "坑深2m以内.基数": "1", + "基础型式": "排水沟", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "27.144", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "0.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "27.144", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "82.5", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "27.144", + "坑深2m以内.基数": "1", + "基础型式": "排水沟", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "27.144", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "0.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "11.731", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "岩石(人凿)", + "坑底长×宽m": "82.5", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "11.731", + "坑深2m以内.基数": "1", + "基础型式": "排水沟", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "11.731", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "0.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "20.563", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "泥水坑", + "坑底长×宽m": "82.5", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "20.563", + "坑深2m以内.基数": "1", + "基础型式": "排水沟", + "每基坑数个": "1", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "20.563", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "0.8", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "", + "基础型式": "", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "合计", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "泥水坑", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "2", + "基础型式": "自立塔坑", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "1511.66", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "5", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "1", + "基础型式": "自立塔坑", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "1888.385", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "4", + "坑深3m以内.合计": "220.684" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "0.108", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "流砂坑", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "3", + "基础型式": "自立塔坑", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "2300.926", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "2", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "8", + "坑深3m以内.合计": "311.904" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "13.94", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "6", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "7", + "坑深3m以内.合计": "4.836" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "49.128", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "5", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "5", + "坑深3m以内.合计": "47.732" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "", + "基础型式": "挖孔基础坑", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "158.556", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "1", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "6", + "坑深3m以内.合计": "11.552" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "1419.52", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "29", + "基础型式": "接地装置", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "4.524", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "普通土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "1", + "基础型式": "排水沟", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "27.144", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "坚土", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "1", + "基础型式": "排水沟", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "27.144", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "松砂石", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "1", + "基础型式": "排水沟", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "11.731", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "岩石(人凿)", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "1", + "基础型式": "排水沟", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "20.563", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "泥水坑", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "1", + "基础型式": "排水沟", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "坑深2m以内.合计": "1510.734", + "每基土石方量m?TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "土质": "", + "坑底长×宽m": "", + "每坑土石方量m?.马道": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "每基土石方量m?": "", + "坑深2m以内.基数": "", + "基础型式": "", + "每基坑数个": "", + "备注": "", + "坑底长×宽mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每坑土石方量m?.杆塔坑": "", + "土质TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "每基坑数个TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.合计": "5922.595", + "基础型式TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "地形": "总计", + "坑深m": "", + "坑深mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以内.基数": "", + "地形TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "坑深3m以上.基数": "", + "坑深3m以内.合计": "596.708" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "地形", + "columnLable": "地形", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "土质", + "columnLable": "土质", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "基础型式", + "columnLable": "基础型式", + "dataType": 105, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "坑底长×宽m", + "columnLable": "坑底长×宽m", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "坑深m", + "columnLable": "坑深m", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "每坑土石方量m?.杆塔坑", + "columnLable": "每坑土石方量m?.杆塔坑", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "每坑土石方量m?.马道", + "columnLable": "每坑土石方量m?.马道", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "每基坑数个", + "columnLable": "每基坑数个", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "每基土石方量m?", + "columnLable": "每基土石方量m?", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "坑深2m以内.基数", + "columnLable": "坑深2m以内.基数", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "坑深2m以内.合计", + "columnLable": "坑深2m以内.合计", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "坑深3m以内.基数", + "columnLable": "坑深3m以内.基数", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "坑深3m以内.合计", + "columnLable": "坑深3m以内.合计", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "坑深3m以上.基数", + "columnLable": "坑深3m以上.基数", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "坑深3m以上.合计", + "columnLable": "坑深3m以上.合计", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "备注", + "columnLable": "备注", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "附表三", + "middleHeader": "", + "rightHeader": "合计单位:m?", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "地形", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "地形", + "show": "1", + "width": "70" + }, + { + "fileName": "土质", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "土质", + "show": "1", + "width": "70" + }, + { + "fileName": "组件名称", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "组件名称", + "show": "0", + "width": "100" + }, + { + "fileName": "组件类型", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "组件类型", + "show": "0", + "width": "100" + }, + { + "fileName": "基础型式", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "基础型式", + "show": "1", + "width": "105" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "长", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "长", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "宽", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "宽", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "坑底长*宽(m*m)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "坑底长×宽m", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "坑深", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "坑深m", + "show": "1", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "每坑土方量(m?).杆塔坑", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "杆塔坑", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "每坑土方量(m?).马道", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "马道", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "每坑土石方量m?", + "show": "1" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "每基坑数(个)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "每基坑数个", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "每基土石方量(m?)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "每基土石方量m?", + "show": "1", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "坑深2m以内.基数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "基数", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "坑深2m以内.合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "坑深2m以内", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "坑深3m以内.基数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "基数", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "坑深3m以内.合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "坑深3m以内", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "坑深3m以上.基数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "基数", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "坑深3m以上.合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "坑深3m以上", + "show": "1" + }, + { + "fileName": "土方计算式", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "土方计算式", + "show": "0", + "width": "100" + }, + { + "fileName": "备注", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "1", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "附表三", + "subTitleRightText": "合计单位:m?" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "输电线路工程土石方量计算表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "输电线路工程工地运输重量计算表": { + "tableName": "输电线路工程工地运输重量计算表", + "rows": [ + { + "itemMap": { + "运输重量t": "", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "", + "材料类别": "金具、绝缘子、零星钢材", + "全线概算量(含损耗).合计": "", + "全线概算量(含损耗).架线工程": "", + "包装系数": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "9.838", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "9740.46", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "地脚螺栓", + "全线概算量(含损耗).合计": "9740.46", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1.01", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "2.071", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "2071.087", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "钢管", + "全线概算量(含损耗).合计": "2071.087", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "80.168", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "72577.14", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "7590.66", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "钢筋(加工制作)", + "全线概算量(含损耗).合计": "80167.8", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "9.938", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "6668.753", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "金具(包括压接线夹)", + "全线概算量(含损耗).合计": "9288.184", + "全线概算量(含损耗).架线工程": "2619.431", + "包装系数": "1.07", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "0.458", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "428.127", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "间隔棒", + "全线概算量(含损耗).合计": "428.127", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1.07", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "2.299", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "2148.552", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "防振锤", + "全线概算量(含损耗).合计": "2148.552", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1.07", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "26.833", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "25077.312", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "玻璃绝缘子", + "全线概算量(含损耗).合计": "25077.312", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1.07", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "0.427", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "399.228", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "瓷绝缘子", + "全线概算量(含损耗).合计": "399.228", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1.07", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "0.449", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "420", + "单位": "kg", + "材料类别": "防鸟装置", + "全线概算量(含损耗).合计": "420", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1.07", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "338.4", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "338400", + "单位": "kg", + "材料类别": "钢筋、型钢(成品、半成品)", + "全线概算量(含损耗).合计": "338400", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "", + "材料类别": "塔材", + "全线概算量(含损耗).合计": "", + "全线概算量(含损耗).架线工程": "", + "包装系数": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "250.014", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "250013.85", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "钢筋、型钢(成品、半成品)用于塔材", + "全线概算量(含损耗).合计": "250013.85", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "", + "材料类别": "其他", + "全线概算量(含损耗).合计": "", + "全线概算量(含损耗).架线工程": "", + "包装系数": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "668.563", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "668563.253", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "商品混凝土", + "全线概算量(含损耗).合计": "668563.253", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "", + "材料类别": "其他建筑安装材料", + "全线概算量(含损耗).合计": "", + "全线概算量(含损耗).架线工程": "", + "包装系数": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "330.262", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "320371.8", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "6620.25", + "单位": "kg", + "材料类别": "水泥", + "全线概算量(含损耗).合计": "326992.05", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1.01", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "746.974", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "695442.375", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "51532.075", + "单位": "kg", + "材料类别": "砂", + "全线概算量(含损耗).合计": "746974.45", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "1398.651", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "1398650.88", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "碎石", + "全线概算量(含损耗).合计": "1398650.88", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "192.761", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "155244", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "5390", + "单位": "kg", + "材料类别": "水", + "全线概算量(含损耗).合计": "160634", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1.2", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "250.1", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "250100", + "单位": "kg", + "材料类别": "砖、条石、块石、降阻模块", + "全线概算量(含损耗).合计": "250100", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "604.836", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "504030.4", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "水超运", + "全线概算量(含损耗).合计": "504030.4", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1.2", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "1633.354", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "1633354.064", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "余土外运", + "全线概算量(含损耗).合计": "1633354.064", + "全线概算量(含损耗).架线工程": "", + "包装系数": "1", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "", + "材料类别": "线材", + "全线概算量(含损耗).合计": "", + "全线概算量(含损耗).架线工程": "", + "包装系数": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "13.468", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "2000kg以内", + "全线概算量(含损耗).合计": "11223.36", + "全线概算量(含损耗).架线工程": "11223.36", + "包装系数": "1.2", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "68.625", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "", + "全线概算量(含损耗).基础工程": "", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "", + "全线概算量(含损耗).杆塔工程": "", + "全线概算量(含损耗).其他工程": "", + "单位": "kg", + "材料类别": "2000kg以上", + "全线概算量(含损耗).合计": "59673.6", + "全线概算量(含损耗).架线工程": "59673.6", + "包装系数": "1.15", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "运输重量t": "6628.49", + "运输重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).附件工程": "34721.972", + "全线概算量(含损耗).基础工程": "5460045.459", + "材料类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "包装系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线概算量(含损耗).接地工程": "7590.66", + "全线概算量(含损耗).杆塔工程": "250013.85", + "全线概算量(含损耗).其他工程": "652462.325", + "单位": "", + "材料类别": "总计", + "全线概算量(含损耗).合计": "6478350.657", + "全线概算量(含损耗).架线工程": "73516.391", + "包装系数": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "材料类别", + "columnLable": "材料类别", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "全线概算量(含损耗).基础工程", + "columnLable": "全线概算量(含损耗).基础工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "全线概算量(含损耗).杆塔工程", + "columnLable": "全线概算量(含损耗).杆塔工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "全线概算量(含损耗).接地工程", + "columnLable": "全线概算量(含损耗).接地工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "全线概算量(含损耗).架线工程", + "columnLable": "全线概算量(含损耗).架线工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "全线概算量(含损耗).附件工程", + "columnLable": "全线概算量(含损耗).附件工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "全线概算量(含损耗).其他工程", + "columnLable": "全线概算量(含损耗).其他工程", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "全线概算量(含损耗).合计", + "columnLable": "全线概算量(含损耗).合计", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "包装系数", + "columnLable": "包装系数", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "运输重量t", + "columnLable": "运输重量t", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "附表四", + "middleHeader": "", + "rightHeader": "", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "材料类别", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料类别", + "show": "1", + "width": "70" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "全线概算量(含损耗).基础工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "基础工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "全线概算量(含损耗).杆塔工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "杆塔工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "全线概算量(含损耗).接地工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "接地工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "全线概算量(含损耗).架线工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "架线工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "全线概算量(含损耗).附件工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "附件工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "全线概算量(含损耗).其他工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "其他工程", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "全线概算量(含损耗).电缆工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "电缆工程", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "全线概算量(含损耗).通信线路工程", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "通信线路工程", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "全线概算量(含损耗).合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "全线概算量(含损耗)", + "show": "1" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "包装系数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "包装系数", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "运输重量(t)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运输重量t", + "show": "1", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "附表四", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "输电线路工程工地运输重量计算表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "输电线路工程工地运输工程量计算表": { + "tableName": "输电线路工程工地运输工程量计算表", + "rows": [ + { + "itemMap": { + "材料站": "", + "项目名称": "人力运输", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "金具、绝缘子、零星钢材", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "地脚螺栓", + "丘陵.t·km": "0.679", + "泥沼.运距": "0.054", + "平地.t·km": "1.741", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "9.838", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "0.531", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "钢管", + "丘陵.t·km": "0.143", + "泥沼.运距": "0.054", + "平地.t·km": "0.367", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "2.071", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "0.112", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "钢筋(加工制作)", + "丘陵.t·km": "5.532", + "泥沼.运距": "0.054", + "平地.t·km": "14.19", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "80.168", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "4.329", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "金具(包括压接线夹)", + "丘陵.t·km": "0.686", + "泥沼.运距": "0.054", + "平地.t·km": "1.759", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "9.938", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "0.537", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "间隔棒", + "丘陵.t·km": "0.032", + "泥沼.运距": "0.054", + "平地.t·km": "0.081", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "0.458", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "0.025", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "防振锤", + "丘陵.t·km": "0.159", + "泥沼.运距": "0.054", + "平地.t·km": "0.407", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "2.299", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "0.124", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "玻璃绝缘子", + "丘陵.t·km": "1.851", + "泥沼.运距": "0.054", + "平地.t·km": "4.749", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "26.833", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "1.449", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "瓷绝缘子", + "丘陵.t·km": "0.029", + "泥沼.运距": "0.054", + "平地.t·km": "0.076", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "0.427", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "0.023", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "防鸟装置", + "丘陵.t·km": "0.031", + "泥沼.运距": "0.054", + "平地.t·km": "0.08", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "0.449", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "0.024", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "钢筋、型钢(成品、半成品)", + "丘陵.t·km": "23.35", + "泥沼.运距": "0.054", + "平地.t·km": "59.897", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "338.4", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "18.274", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "塔材", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "钢筋、型钢(成品、半成品)用于塔材", + "丘陵.t·km": "17.251", + "泥沼.运距": "0.054", + "平地.t·km": "44.252", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "250.014", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "13.501", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "其他", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "商品混凝土", + "丘陵.t·km": "46.131", + "泥沼.运距": "0.054", + "平地.t·km": "118.336", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "668.563", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "36.102", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "其他建筑安装材料", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "水泥", + "丘陵.t·km": "22.788", + "泥沼.运距": "0.054", + "平地.t·km": "58.456", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "330.262", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "17.834", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "砂", + "丘陵.t·km": "51.541", + "泥沼.运距": "0.054", + "平地.t·km": "132.214", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "746.974", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "40.337", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "碎石", + "丘陵.t·km": "96.507", + "泥沼.运距": "0.054", + "平地.t·km": "247.561", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "1398.651", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "75.527", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "水", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "192.761", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "砖、条石、块石、降阻模块", + "丘陵.t·km": "17.257", + "泥沼.运距": "0.054", + "平地.t·km": "44.268", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "250.1", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "13.505", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "水超运", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "604.836", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "余土外运", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "1633.354", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "线材", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "2000kg以内", + "丘陵.t·km": "0.929", + "泥沼.运距": "0.054", + "平地.t·km": "2.384", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "13.468", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "0.727", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "2000kg以上", + "丘陵.t·km": "4.735", + "泥沼.运距": "0.054", + "平地.t·km": "12.147", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "68.625", + "沙漠.t·km": "", + "丘陵.运距": "0.069", + "平地.运距": "0.177", + "峻岭.t·km": "", + "泥沼.t·km": "3.706", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "汽车运输", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "金具、绝缘子、零星钢材", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "地脚螺栓", + "丘陵.t·km": "22.627", + "泥沼.运距": "1.8", + "平地.t·km": "58.043", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "9.838", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "17.708", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "钢管", + "丘陵.t·km": "4.764", + "泥沼.运距": "1.8", + "平地.t·km": "12.219", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "2.071", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "3.728", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "钢筋(加工制作)", + "丘陵.t·km": "184.386", + "泥沼.运距": "1.8", + "平地.t·km": "472.99", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "80.168", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "144.302", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "金具(包括压接线夹)", + "丘陵.t·km": "22.858", + "泥沼.运距": "1.8", + "平地.t·km": "58.636", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "9.938", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "17.889", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "间隔棒", + "丘陵.t·km": "1.054", + "泥沼.运距": "1.8", + "平地.t·km": "2.703", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "0.458", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "0.825", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "防振锤", + "丘陵.t·km": "5.288", + "泥沼.运距": "1.8", + "平地.t·km": "13.564", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "2.299", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "4.138", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "玻璃绝缘子", + "丘陵.t·km": "61.715", + "泥沼.运距": "1.8", + "平地.t·km": "158.313", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "26.833", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "48.299", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "瓷绝缘子", + "丘陵.t·km": "0.983", + "泥沼.运距": "1.8", + "平地.t·km": "2.52", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "0.427", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "0.769", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "防鸟装置", + "丘陵.t·km": "1.034", + "泥沼.运距": "1.8", + "平地.t·km": "2.651", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "0.449", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "0.809", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "钢筋、型钢(成品、半成品)", + "丘陵.t·km": "778.32", + "泥沼.运距": "1.8", + "平地.t·km": "1996.56", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "338.4", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "609.12", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "塔材", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "钢筋、型钢(成品、半成品)用于塔材", + "丘陵.t·km": "575.032", + "泥沼.运距": "1.8", + "平地.t·km": "1475.082", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "250.014", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "450.025", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "其他", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "商品混凝土", + "丘陵.t·km": "1537.695", + "泥沼.运距": "1.8", + "平地.t·km": "3944.523", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "668.563", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "1203.414", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "其他建筑安装材料", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "水泥", + "丘陵.t·km": "759.603", + "泥沼.运距": "1.8", + "平地.t·km": "1948.546", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "330.262", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "594.472", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "砂", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "746.974", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "碎石", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "1398.651", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "水", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "192.761", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "砖、条石、块石、降阻模块", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "250.1", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "水超运", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "604.836", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "余土外运", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "1633.354", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "线材", + "丘陵.t·km": "", + "泥沼.运距": "", + "平地.t·km": "", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "", + "沙漠.t·km": "", + "丘陵.运距": "", + "平地.运距": "", + "峻岭.t·km": "", + "泥沼.t·km": "", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "2000kg以内", + "丘陵.t·km": "30.976", + "泥沼.运距": "1.8", + "平地.t·km": "79.461", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "13.468", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "24.242", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料站": "", + "项目名称": "2000kg以上", + "丘陵.t·km": "157.837", + "泥沼.运距": "1.8", + "平地.t·km": "404.885", + "山地.运距": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "山地.t·km": "", + "材料站TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "高山.t·km": "", + "地形运输量t": "68.625", + "沙漠.t·km": "", + "丘陵.运距": "2.3", + "平地.运距": "5.9", + "峻岭.t·km": "", + "泥沼.t·km": "123.524", + "沙漠.运距": "", + "高山.运距": "", + "地形运输量tTDSTYLE": "font-weight:400;font-family:宋体;width:140px;", + "峻岭.运距": "" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "材料站", + "columnLable": "材料站", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "项目名称", + "columnLable": "项目名称", + "dataType": 140, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "地形运输量t", + "columnLable": "地形运输量t", + "dataType": 140, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "平地.运距", + "columnLable": "平地.运距", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "平地.t·km", + "columnLable": "平地.t·km", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "丘陵.运距", + "columnLable": "丘陵.运距", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "丘陵.t·km", + "columnLable": "丘陵.t·km", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "山地.运距", + "columnLable": "山地.运距", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "山地.t·km", + "columnLable": "山地.t·km", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "高山.运距", + "columnLable": "高山.运距", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "高山.t·km", + "columnLable": "高山.t·km", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "峻岭.运距", + "columnLable": "峻岭.运距", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "峻岭.t·km", + "columnLable": "峻岭.t·km", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "泥沼.运距", + "columnLable": "泥沼.运距", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "泥沼.t·km", + "columnLable": "泥沼.t·km", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "沙漠.运距", + "columnLable": "沙漠.运距", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "沙漠.t·km", + "columnLable": "沙漠.t·km", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "附表五", + "middleHeader": "", + "rightHeader": "运距单位:km", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "材料站", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料站", + "show": "1", + "width": "70" + }, + { + "fileName": "项目名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "项目名称", + "show": "1", + "width": "140" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "地形运输量(t)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "地形运输量t", + "show": "1", + "width": "140" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "平地.运距", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运距", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "平地.t*km", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "t·km", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "平地", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "丘陵.运距", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运距", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "丘陵.t*km", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "t·km", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "丘陵", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "山地.运距", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运距", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "山地.t*km", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "t·km", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "山地", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "高山.运距", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运距", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "高山.t*km", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "t·km", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "高山", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "峻岭.运距", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运距", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "峻岭.t*km", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "t·km", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "峻岭", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "泥沼.运距", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运距", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "泥沼.t*km", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "t·km", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "泥沼", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "河网.运距", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运距", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "河网.t*km", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "t·km", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "河网", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "沙漠.运距", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运距", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "沙漠.t*km", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "t·km", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "沙漠", + "show": "1" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "附表五", + "subTitleRightText": "运距单位:km" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "输电线路工程工地运输工程量计算表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "输电线路工程杆塔分类一览表": { + "tableName": "输电线路工程杆塔分类一览表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "1", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "4", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "31.3", + "单基重量t": "6.7", + "按地形分类.平地": "4", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "26.81", + "杆塔型式": "直线", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "2", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "8", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "34.3", + "单基重量t": "7.49", + "按地形分类.平地": "8", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "59.94", + "杆塔型式": "直线", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "3", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "3", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "37.3", + "单基重量t": "8.06", + "按地形分类.平地": "3", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "24.17", + "杆塔型式": "直线", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "4", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "2", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "37.5", + "单基重量t": "8.48", + "按地形分类.平地": "2", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "16.97", + "杆塔型式": "直线", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "5", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "1", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "40.5", + "单基重量t": "9.22", + "按地形分类.平地": "1", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "9.22", + "杆塔型式": "直线", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "6", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "1", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "43.5", + "单基重量t": "9.86", + "按地形分类.平地": "1", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "9.86", + "杆塔型式": "直线", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "7", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "1", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "27.5", + "单基重量t": "7.95", + "按地形分类.平地": "1", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "7.95", + "杆塔型式": "耐张(转角)", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "8", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "1", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "30.5", + "单基重量t": "8.71", + "按地形分类.平地": "1", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "8.71", + "杆塔型式": "耐张(转角)", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "9", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "2", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "33.5", + "单基重量t": "9.55", + "按地形分类.平地": "2", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "19.09", + "杆塔型式": "耐张(转角)", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "10", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "1", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "33.5", + "单基重量t": "11.06", + "按地形分类.平地": "1", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "11.06", + "杆塔型式": "耐张(转角)", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "11", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "1", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "30.5", + "单基重量t": "10.73", + "按地形分类.平地": "1", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "10.73", + "杆塔型式": "耐张(转角)", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "12", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "1", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "33.5", + "单基重量t": "13.21", + "按地形分类.平地": "1", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "13.21", + "杆塔型式": "耐张(转角)", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "13", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "1", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "30.5", + "单基重量t": "12.43", + "按地形分类.平地": "1", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "12.43", + "杆塔型式": "耐张(转角)", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "14", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "2", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "18", + "单基重量t": "9.31", + "按地形分类.平地": "2", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "18.63", + "杆塔型式": "耐张(转角)", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "按地形分类.高山": "", + "序号": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.泥沼": "", + "总重tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "全线基数": "29", + "单基重量tTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "备注": "", + "按地形分类.河网": "", + "高度m": "", + "单基重量t": "", + "按地形分类.平地": "29", + "按地形分类.沙漠": "", + "按地形分类.丘陵": "", + "高度mTDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "按地形分类.一般山地": "", + "全线基数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "杆塔型式TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "总重t": "248.77", + "杆塔型式": "合计", + "按地形分类.峻岭": "" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 50, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "杆塔型式", + "columnLable": "杆塔型式", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "高度m", + "columnLable": "高度m", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单基重量t", + "columnLable": "单基重量t", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "全线基数", + "columnLable": "全线基数", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "按地形分类.平地", + "columnLable": "按地形分类.平地", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "按地形分类.丘陵", + "columnLable": "按地形分类.丘陵", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "按地形分类.一般山地", + "columnLable": "按地形分类.一般山地", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "按地形分类.高山", + "columnLable": "按地形分类.高山", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "按地形分类.峻岭", + "columnLable": "按地形分类.峻岭", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "按地形分类.泥沼", + "columnLable": "按地形分类.泥沼", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "按地形分类.河网", + "columnLable": "按地形分类.河网", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "按地形分类.沙漠", + "columnLable": "按地形分类.沙漠", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "总重t", + "columnLable": "总重t", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "备注", + "columnLable": "备注", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "附表六", + "middleHeader": "", + "rightHeader": "", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "50" + }, + { + "fileName": "杆塔名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "杆塔名称", + "show": "0", + "width": "140" + }, + { + "fileName": "杆塔型式", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "杆塔型式", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "高度(m)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "高度m", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单基重量(t)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单基重量t", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "全线基数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "全线基数", + "show": "1", + "width": "70" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "按地形分类.平地", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "平地", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "按地形分类.丘陵", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "丘陵", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "按地形分类.一般山地", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "一般山地", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "按地形分类.高山", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "高山", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "按地形分类.峻岭", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "峻岭", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "按地形分类.泥沼", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "泥沼", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "按地形分类.河网", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "河网", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "按地形分类.沙漠", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "沙漠", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "按地形分类", + "show": "1" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "总重(t)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重t", + "show": "1", + "width": "70" + }, + { + "fileName": "备注", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "1", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "2", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "附表六", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "输电线路工程杆塔分类一览表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程甲供设备汇总表": { + "tableName": "架空输电线路工程甲供设备汇总表", + "rows": [], + "columns": [ + { + "columnName": "类型", + "columnLable": "类型", + "dataType": 91, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "编号", + "columnLable": "编号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "设备名称", + "columnLable": "设备名称", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "数量", + "columnLable": "数量", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "运杂费率", + "columnLable": "运杂费率", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价(含税).单价", + "columnLable": "单价(含税).单价", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价(含税).运杂费", + "columnLable": "单价(含税).运杂费", + "dataType": 84, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价(含税).单价", + "columnLable": "合价(含税).单价", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价(含税).运杂费", + "columnLable": "合价(含税).运杂费", + "dataType": 84, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合计", + "columnLable": "合计", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "类型", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "类型", + "show": "1", + "width": "91" + }, + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "56" + }, + { + "fileName": "设备名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "设备名称", + "show": "1", + "width": "175" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "运杂费率", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费率", + "show": "1", + "width": "56" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "49" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价(不含税)", + "show": "0", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价(不含税)", + "show": "0", + "width": "56" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).运杂费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费", + "show": "1", + "width": "84" + } + ], + "isZeroShow": "0", + "name": "单价(含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).运杂费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费", + "show": "1", + "width": "84" + } + ], + "isZeroShow": "0", + "name": "合价(含税)", + "show": "1" + }, + { + "autoRepairZero": "1", + "decimalNum": "0", + "fileName": "合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "80" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "77" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装甲供设备汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程乙供设备汇总表": { + "tableName": "架空输电线路工程乙供设备汇总表", + "rows": [], + "columns": [ + { + "columnName": "类型", + "columnLable": "类型", + "dataType": 91, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "编号", + "columnLable": "编号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "设备名称", + "columnLable": "设备名称", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "数量", + "columnLable": "数量", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "运杂费率", + "columnLable": "运杂费率", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价(不含税).单价", + "columnLable": "单价(不含税).单价", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价(不含税).运杂费", + "columnLable": "单价(不含税).运杂费", + "dataType": 84, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价(不含税).单价", + "columnLable": "合价(不含税).单价", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价(不含税).运杂费", + "columnLable": "合价(不含税).运杂费", + "dataType": 84, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合计", + "columnLable": "合计", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "类型", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "类型", + "show": "1", + "width": "91" + }, + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "56" + }, + { + "fileName": "设备名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "设备名称", + "show": "1", + "width": "175" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "运杂费率", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费率", + "show": "1", + "width": "56" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "49" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价(含税)", + "show": "0", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价(含税)", + "show": "0", + "width": "56" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).运杂费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费", + "show": "1", + "width": "84" + } + ], + "isZeroShow": "0", + "name": "单价(不含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税).运杂费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费", + "show": "1", + "width": "84" + } + ], + "isZeroShow": "0", + "name": "合价(不含税)", + "show": "1" + }, + { + "autoRepairZero": "1", + "decimalNum": "0", + "fileName": "合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "80" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "77" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装乙供设备汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程材料汇总表": { + "tableName": "架空输电线路工程材料汇总表", + "rows": [ + { + "itemMap": { + "材料名称": "架空输电线路本体工程", + "单位": "", + "数量": "", + "预算单价(不含税)": "", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "", + "编号": "一", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "镀锌铁丝", + "单位": "kg", + "数量": "2646.4936", + "预算单价(不含税)": "4.427", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "11716.027", + "编号": "C14010100", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "其他材料费", + "单位": "元", + "数量": "4907.3976", + "预算单价(不含税)": "1", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "4907.398", + "编号": "C99010102", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "圆钉", + "单位": "kg", + "数量": "319.2625", + "预算单价(不含税)": "5.601", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "1788.189", + "编号": "C13050101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "普通磁漆", + "单位": "kg", + "数量": "29.5591", + "预算单价(不含税)": "9.727", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "287.521", + "编号": "C20020101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "木桩", + "单位": "个", + "数量": "325.357", + "预算单价(不含税)": "2.611", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "849.507", + "编号": "C22040801", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "竹桩", + "单位": "个", + "数量": "464", + "预算单价(不含税)": "0.65", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "301.6", + "编号": "C22040811", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "方材红白松 二等", + "单位": "m?", + "数量": "48.2821", + "预算单价(不含税)": "1660", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "80148.203", + "编号": "C08020102", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "加工铁件 综合", + "单位": "kg", + "数量": "112.5329", + "预算单价(不含税)": "5.767", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "648.977", + "编号": "C07010502", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "钢护筒加工件", + "单位": "kg", + "数量": "67.6998", + "预算单价(不含税)": "5.717", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "387.04", + "编号": "C22010623", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "电焊条 J422 综合", + "单位": "kg", + "数量": "127.865", + "预算单价(不含税)": "4.96", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "634.21", + "编号": "C12010100", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "草袋", + "单位": "个", + "数量": "509.4914", + "预算单价(不含税)": "1.57", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "799.901", + "编号": "C22040711", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "扒钉", + "单位": "kg", + "数量": "186.9361", + "预算单价(不含税)": "6.363", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "1189.474", + "编号": "C13050501", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "枕木 160×220×2500", + "单位": "根", + "数量": "4.9138", + "预算单价(不含税)": "131.101", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "644.202", + "编号": "C22010201", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "通用钢模板", + "单位": "kg", + "数量": "4036.6994", + "预算单价(不含税)": "4.726", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "19077.442", + "编号": "C22010401", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "复合木模板", + "单位": "m?", + "数量": "383.3778", + "预算单价(不含税)": "39.45", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "15124.255", + "编号": "C22010431", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "木模板", + "单位": "m?", + "数量": "1.0434", + "预算单价(不含税)": "1621.771", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "1692.204", + "编号": "C22010432", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "专用钢模板", + "单位": "kg", + "数量": "66.5999", + "预算单价(不含税)": "5.652", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "376.423", + "编号": "C22010421", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "钢模板附件", + "单位": "kg", + "数量": "0.4838", + "预算单价(不含税)": "4.989", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "2.414", + "编号": "C22010441", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "内模定型加固圈", + "单位": "kg", + "数量": "0.1613", + "预算单价(不含税)": "5.359", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "0.864", + "编号": "C22010443", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "钢丝绳 Φ15以下", + "单位": "kg", + "数量": "914.2995", + "预算单价(不含税)": "5.97", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "5458.368", + "编号": "C01040102", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "碳钢气焊丝 综合", + "单位": "kg", + "数量": "1.7963", + "预算单价(不含税)": "7.065", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "12.691", + "编号": "C12020100", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "氧气", + "单位": "m?", + "数量": "17.8816", + "预算单价(不含税)": "4.71", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "84.223", + "编号": "C19110101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "乙炔气", + "单位": "m?", + "数量": "6.2476", + "预算单价(不含税)": "10.379", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "64.844", + "编号": "C19110201", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "木楔", + "单位": "m?", + "数量": "0.0082", + "预算单价(不含税)": "1606.956", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "13.192", + "编号": "C08030901", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "中厚钢板 12~20", + "单位": "kg", + "数量": "338.983", + "预算单价(不含税)": "3.836", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "1300.339", + "编号": "C01030204", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "迪尼玛绳 Φ2", + "单位": "m", + "数量": "5267.2", + "预算单价(不含税)": "0.872", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "4592.998", + "编号": "C16110704", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "镀锌钢绞线 GJ-35", + "单位": "kg", + "数量": "18.4681", + "预算单价(不含税)": "5.759", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "106.358", + "编号": "C16010605", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "普通橡胶管 DN50", + "单位": "m", + "数量": "33.2904", + "预算单价(不含税)": "11.666", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "388.365", + "编号": "C18020101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "砂布", + "单位": "张", + "数量": "86.5026", + "预算单价(不含税)": "0.66", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "57.092", + "编号": "C22040101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "白布", + "单位": "m?", + "数量": "28.6771", + "预算单价(不含税)": "3.358", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "96.298", + "编号": "C22040401", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "棉纱头", + "单位": "kg", + "数量": "87.1666", + "预算单价(不含税)": "5.67", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "494.235", + "编号": "C22040501", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "白棕绳 Φ8", + "单位": "kg", + "数量": "4.4936", + "预算单价(不含税)": "10.626", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "47.749", + "编号": "C22040611", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "麻绳", + "单位": "kg", + "数量": "13.4643", + "预算单价(不含税)": "9.246", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "124.491", + "编号": "C22040621", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "麻袋片", + "单位": "m", + "数量": "100.5934", + "预算单价(不含税)": "1.919", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "193.039", + "编号": "C22040722", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "镀锌钢绞线 GJ-100", + "单位": "kg", + "数量": "151.432", + "预算单价(不含税)": "5.759", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "872.097", + "编号": "C16010609", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "导线补修管JX-300", + "单位": "个", + "数量": "9.876", + "预算单价(不含税)": "22", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "217.272", + "编号": "C16037106", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "橡胶板 10mm以下", + "单位": "kg", + "数量": "7.6292", + "预算单价(不含税)": "5.638", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "43.013", + "编号": "C18010102", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "清洗剂", + "单位": "kg", + "数量": "23.005", + "预算单价(不含税)": "2.41", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "55.442", + "编号": "C19031101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "导电脂", + "单位": "kg", + "数量": "52.6698", + "预算单价(不含税)": "11.597", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "610.812", + "编号": "C19020405", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "防锈漆", + "单位": "kg", + "数量": "5.4762", + "预算单价(不含税)": "9.353", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "51.219", + "编号": "C20010101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "钢锯条 各种规格", + "单位": "根", + "数量": "139.91", + "预算单价(不含税)": "1.308", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "183.002", + "编号": "C22030501", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "苇席", + "单位": "张", + "数量": "46.2115", + "预算单价(不含税)": "5.757", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "266.039", + "编号": "C22040731", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "光纤测量用匹配油", + "单位": "瓶", + "数量": "3.42", + "预算单价(不含税)": "304.892", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "1042.731", + "编号": "C16050751", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "光纤用除油剂", + "单位": "瓶", + "数量": "6.802", + "预算单价(不含税)": "45.357", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "308.518", + "编号": "C16050761", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "光纤用切管刀片", + "单位": "片", + "数量": "12.92", + "预算单价(不含税)": "62.801", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "811.389", + "编号": "C16050771", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "自黏性橡胶带 25mm×20m", + "单位": "卷", + "数量": "19.95", + "预算单价(不含税)": "6.897", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "137.595", + "编号": "C18030801", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "乙醇", + "单位": "kg", + "数量": "4.4237", + "预算单价(不含税)": "3.62", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "16.014", + "编号": "C19030201", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "无纺布", + "单位": "m?", + "数量": "30.362", + "预算单价(不含税)": "5.218", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "158.429", + "编号": "C22040412", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "压缩空气标准瓶装", + "单位": "瓶", + "数量": "7.79", + "预算单价(不含税)": "19.63", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "152.918", + "编号": "C22041601", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "热缩管", + "单位": "m", + "数量": "159.6", + "预算单价(不含税)": "1.744", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "278.342", + "编号": "C16050601", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "塑料标识牌", + "单位": "个", + "数量": "3.8", + "预算单价(不含税)": "0.457", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "1.737", + "编号": "C18080101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "钢管脚手架 包括扣件", + "单位": "kg", + "数量": "2114.0228", + "预算单价(不含税)": "4.215", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "8910.606", + "编号": "C22010101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "木脚手杆杉原木 Φ80×6000", + "单位": "根", + "数量": "138.7859", + "预算单价(不含税)": "31.034", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "4307.08", + "编号": "C22010111", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "毛竹", + "单位": "根", + "数量": "378.0363", + "预算单价(不含税)": "17.241", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "6517.725", + "编号": "C22010121", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "安全网", + "单位": "m?", + "数量": "2534.2505", + "预算单价(不含税)": "4", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "10137.002", + "编号": "C22010301", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "蚕丝绝缘绳", + "单位": "kg", + "数量": "105", + "预算单价(不含税)": "162.303", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "17041.815", + "编号": "C16120101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "角钢 综合", + "单位": "kg", + "数量": "580.2423", + "预算单价(不含税)": "3.672", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "2130.65", + "编号": "C01020300", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "白棕绳 Φ16", + "单位": "kg", + "数量": "3350.2702", + "预算单价(不含税)": "8.073", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "27046.731", + "编号": "C22040614", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "铝包带 1mm×10mm", + "单位": "kg", + "数量": "15.5018", + "预算单价(不含税)": "20", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "310.036", + "编号": "C16100411", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "铅油", + "单位": "kg", + "数量": "18.3708", + "预算单价(不含税)": "7.763", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "142.613", + "编号": "C19020701", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "焦炭", + "单位": "kg", + "数量": "21.022", + "预算单价(不含税)": "1.675", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "35.212", + "编号": "C19120201", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "紫铜棒 Φ6", + "单位": "kg", + "数量": "0.5094", + "预算单价(不含税)": "46.112", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "23.489", + "编号": "C04010201", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "紫铜皮 0.5以下", + "单位": "kg", + "数量": "0.0336", + "预算单价(不含税)": "51.078", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "1.716", + "编号": "C04010301", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "钢垫板 综合", + "单位": "kg", + "数量": "2.7426", + "预算单价(不含税)": "4.655", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "12.767", + "编号": "C07010401", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "镀锌六角螺栓 综合", + "单位": "kg", + "数量": "2.6199", + "预算单价(不含税)": "8.8", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "23.055", + "编号": "C13010201", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "塑料带防辐照聚乙烯 20mm×40m", + "单位": "卷", + "数量": "1.0626", + "预算单价(不含税)": "3.112", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "3.307", + "编号": "C18060104", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "电力复合脂", + "单位": "kg", + "数量": "0.2751", + "预算单价(不含税)": "10.119", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "2.784", + "编号": "C19020801", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "普通调和漆", + "单位": "kg", + "数量": "1.6464", + "预算单价(不含税)": "11.223", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "18.478", + "编号": "C20030101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "硝基快干腻子", + "单位": "kg", + "数量": "0.2196", + "预算单价(不含税)": "5.904", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "1.297", + "编号": "C20080202", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "无絮棉布", + "单位": "kg", + "数量": "0.0537", + "预算单价(不含税)": "7.414", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "0.398", + "编号": "C22040411", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "平垫铁 综合", + "单位": "kg", + "数量": "2.03", + "预算单价(不含税)": "4.655", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "9.45", + "编号": "C07010101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "弹簧垫圈", + "单位": "kg", + "数量": "2.03", + "预算单价(不含税)": "11.929", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "24.216", + "编号": "C13040200", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "铝绑扎线 3.2mm以下", + "单位": "m", + "数量": "50.75", + "预算单价(不含税)": "0.523", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "26.542", + "编号": "C16100322", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "铜芯聚氯乙烯绝缘电线 25mm?", + "单位": "m", + "数量": "45", + "预算单价(不含税)": "14.336", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "645.12", + "编号": "C16011309", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "铜芯聚氯乙烯绝缘电线 120mm?", + "单位": "m", + "数量": "45", + "预算单价(不含税)": "73.805", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "3321.225", + "编号": "C16011315", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "铜接线端子 25mm?", + "单位": "个", + "数量": "12", + "预算单价(不含税)": "4", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "48", + "编号": "C16038104", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "铜接线端子 120mm?", + "单位": "个", + "数量": "12", + "预算单价(不含税)": "16.044", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "192.528", + "编号": "C16038109", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "水", + "单位": "t", + "数量": "47.08", + "预算单价(不含税)": "4.1", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "193.028", + "编号": "C21010101", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "钢筋混凝土管 Φ1600", + "单位": "m", + "数量": "9.8", + "预算单价(不含税)": "3097", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "30350.6", + "编号": "C09050334", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "橡胶密封圈 DN1600", + "单位": "个", + "数量": "2.63", + "预算单价(不含税)": "187.472", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "493.051", + "编号": "C18030210", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "二丁酯", + "单位": "kg", + "数量": "0.08", + "预算单价(不含税)": "7.845", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "0.628", + "编号": "C19020403", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "丙酮 95%", + "单位": "kg", + "数量": "0.05", + "预算单价(不含税)": "4.1", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "0.205", + "编号": "C19030301", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "乙二胺", + "单位": "kg", + "数量": "0.07", + "预算单价(不含税)": "20.52", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "1.436", + "编号": "C19060131", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "环氧树脂 6101号", + "单位": "kg", + "数量": "0.7", + "预算单价(不含税)": "19.187", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "13.431", + "编号": "C20060202", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "", + "单位": "", + "数量": "", + "预算单价(不含税)": "", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "", + "编号": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "小计:", + "单位": "", + "数量": "", + "预算单价(不含税)": "", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "270802.918", + "编号": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "其他材料费:", + "单位": "", + "数量": "", + "预算单价(不含税)": "", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "10.024", + "编号": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "材料名称": "合计:", + "单位": "", + "数量": "", + "预算单价(不含税)": "", + "预算合价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "预算单价(不含税)TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "预算合价(不含税)": "270812.942", + "编号": "", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "编号TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "编号", + "columnLable": "编号", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "材料名称", + "columnLable": "材料名称", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "数量", + "columnLable": "数量", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "预算单价(不含税)", + "columnLable": "预算单价(不含税)", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "预算合价(不含税)", + "columnLable": "预算合价(不含税)", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "70" + }, + { + "fileName": "材料名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料名称", + "show": "1", + "width": "175" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "4", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价(不含税)", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场单价不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价(不含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单价价差不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差(不含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价(不含税)", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场合价不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价(不含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "合价价差不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差(不含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场单价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单价价差含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场合价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "合价价差含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差(含税)", + "show": "0", + "width": "100" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装材料汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程机械汇总表": { + "tableName": "架空输电线路工程机械汇总表", + "rows": [ + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "", + "数量": "", + "编码": "一", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "架空输电线路本体工程", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "", + "预算合价": "", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "285.6116", + "编码": "J13-01-079", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "输电专用载重汽车 4t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "314.67", + "预算合价": "89873.408", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "300.2102", + "编码": "J13-01-080", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "输电专用载重汽车 5t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "339.64", + "预算合价": "101963.408", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "844.7822", + "编码": "J09-01-017", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "污水泵 出口直径 Φ100", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "131.39", + "预算合价": "110995.933", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "1.1635", + "编码": "J05-01-001", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "电动单筒快速卷扬机 10kN", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "167.56", + "预算合价": "194.958", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "2.0021", + "编码": "J15-01-004", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "吹风机 能力 4m?/min", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "57.52", + "预算合价": "115.161", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "5.5804", + "编码": "J01-01-034", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "履带式单斗液压挖掘机 斗容量 0.6m?", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "639.68", + "预算合价": "3569.645", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "4.067", + "编码": "J28-01-002", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "履带式旋挖钻机 孔径 Φ1000", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "2208.53", + "预算合价": "8982.092", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "3.5447", + "编码": "J28-01-003", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "履带式旋挖钻机 孔径 Φ1200", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "2572.08", + "预算合价": "9117.201", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "5.5836", + "编码": "J28-01-004", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "履带式旋挖钻机 孔径 Φ1500", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "3166.4", + "预算合价": "17679.911", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "10.3885", + "编码": "J01-01-035", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "履带式单斗液压挖掘机 斗容量 1m?", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "1096.27", + "预算合价": "11388.579", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "5.9687", + "编码": "J08-01-005", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "数控钢筋调直切断机 直径 Φ1.8~3", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "194.75", + "预算合价": "1162.402", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "33.0704", + "编码": "J08-01-006", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "钢筋弯曲机 直径 Φ40", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "27.63", + "预算合价": "913.736", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "31.3159", + "编码": "J10-01-028", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "汽油电焊机 电流 160A以内", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "226.51", + "预算合价": "7093.374", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "36.7753", + "编码": "J15-01-012", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "内切割机", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "60.49", + "预算合价": "2224.539", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "12.9771", + "编码": "J06-01-021", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "滚筒式混凝土搅拌机(电动式) 出料容量250L", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "178.74", + "预算合价": "2319.534", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "24.9552", + "编码": "J06-01-052", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "混凝土振捣器(插入式)", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "13.83", + "预算合价": "345.13", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "6.6452", + "编码": "J06-01-022", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "滚筒式混凝土搅拌机(电动式) 出料容量400L", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "189.99", + "预算合价": "1262.522", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "27.9793", + "编码": "J05-01-009", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "电动单筒慢速卷扬机 30kN", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "175.97", + "预算合价": "4923.52", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "10.655", + "编码": "J09-01-016", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "污水泵 出口直径 Φ70", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "88.61", + "预算合价": "944.139", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "155.9139", + "编码": "J13-01-060", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "机动绞磨 3t以内", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "162.99", + "预算合价": "25412.401", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "38.3577", + "编码": "J03-01-034", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "汽车式起重机 起重量 8t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "655.69", + "预算合价": "25150.772", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "75.3921", + "编码": "J13-01-061", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "机动绞磨 5t以内", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "174.42", + "预算合价": "13149.889", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "2.4989", + "编码": "J13-01-062", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "手扶机动绞磨 5t以内", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "240.23", + "预算合价": "600.317", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "2.7797", + "编码": "J08-01-073", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "型钢剪断机 剪断宽度 500mm", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "249.57", + "预算合价": "693.739", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "5.0616", + "编码": "J08-01-094", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "管子切断机 管径 Φ60", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "17.4", + "预算合价": "88.071", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.8958", + "编码": "J03-01-033", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "汽车式起重机 起重量 5t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "552.67", + "预算合价": "495.094", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "9.4287", + "编码": "J13-01-082", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "输电专用载重汽车 8t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "476.01", + "预算合价": "4488.158", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "10.1468", + "编码": "J18-01-001", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "牵引机 一牵一", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "1272.84", + "预算合价": "12915.289", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "10.1468", + "编码": "J18-01-005", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "张力机 一张一", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "936.39", + "预算合价": "9501.389", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "61.4036", + "编码": "J13-01-065", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "机动液压压接机 200t以内", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "79.03", + "预算合价": "4852.73", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "25.6063", + "编码": "J03-01-037", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "汽车式起重机 起重量 20t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "993.04", + "预算合价": "25428.072", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "2.8242", + "编码": "J13-01-084", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "输电专用载重汽车 15t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "726.01", + "预算合价": "2050.408", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "7.1942", + "编码": "J18-01-002", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "牵引机 一牵二", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "2020.02", + "预算合价": "14532.351", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "7.1942", + "编码": "J18-01-006", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "张力机 一张二", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "1756.32", + "预算合价": "12635.25", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "18.7287", + "编码": "J14-05-064", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "光时域反射仪", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "295.76", + "预算合价": "5539.215", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "7.5769", + "编码": "J14-05-061", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "光纤熔接仪", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "233.38", + "预算合价": "1768.296", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "6.8944", + "编码": "J14-05-062", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "光纤电话", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "33.06", + "预算合价": "227.929", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "1.14", + "编码": "J14-05-057", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "光频谱分析仪", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "209.72", + "预算合价": "239.081", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "1.14", + "编码": "J14-05-059", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "光纤色散测试仪", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "1522.97", + "预算合价": "1736.186", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "55.65", + "编码": "J15-01-051", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "机动船舶 5t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "138.01", + "预算合价": "7680.257", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.0757", + "编码": "J10-01-001", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "交流弧焊机 容量 21kVA", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "67", + "预算合价": "5.07", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "2.7568", + "编码": "J14-08-220", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "直流高压发生器 200kV 3mA", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "414.4", + "预算合价": "1142.416", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.6595", + "编码": "J04-01-004", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "载重汽车 8t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "445.99", + "预算合价": "294.13", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "2.2713", + "编码": "J14-03-018", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "交流高压发生器 50kVA以下 500kV", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "777.48", + "预算合价": "1765.89", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.4543", + "编码": "J14-09-027", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "线路参数测试仪", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "5226.08", + "预算合价": "2374.208", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "2.2713", + "编码": "J15-01-066", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "功能检测分析平台(电脑)", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "31.98", + "预算合价": "72.636", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "1.0811", + "编码": "J16-01-025", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "绝缘电阻表(数字式)", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "15.69", + "预算合价": "16.962", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "2.0442", + "编码": "J19-01-024", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "手持式数字双钳相位表", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "12.43", + "预算合价": "25.409", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "10.8295", + "编码": "J01-01-053", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "电动夯实机 夯击能量 250N·m", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "28.93", + "预算合价": "313.297", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.2744", + "编码": "J01-01-001", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "履带式推土机 功率 75kW", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "745.79", + "预算合价": "204.645", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "1.8424", + "编码": "J01-01-047", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "机械式振动压路机 工作质量 15t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "878.08", + "预算合价": "1617.775", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.3136", + "编码": "J04-01-041", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "洒水车 4000L", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "449.25", + "预算合价": "140.885", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.114", + "编码": "J03-01-007", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "履带式起重机 起重量 40t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "1364.4", + "预算合价": "155.542", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.114", + "编码": "J03-01-036", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "汽车式起重机 起重量 16t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "876.93", + "预算合价": "99.97", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.114", + "编码": "J04-01-035", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "管子拖车 24t", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "1616.25", + "预算合价": "184.253", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.074", + "编码": "J05-01-010", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "电动单筒慢速卷扬机 50kN", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "181.65", + "预算合价": "13.442", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.114", + "编码": "J09-01-003", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "电动单级离心清水泵 出口直径 Φ150", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "101.95", + "预算合价": "11.622", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "台班", + "数量": "0.15", + "编码": "J09-01-033", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "试压泵 压力 25MPa", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "29.73", + "预算合价": "4.46", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "", + "数量": "", + "编码": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "", + "预算合价": "", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "", + "数量": "", + "编码": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "小计:", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "", + "预算合价": "552696.697", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "", + "数量": "", + "编码": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "其他机械费:", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "", + "预算合价": "11.567", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "预算单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "", + "数量": "", + "编码": "", + "数量TDSTYLE": "font-weight:400;font-family:宋体;width:90px;", + "机械名称": "合计:", + "预算合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "机械名称TDSTYLE": "font-weight:400;font-family:宋体;width:200px;", + "预算单价": "", + "预算合价": "552708.264", + "编码TDSTYLE": "font-weight:400;font-family:宋体;width:80px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "编码", + "columnLable": "编码", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "机械名称", + "columnLable": "机械名称", + "dataType": 200, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "数量", + "columnLable": "数量", + "dataType": 90, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "预算单价", + "columnLable": "预算单价", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "预算合价", + "columnLable": "预算合价", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编码", + "show": "1", + "width": "80" + }, + { + "fileName": "机械名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "机械名称", + "show": "1", + "width": "200" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "4", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "90" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "90" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场单价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单价价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场合价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "合价价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场单价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单价价差含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场合价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "合价价差含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差(含税)", + "show": "0", + "width": "100" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "150" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装机械汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程人工按系数调差明细表": { + "tableName": "架空输电线路工程人工按系数调差明细表", + "rows": [ + { + "itemMap": { + "项目名称": "架空输电线路本体工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "一", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "200808.02", + "单价": "1517823.25", + "系数": "13.23", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "基础工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "1", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "98620.84", + "单价": "745433.38", + "系数": "13.23", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "杆塔工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "2", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "22885.46", + "单价": "172981.55", + "系数": "13.23", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "接地工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "3", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "3315.4", + "单价": "25059.73", + "系数": "13.23", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "架线工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "4", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "46313.74", + "单价": "350066.05", + "系数": "13.23", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "附件安装工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "5", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "20591.47", + "单价": "155642.24", + "系数": "13.23", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "辅助工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "6", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "9081.11", + "单价": "68640.29", + "系数": "13.23", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "", + "单价": "", + "系数": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "小计:", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "元", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "200808.02", + "单价": "", + "系数": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "税率:", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "18072.72", + "单价": "200808.02", + "系数": "9", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "合计:", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "元", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "218880.74", + "单价": "", + "系数": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 60, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "项目名称", + "columnLable": "项目名称", + "dataType": 180, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 60, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "系数", + "columnLable": "系数", + "dataType": 60, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价", + "columnLable": "单价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价", + "columnLable": "合价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "60" + }, + { + "fileName": "项目名称", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "项目名称", + "show": "1", + "width": "180" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "60" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "系数", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "系数", + "show": "1", + "width": "60" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "合价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价", + "show": "1", + "width": "70" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装人工按系数调差明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程材料按系数调差明细表": { + "tableName": "架空输电线路工程材料按系数调差明细表", + "rows": [ + { + "itemMap": { + "项目名称": "架空输电线路本体工程", + "乙供材料费不含税": "270812.94", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "序号": "一", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "乙供材料不含税价差": "19796.43", + "甲供材料含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "甲供材料费含税": "", + "甲供材料含税价差": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "乙供材料不含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "%", + "甲供材料费含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料价差合计": "19796", + "材料价差合计TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数": "7.31", + "乙供材料费不含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "基础工程", + "乙供材料费不含税": "127879.63", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "序号": "1", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "乙供材料不含税价差": "9348", + "甲供材料含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "甲供材料费含税": "", + "甲供材料含税价差": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "乙供材料不含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "%", + "甲供材料费含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料价差合计": "9348", + "材料价差合计TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数": "7.31", + "乙供材料费不含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "杆塔工程", + "乙供材料费不含税": "1857.06", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "序号": "2", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "乙供材料不含税价差": "135.75", + "甲供材料含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "甲供材料费含税": "", + "甲供材料含税价差": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "乙供材料不含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "%", + "甲供材料费含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料价差合计": "136", + "材料价差合计TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数": "7.31", + "乙供材料费不含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "接地工程", + "乙供材料费不含税": "229.21", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "序号": "3", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "乙供材料不含税价差": "16.75", + "甲供材料含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "甲供材料费含税": "", + "甲供材料含税价差": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "乙供材料不含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "%", + "甲供材料费含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料价差合计": "17", + "材料价差合计TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数": "7.31", + "乙供材料费不含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "架线工程", + "乙供材料费不含税": "99338.29", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "序号": "4", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "乙供材料不含税价差": "7261.63", + "甲供材料含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "甲供材料费含税": "", + "甲供材料含税价差": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "乙供材料不含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "%", + "甲供材料费含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料价差合计": "7262", + "材料价差合计TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数": "7.31", + "乙供材料费不含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "附件安装工程", + "乙供材料费不含税": "3152.73", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "序号": "5", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "乙供材料不含税价差": "230.46", + "甲供材料含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "甲供材料费含税": "", + "甲供材料含税价差": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "乙供材料不含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "%", + "甲供材料费含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料价差合计": "230", + "材料价差合计TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数": "7.31", + "乙供材料费不含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "辅助工程", + "乙供材料费不含税": "38356.03", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "序号": "6", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "乙供材料不含税价差": "2803.83", + "甲供材料含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "甲供材料费含税": "", + "甲供材料含税价差": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "乙供材料不含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "%", + "甲供材料费含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料价差合计": "2804", + "材料价差合计TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数": "7.31", + "乙供材料费不含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "", + "乙供材料费不含税": "", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "乙供材料不含税价差": "", + "甲供材料含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "甲供材料费含税": "", + "甲供材料含税价差": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "乙供材料不含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "", + "甲供材料费含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料价差合计": "", + "材料价差合计TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数": "", + "乙供材料费不含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "小计:", + "乙供材料费不含税": "", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "乙供材料不含税价差": "19796.43", + "甲供材料含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "甲供材料费含税": "", + "甲供材料含税价差": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "乙供材料不含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "元", + "甲供材料费含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料价差合计": "19796", + "材料价差合计TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数": "", + "乙供材料费不含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "税率:", + "乙供材料费不含税": "19796.43", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "乙供材料不含税价差": "1781.68", + "甲供材料含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "甲供材料费含税": "", + "甲供材料含税价差": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "乙供材料不含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "%", + "甲供材料费含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料价差合计": "1782", + "材料价差合计TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数": "9", + "乙供材料费不含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "合计:", + "乙供材料费不含税": "", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "乙供材料不含税价差": "", + "甲供材料含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "甲供材料费含税": "", + "甲供材料含税价差": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "乙供材料不含税价差TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位": "元", + "甲供材料费含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "材料价差合计": "21578", + "材料价差合计TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数": "", + "乙供材料费不含税TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 60, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "项目名称", + "columnLable": "项目名称", + "dataType": 180, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 60, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "系数", + "columnLable": "系数", + "dataType": 60, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "乙供材料费不含税", + "columnLable": "乙供材料费不含税", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "甲供材料费含税", + "columnLable": "甲供材料费含税", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "乙供材料不含税价差", + "columnLable": "乙供材料不含税价差", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "甲供材料含税价差", + "columnLable": "甲供材料含税价差", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "材料价差合计", + "columnLable": "材料价差合计", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "60" + }, + { + "fileName": "项目名称", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "项目名称", + "show": "1", + "width": "180" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "60" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "系数", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "系数", + "show": "1", + "width": "60" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "乙供材料费不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "乙供材料费不含税", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "甲供材料费含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "甲供材料费含税", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "乙供材料不含税价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "乙供材料不含税价差", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "甲供材料含税价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "甲供材料含税价差", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "材料价差合计", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "材料价差合计", + "show": "1", + "width": "100" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装材料按系数调差明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程机械按系数调差明细表": { + "tableName": "架空输电线路工程机械按系数调差明细表", + "rows": [ + { + "itemMap": { + "项目名称": "架空输电线路本体工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "一", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "40402.97", + "单价": "552708.26", + "系数": "7.31", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "基础工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "1", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "18426.45", + "单价": "252071.84", + "系数": "7.31", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "杆塔工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "2", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "3422.39", + "单价": "46817.93", + "系数": "7.31", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "接地工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "3", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "254.16", + "单价": "3476.94", + "系数": "7.31", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "架线工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "4", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "12924.06", + "单价": "176799.74", + "系数": "7.31", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "附件安装工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "5", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "2849.3", + "单价": "38978.11", + "系数": "7.31", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "辅助工程", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "6", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "2526.61", + "单价": "34563.71", + "系数": "7.31", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "", + "单价": "", + "系数": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "小计:", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "元", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "40402.97", + "单价": "", + "系数": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "税率", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "%", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "3636.27", + "单价": "40402.97", + "系数": "9", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "项目名称": "合计:", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "单位": "元", + "序号": "", + "项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:180px;", + "合价": "44039.24", + "单价": "", + "系数": "", + "单价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "单位TDSTYLE": "font-weight:400;font-family:宋体;width:60px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:100px;", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:80px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 60, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "项目名称", + "columnLable": "项目名称", + "dataType": 180, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 60, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "系数", + "columnLable": "系数", + "dataType": 80, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价", + "columnLable": "单价", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价", + "columnLable": "合价", + "dataType": 100, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "60" + }, + { + "fileName": "项目名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "项目名称", + "show": "1", + "width": "180" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "60" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "系数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "系数", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价", + "show": "1", + "width": "100" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装机械按系数调差明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "设备购置费明细表": { + "tableName": "设备购置费明细表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "序号": "", + "工程或费用名称": "设备购置费", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:120px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "序号": "1", + "工程或费用名称": "甲供设备购置费", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:120px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "序号": "1.1", + "工程或费用名称": "甲供设备费含税", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:120px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "序号": "1.2", + "工程或费用名称": "甲供设备运杂费", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:120px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "序号": "2", + "工程或费用名称": "乙供设备购置费", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:120px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "序号": "2.1", + "工程或费用名称": "乙供设备费不含税", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:120px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "序号": "2.2", + "工程或费用名称": "乙供设备运杂费", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:120px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "序号": "2.3", + "工程或费用名称": "乙供设备税金", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:120px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "序号": "", + "工程或费用名称": "", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:120px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:50px;", + "序号": "", + "工程或费用名称": "合计", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "", + "工程或费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:120px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 50, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "工程或费用名称", + "columnLable": "工程或费用名称", + "dataType": 120, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "金额", + "columnLable": "金额", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "50" + }, + { + "fileName": "工程或费用名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "工程或费用名称", + "show": "1", + "width": "120" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "金额", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "金额", + "show": "1", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "设备购置费明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "建设期贷款利息明细表": { + "tableName": "建设期贷款利息明细表", + "rows": [ + { + "itemMap": { + "贷款时期": "全期", + "本年利息TDSTYLE": "font-weight:400;font-family:宋体;width:63px;", + "年初本息累计": "", + "贷款月数(月)TDSTYLE": "font-weight:400;font-family:宋体;width:91px;", + "贷款月数(月)": "", + "贷款时期TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "年初本息累计TDSTYLE": "font-weight:400;font-family:宋体;width:84px;", + "表达式": "贷款金额*贷款年数*贷款利息/100*0.5", + "表达式TDSTYLE": "font-weight:400;font-family:宋体;width:154px;", + "贷款年度": "1", + "本年利息": "220992.37", + "本年贷款额TDSTYLE": "font-weight:400;font-family:宋体;width:77px;", + "本年贷款额": "9344286.45", + "贷款年度TDSTYLE": "font-weight:400;font-family:宋体;width:63px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "贷款时期", + "columnLable": "贷款时期", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "贷款年度", + "columnLable": "贷款年度", + "dataType": 63, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "贷款月数(月)", + "columnLable": "贷款月数(月)", + "dataType": 91, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "本年贷款额", + "columnLable": "本年贷款额", + "dataType": 77, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "年初本息累计", + "columnLable": "年初本息累计", + "dataType": 84, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "本年利息", + "columnLable": "本年利息", + "dataType": 63, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "表达式", + "columnLable": "表达式", + "dataType": 154, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "贷款时期", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "贷款时期", + "show": "1", + "width": "77" + }, + { + "fileName": "贷款年度", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "贷款年度", + "show": "1", + "width": "63" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "贷款月数(月)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "贷款月数(月)", + "show": "1", + "width": "91" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "本年贷款额", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "本年贷款额", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "年初本息累计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "年初本息累计", + "show": "1", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "本年利息", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "本年利息", + "show": "1", + "width": "63" + }, + { + "fileName": "表达式", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "表达式", + "show": "1", + "width": "154" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "建设期贷款利息明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "勘察费明细表": { + "tableName": "勘察费明细表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "1", + "施工图勘测.数量": "", + "施工图勘测.调整系数": "", + "合价": "", + "施工图勘测.基价": "((((0.0950-0.0651) / (21-12)) * (15-12)+0.0651) * 4)* 10000", + "初步勘测.基价": "((((0.0950-0.0651) / (21-12)) * (15-12)+0.0651))* 10000", + "初步勘测.数量": "", + "取费项目名称": "工程勘察收费基价", + "初步勘测.调整系数": "", + "施工图勘测.合价": "", + "取费项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "初步勘测.合价": "", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "2", + "施工图勘测.数量": "8.23", + "施工图勘测.调整系数": "1", + "合价": "", + "施工图勘测.基价": "((((0.0950-0.0651) / (21-12)) * (15-12)+0.0651) * 4)* 10000", + "初步勘测.基价": "((((0.0950-0.0651) / (21-12)) * (15-12)+0.0651))* 10000", + "初步勘测.数量": "8.23", + "取费项目名称": "工程勘察收费基准价", + "初步勘测.调整系数": "1", + "施工图勘测.合价": "24711.95", + "取费项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "初步勘测.合价": "6177.99", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "3", + "施工图勘测.数量": "", + "施工图勘测.调整系数": "", + "合价": "30889.94", + "施工图勘测.基价": "", + "初步勘测.基价": "", + "初步勘测.数量": "", + "取费项目名称": "勘察费小计", + "初步勘测.调整系数": "", + "施工图勘测.合价": "24711.95", + "取费项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "初步勘测.合价": "6177.99", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "4", + "施工图勘测.数量": "", + "施工图勘测.调整系数": "0.2", + "合价": "6177.99", + "施工图勘测.基价": "30889.94", + "初步勘测.基价": "", + "初步勘测.数量": "", + "取费项目名称": "电力工程勘察设计准备费", + "初步勘测.调整系数": "", + "施工图勘测.合价": "", + "取费项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "初步勘测.合价": "", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "5", + "施工图勘测.数量": "", + "施工图勘测.调整系数": "", + "合价": "37067.92", + "施工图勘测.基价": "", + "初步勘测.基价": "", + "初步勘测.数量": "", + "取费项目名称": "勘察费合计", + "初步勘测.调整系数": "", + "施工图勘测.合价": "", + "取费项目名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "初步勘测.合价": "", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "取费项目名称", + "columnLable": "取费项目名称", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "初步勘测.调整系数", + "columnLable": "初步勘测.调整系数", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "初步勘测.基价", + "columnLable": "初步勘测.基价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "初步勘测.数量", + "columnLable": "初步勘测.数量", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "初步勘测.合价", + "columnLable": "初步勘测.合价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "施工图勘测.调整系数", + "columnLable": "施工图勘测.调整系数", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "施工图勘测.基价", + "columnLable": "施工图勘测.基价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "施工图勘测.数量", + "columnLable": "施工图勘测.数量", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "施工图勘测.合价", + "columnLable": "施工图勘测.合价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价", + "columnLable": "合价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "取费项目名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "取费项目名称", + "show": "1", + "width": "175" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "4", + "fileName": "初步勘测.调整系数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "调整系数", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "初步勘测.基价", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "基价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "初步勘测.数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "初步勘测.合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "初步勘测", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "4", + "fileName": "施工图勘测.调整系数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "调整系数", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "施工图勘测.基价", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "基价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "施工图勘测.数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "施工图勘测.合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "施工图勘测", + "show": "1" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价", + "show": "1", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "勘察费明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "勘察费复杂程度表": { + "tableName": "勘察费复杂程度表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "复杂程度因素分类TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "序号": "1", + "类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "因素说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "系数": "1", + "复杂程度因素分类": "地形", + "因素说明": "地形起伏平坦或稍有坡度", + "类别": "Ⅰ", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "复杂程度因素分类TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "序号": "2", + "类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "因素说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "系数": "10", + "复杂程度因素分类": "通视通行", + "因素说明": "地区开阔,通视良好;通行方便的平原或草原", + "类别": "Ⅰ", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "复杂程度因素分类TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "序号": "3", + "类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "因素说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "系数": "1", + "复杂程度因素分类": "地物", + "因素说明": "房屋、矿洞、地质勘探点(线)、沟坎、道路、水系、灌网及各种管线等面积≤5%", + "类别": "Ⅰ", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "复杂程度因素分类TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "序号": "4", + "类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "因素说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "系数": "2", + "复杂程度因素分类": "工程地质", + "因素说明": "地质构造简单、地层岩性单一(以Ⅰ类岩土为主)", + "类别": "Ⅰ", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "复杂程度因素分类TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "序号": "5", + "类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "因素说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "系数": "1", + "复杂程度因素分类": "水文气象", + "因素说明": "基础资料齐全;水文情势简单", + "类别": "Ⅰ", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "复杂程度因素分类TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "序号": "", + "类别TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "因素说明TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "系数": "15", + "复杂程度因素分类": "合计", + "因素说明": "", + "类别": "", + "系数TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 35, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "复杂程度因素分类", + "columnLable": "复杂程度因素分类", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "因素说明", + "columnLable": "因素说明", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "类别", + "columnLable": "类别", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "系数", + "columnLable": "系数", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "35" + }, + { + "fileName": "复杂程度因素分类", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "复杂程度因素分类", + "show": "1", + "width": "175" + }, + { + "fileName": "因素说明", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "因素说明", + "show": "1", + "width": "175" + }, + { + "fileName": "类别", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "类别", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "系数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "系数", + "show": "1", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "1", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "勘察费复杂程度表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "设计费明细表": { + "tableName": "设计费明细表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "调整系数TDSTYLE": "font-weight:400;font-family:宋体;width:245px;", + "序号": "", + "合价": "11155128.08", + "调整系数": "(本体工程费+设备购置费)/10000", + "基价": "", + "名称": "设计费计费额", + "名称TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "基价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "调整系数TDSTYLE": "font-weight:400;font-family:宋体;width:245px;", + "序号": "", + "合价": "11155128.08", + "调整系数": "", + "基价": "11155128.08", + "名称": "计费额", + "名称TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "基价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "调整系数TDSTYLE": "font-weight:400;font-family:宋体;width:245px;", + "序号": "", + "合价": "11155128.08", + "调整系数": "", + "基价": "", + "名称": "计费额小计", + "名称TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "基价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "调整系数TDSTYLE": "font-weight:400;font-family:宋体;width:245px;", + "序号": "1", + "合价": "406653.84", + "调整系数": "1000 * 3.72 / 100 + (1115.512808 - 1000) * 3.0 / 100", + "基价": "", + "名称": "基本设计费", + "名称TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "基价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "调整系数TDSTYLE": "font-weight:400;font-family:宋体;width:245px;", + "序号": "", + "合价": "406653.84", + "调整系数": "", + "基价": "", + "名称": "基本设计费小计", + "名称TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "基价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "调整系数TDSTYLE": "font-weight:400;font-family:宋体;width:245px;", + "序号": "2", + "合价": "20332.69", + "调整系数": "5%", + "基价": "406653.84", + "名称": "总体设计费", + "名称TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "基价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "调整系数TDSTYLE": "font-weight:400;font-family:宋体;width:245px;", + "序号": "3", + "合价": "40665.38", + "调整系数": "10%", + "基价": "406653.84", + "名称": "施工图预算编制费", + "名称TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "基价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "调整系数TDSTYLE": "font-weight:400;font-family:宋体;width:245px;", + "序号": "4", + "合价": "32532.31", + "调整系数": "8%", + "基价": "406653.84", + "名称": "竣工图编制费", + "名称TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "基价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "调整系数TDSTYLE": "font-weight:400;font-family:宋体;width:245px;", + "序号": "", + "合价": "93530.38", + "调整系数": "", + "基价": "", + "名称": "其他设计费小计", + "名称TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "基价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:35px;", + "调整系数TDSTYLE": "font-weight:400;font-family:宋体;width:245px;", + "序号": "", + "合价": "500184.23", + "调整系数": "", + "基价": "", + "名称": "设计费合计", + "名称TDSTYLE": "font-weight:400;font-family:宋体;width:105px;", + "合价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "基价TDSTYLE": "font-weight:400;font-family:宋体;width:70px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 35, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "名称", + "columnLable": "名称", + "dataType": 105, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "调整系数", + "columnLable": "调整系数", + "dataType": 245, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "基价", + "columnLable": "基价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价", + "columnLable": "合价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "35" + }, + { + "fileName": "名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "名称", + "show": "1", + "width": "105" + }, + { + "fileName": "调整系数", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "调整系数", + "show": "1", + "width": "245" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "基价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "基价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价", + "show": "1", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "设计费明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "主要材料设计费价格调整表": { + "tableName": "主要材料设计费价格调整表", + "rows": [], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 35, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "名称", + "columnLable": "名称", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "计费价格", + "columnLable": "计费价格", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "概算单价", + "columnLable": "概算单价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "数量", + "columnLable": "数量", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "调整额合计", + "columnLable": "调整额合计", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "备注", + "columnLable": "备注", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "35" + }, + { + "fileName": "名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "名称", + "show": "1", + "width": "175" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "计费价格", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "计费价格", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "概算单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "概算单价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "调整额合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "调整额合计", + "show": "1", + "width": "70" + }, + { + "fileName": "备注", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "1", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "主要材料设计费价格调整表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "组合件汇总表": { + "tableName": "组合件汇总表", + "rows": [], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 60, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "编码", + "columnLable": "编码", + "dataType": 60, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "项目名称", + "columnLable": "项目名称", + "dataType": 200, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "数量", + "columnLable": "数量", + "dataType": 60, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "单价", + "columnLable": "单价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "合价", + "columnLable": "合价", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "60" + }, + { + "fileName": "编码", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编码", + "show": "1", + "width": "60" + }, + { + "fileName": "项目名称", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "项目名称", + "show": "1", + "width": "200" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "数量", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "60" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "备注", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-16", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "0", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "组合件汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "可抵扣增值税分析表": { + "tableName": "可抵扣增值税分析表", + "rows": [ + { + "itemMap": { + "可抵扣金额": "1069377.22", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "一", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "本体工程费", + "备注": "", + "可抵扣金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "可抵扣金额": "551675.4", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "1.1", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "本体工程", + "备注": "", + "可抵扣金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "可抵扣金额": "517701.82", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "1.2", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "甲供主材(含价差)", + "备注": "", + "可抵扣金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "可抵扣金额": "", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "二", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "设备购置费", + "备注": "", + "可抵扣金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "可抵扣金额": "", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "2.1", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "乙供设备", + "备注": "", + "可抵扣金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "可抵扣金额": "", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "2.2", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "甲供设备", + "备注": "", + "可抵扣金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "可抵扣金额": "61566.59", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "三", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "其他费用", + "备注": "", + "可抵扣金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "可抵扣金额": "1130943.8", + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "合计", + "备注": "", + "可抵扣金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "费用名称", + "columnLable": "费用名称", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "可抵扣金额", + "columnLable": "可抵扣金额", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "备注", + "columnLable": "备注", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "费用名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "费用名称", + "show": "1", + "width": "175" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "可抵扣金额", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "可抵扣金额", + "show": "1", + "width": "70" + }, + { + "fileName": "备注", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "1", + "width": "175" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "可抵扣增值税分析表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程基准期价差明细表": { + "tableName": "架空输电线路工程基准期价差明细表", + "rows": [ + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "1", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "线路编制基准期价差", + "备注": "", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "1692683.02", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "1.1", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "人工价差", + "备注": "", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "200808.02", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "1.2", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "材料价差", + "备注": "", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "19796.43", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "1.3", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "机械价差", + "备注": "", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "40402.97", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "1.4", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "装置性材料价差", + "备注": "", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "1431675.61", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + }, + { + "itemMap": { + "序号TDSTYLE": "font-weight:400;font-family:宋体;width:56px;", + "序号": "2", + "备注TDSTYLE": "font-weight:400;font-family:宋体;width:175px;", + "费用名称": "合计", + "备注": "", + "金额TDSTYLE": "font-weight:400;font-family:宋体;width:70px;", + "金额": "1692683.02", + "费用名称TDSTYLE": "font-weight:400;font-family:宋体;width:175px;" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 56, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "费用名称", + "columnLable": "费用名称", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "金额", + "columnLable": "金额", + "dataType": 70, + "tag": "left", + "columnIndex": 0 + }, + { + "columnName": "备注", + "columnLable": "备注", + "dataType": 175, + "tag": "left", + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false, + "leftHeader": "", + "middleHeader": "", + "rightHeader": "金额单位:元", + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "费用名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "费用名称", + "show": "1", + "width": "175" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "金额", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "金额", + "show": "1", + "width": "70" + }, + { + "fileName": "备注", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "1", + "width": "175" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "安装基准期价差明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "变量表": { + "tableName": "变量表", + "rows": [ + { + "itemMap": { + "Value": "0", + "Name": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "高速公路" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "跳线间隔棒用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "气象条件_主要风速(预规)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "显示空表", + "Name": "空表显示状态" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "线材1" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "线材2" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "关联造价工程id" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "地线1单价" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程投资" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "11.731", + "Name": "基坑岩石" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "4423", + "Name": "盘式绝缘子用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "32.696", + "Name": "掏挖土方单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "甲供材料是否计取税金" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "万元", + "Name": "金额单位" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "537.424", + "Name": "盘式绝缘子单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "气象条件_最高温度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "5", + "Name": "脚手架费率" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "余土运距" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.0678", + "Name": "OPGW其中:弧垂单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0%", + "Name": "钢管杆比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "插入式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2024年09月15日", + "Name": "新建时间" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "354.786", + "Name": "其中:挖孔基础现浇混凝土量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "自定义定额库", + "Name": "默认自定义定额库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢绞地线单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "是否重算费用" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "国网版", + "Name": "浙江接口项目类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "工程参数_直线转角塔基数(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "降阻剂单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "桩基础" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程建筑面积" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "基础形式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "本期台数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1.178", + "Name": "地脚螺栓单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "专业扩展类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程默认人材机库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "地线2单价" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢绞地线用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "地线防振锤用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "是否组合件库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "护坡挡土墙钢材单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1268.0041", + "Name": "工程总投资" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "23.8", + "Name": "社会保险费缴费费率" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "护坡挡土墙钢材用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "783.715", + "Name": "基坑土石方单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1", + "Name": "基本预备费费率" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "地线用量(含弧垂)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "土质比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "65.517%", + "Name": "直线塔比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "常规地区", + "Name": "特殊地区" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "拆除建筑材料按系数调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "一回", + "Name": "线路回路数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "主要材料价格_塔材" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1", + "Name": "拆除安装人工按系数调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程概况信息" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢管塔基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "灰土垫层单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "岩石" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "8.748", + "Name": "耐张串单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "气象条件_最低温度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "7.1932", + "Name": "导线单公里用量(含弧垂)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "34.96", + "Name": "松砂石比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "662.052", + "Name": "其中:现浇基础现浇混凝土量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "商品砼预算价" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "资质证书" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "导入发布版工程量清单" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "按实际用量计算", + "Name": "设置线材工地运输计算方式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "18", + "Name": "泥沼" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "553.588", + "Name": "砂子用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "气象条件" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.89", + "Name": "工资津贴补差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "3.2.3", + "Name": "BCL版本" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "13.487", + "Name": "间隔棒单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "打开工程是否需要刷新招标人信息" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1", + "Name": "拆除安装材料按系数调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "标段" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6.9", + "Name": "拆除机械调差系数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "94", + "Name": "附件工程费用(万元)(含价差)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "良导体地线单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "自定义拆除定额库", + "Name": "默认自定义拆除定额库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "丘陵地形比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "拉线单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "耐张钢管杆基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "高山" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "降阻剂用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "524.909", + "Name": "玻璃绝缘子单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "否", + "Name": "安装工程量是否首次统计工程量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "自定义清单库(2014)", + "Name": "默认自定义清单库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "否", + "Name": "是否按单位控制工程量精度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1", + "Name": "安装材料按系数调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "树木砍伐赔偿费用(万元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1116", + "Name": "本体工程(不含设备)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "40.079", + "Name": "流砂、干砂比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "拆除预算 第三册 架空线路工程", + "Name": "拆除安装工程默认定额库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1", + "Name": "拆除建筑人工按系数调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "37.84", + "Name": "水泥单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.1", + "Name": "脚手架机械费系数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "342", + "Name": "基础工程费用(万元)(含价差)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "5100", + "Name": "SID" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "57", + "Name": "悬垂串(不含V型串)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.4", + "Name": "脚手架人工费系数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "跨越" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1180000", + "Name": "其他费用(元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "143.077", + "Name": "碎石单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1116", + "Name": "本体工程" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "67.265", + "Name": "砂子单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "架线合并方案预算类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程密码" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "10", + "Name": "高压线(含10kV)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "172.481", + "Name": "接地土石方单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.4072", + "Name": "导线其中:跳线和导线弧垂单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "主要材料价格_挂线金具" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "调差系数文件〔2024年1号文〕", + "Name": "调差文件" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "较硬岩比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "峻岭地形比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程模式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "山地" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "编辑时间" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "江西", + "Name": "工程所在地" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "否", + "Name": "物料价格联动" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "生育保险费缴费费率" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "7.161", + "Name": "接地钢材用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1.419", + "Name": "护壁土石方单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "是否设置岩石坑排水" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "12", + "Name": "接地工程费用(万元)(含价差)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2014版", + "Name": "清单规范" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢绞地线用量(含弧垂)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "地线弧垂用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "14.34", + "Name": "其他费用(单)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "光缆2价格" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "一般线路", + "Name": "架线类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "8.567", + "Name": "基础钢材单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.288", + "Name": "普通土比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "34.483%", + "Name": "耐张比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "13.487", + "Name": "间隔棒单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "15000", + "Name": "导线1单价" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "8.567", + "Name": "基础钢材单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "河网" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "4", + "Name": "其他基础型式(预规)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "3", + "Name": "标准清单编码长度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "启用自定义安全文明施工费" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "施工费记取甲供设备运杂费" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "主要材料价格_瓷绝缘子" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "高铁" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "失业保险费缴费费率" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "直线钢管杆基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "{53850D22-14E7-431A-B820-DEB13E8AF58D}", + "Name": "工程唯一标识码" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1.18", + "Name": "工程参数_曲折系数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6.786", + "Name": "导线单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "40.952", + "Name": "其中:挖孔基础现浇混凝土单公里用量(不含超灌量)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6180.885", + "Name": "开挖土方量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "塔基占地面积" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "主要材料价格" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "拉线2型号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "794.688", + "Name": "碎石用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "Ⅰ类", + "Name": "地区类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "11.731", + "Name": "基坑岩石(人凿)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "50.919", + "Name": "砂子单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1010.939", + "Name": "土石方单公里用量合计" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢管杆单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "线路组件库(2018版).zjzjk", + "Name": "线路清单组件库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "是", + "Name": "拆分材料人工是否调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程造价咨询人" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程默认设备库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "山地地形比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "加挂导线" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢绞地线用量其中:引流线和地线弧垂单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "59.1997", + "Name": "导线用量(含弧垂)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "默认清单组价方式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "10.6661", + "Name": "OPGW用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "导线2单价" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "地线瓷绝缘子用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "20.53", + "Name": "编制期价差(单)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "机械台班拆分" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "地方规范" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工伤保险费缴费费率" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1", + "Name": "拆除安装机械按系数调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "编制人" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "施工图预算", + "Name": "工程类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "耐张、转角塔导线挂线是否计算综合地形增加费" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "招标控制价导造价接口" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "65.517%", + "Name": "直线角钢塔比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "博微电力建设计价通软件", + "Name": "软件名称" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "45.93", + "Name": "防振锤单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1.296", + "Name": "OPGW单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "一笔性施工企业配合调试费" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "12.515", + "Name": "瓷绝缘子单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "34.719", + "Name": "掏挖土方单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "固定综合单价模式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "导入工程量清单" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "35", + "Name": "低压线" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "3.3509", + "Name": "导线其中:跳线和导线弧垂用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "普通土0.288% 坚土1.486% 松砂石34.96% 泥水坑23.187% 流砂坑40.079% ", + "Name": "工程土质比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "其中:灌注桩" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "建筑工程默认规则库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "只读" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "铁路" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "工程参数_转角次数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "预算", + "Name": "表头设置" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "拉线1型号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "220kV", + "Name": "电压等级" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "34.483%", + "Name": "耐张角钢塔比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "法定(授权)代表人" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "护壁钢材单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "是否第一次打开工程" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "铺石加混凝土" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1690000", + "Name": "编制期价差(元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "防振锤用量(避雷线)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "瓷绝缘子单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "规划单台容量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "辅助工程(单)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "4320", + "Name": "玻璃绝缘子用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "拉线金具单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "插件名称" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6.9", + "Name": "拆除材料调差系数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程参数_导地线防震措施(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "290", + "Name": "尖峰及施工基面土石方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "JL/G1A-300/40", + "Name": "导线1型号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "插入材用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2006", + "Name": "定额价目本" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "52.78", + "Name": "素混凝土" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "锚杆" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "751.019", + "Name": "开挖土方单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "8.23", + "Name": "架线长度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1130000", + "Name": "可抵扣增值税(元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "BA", + "Name": "安装项目划分代码前缀" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "辅助工程(万元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "辅助工程(元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "电网预规2018年版", + "Name": "执行规范" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "是", + "Name": "不同土质定额归属不同清单" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "12460000", + "Name": "工程静态投资(元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程构成类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "架空输电线路工程", + "Name": "项目划分" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "投标人" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "地线防振锤单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "本期容量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0%", + "Name": "耐张杆比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "地线用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "新建", + "Name": "工程性质" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "8.23", + "Name": "单回路" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "招标物料库唯一标识" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "沙漠" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "防振锤单公里用量(避雷线)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "线路典型清单库", + "Name": "安装工程默认规则库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "3.2.3.32", + "Name": "工程版本" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1.46", + "Name": "其中:基本预备费(单)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "干砂坑比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "8.23", + "Name": "折单回总长度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "8.23", + "Name": "拆除人工调差系数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "3", + "Name": "塔材以大代小" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程参数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "导线2型号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "40.079", + "Name": "流砂坑比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "主要材料价格_钢管塔材" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程描述" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "六回路" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "杆塔" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "是(清单属性及工程量一致)", + "Name": "相同清单合并" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "151.4", + "Name": "静态投资(单)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程参数_维护通讯方式(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程概况信息_终点" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "地线单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "10", + "Name": "耐张塔基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1633.354064", + "Name": "余土外运量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "塔材代用部分是否自动计算安装费" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "主要材料价格_基础钢材" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0%", + "Name": "耐张钢管塔比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程地址" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢绞地线单公里用量(含弧垂)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "{C7C8C6CA-82A6-48F1-BFF1-37F1BEC1A661}", + "Name": "工程唯一标志" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "架空输电线路工程", + "Name": "项目类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0%", + "Name": "直线钢管塔比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "气象条件_雷电小时(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "良导体地线用量其中:引流线和地线弧垂用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "余土汽车运距" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "其他基础型式(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "加密属性" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "12", + "Name": "基本预备费(万元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0%", + "Name": "钢管塔比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "11.68", + "Name": "护壁土石方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "主要材料价格_OPGW" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "BA", + "Name": "线路项目划分代码前缀" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "地形调整及跳跃施工计算顺序" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "隐藏中标数据" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "57", + "Name": "悬垂串" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "294", + "Name": "架线工程费用(万元)(含价差)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "气象条件_雷电日" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "平地地形比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "调差系数文件〔2024年1号文〕", + "Name": "工程调差文件" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "34.626", + "Name": "水泥单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程地形" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "111", + "Name": "间隔棒用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢管塔材单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "V型串单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "耐张杆基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "合成绝缘子单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "15", + "Name": "公路" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "116.106", + "Name": "排水沟土石方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "19.077", + "Name": "护坡挡土墙排水沟土石方单公里量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "96.56", + "Name": "碎石单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "水坑比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "耐张混凝土杆基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "中介机构法定(授权)代表人" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6610.512", + "Name": "基坑土石方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "地线1根数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1.661", + "Name": "其中:基础护壁单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "塔基占地亩数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "是否首次统计工程量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "预制混凝土用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "3.888", + "Name": "跳线串单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "预制" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "尖峰及施工基面岩石(人凿)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "11160000", + "Name": "本体工程(不含设备)(元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "100", + "Name": "护坡挡土墙土石方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "103", + "Name": "瓷绝缘子用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6.413", + "Name": "素混凝土垫层单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "118", + "Name": "其他费用(万元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "基础垫层" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "8", + "Name": "岩石灌浆基础超灌量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "71", + "Name": "辅助工程费用(万元)(含价差)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "35.237", + "Name": "尖峰及施工基面土石方单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "-1", + "Name": "甲供材料损耗是否计入甲供材料费" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "国网清单工程", + "Name": "区域类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "壹仟贰佰陆拾捌万元整", + "Name": "工程总投资(大写)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "发布版本" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "120000", + "Name": "基本预备费(元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "23.295", + "Name": "基坑普通土" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "52.343", + "Name": "导线1长度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "线路清单统计规则(2014版清单规范).bwqdk6", + "Name": "线路清单统计规则库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "30.227", + "Name": "角钢塔材单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "803.221", + "Name": "基坑土石方单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "419.06", + "Name": "砂子用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "220kV架空线路工程", + "Name": "工程名称" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "是", + "Name": "是否自动计算凿桩头总量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "311.421", + "Name": "水泥用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.4", + "Name": "脚手架人工工日系数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1", + "Name": "措施规费按清单级取费" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.5578", + "Name": "OPGW其中:弧垂用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "耐张钢管塔基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "地线2根数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "直线钢管塔基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "False", + "Name": "云端同步" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "Ⅰ类", + "Name": "地区分类" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1532.223", + "Name": "基坑泥水坑" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "咨询人法定代表人或其授权人" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "铺石加混凝土垫层单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "130.5", + "Name": "尖峰及施工基面普通土" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "157", + "Name": "护坡挡土墙排洪沟土石方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "302", + "Name": "杆塔工程费用(万元)(含价差)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "预算转清单" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "其他运距" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢管塔材用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "国网14升21" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程编号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "施工图预算", + "Name": "预算类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1.3638", + "Name": "OPGW单公里用量(含弧垂)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "169", + "Name": "编制期价差(万元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "预算 第四册 架空输电线路工程(2018年版)", + "Name": "安装工程默认定额库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "直线混凝土杆基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "导线2长度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "70.509", + "Name": "基础钢材用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "主要技术经济指标5" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "主要技术经济指标4" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "铺石灌浆垫层单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢绞地线用量其中:引流线和地线弧垂用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "项目划分级别显示", + "Name": "取费表显示级别" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "良导体地线单公里用量(含弧垂)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "灰土垫层" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "拉线2根数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "定额版本" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "P", + "Name": "负责人工号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "248.77", + "Name": "塔材量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "增值税", + "Name": "计税方式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "124.004", + "Name": "基坑坚土" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "防振锤单公里用量(光缆)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "湿陷性黄土" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程参数_地线绝缘方式(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.742", + "Name": "挂线金具单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "地线2长度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "12014", + "Name": "QtyID" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "285.74", + "Name": "掏挖土方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "新建", + "Name": "工程改造性质" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程深度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "12680000", + "Name": "工程总投资(元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "17", + "Name": "现浇护壁超灌量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢管杆基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0%", + "Name": "直线杆比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "32", + "Name": "跳线串" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "高山地形比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "所区占地面积" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "其中:灌注桩用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "拆除建筑机械按系数调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "29", + "Name": "杆塔总数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2.0.1.6;2.1.0.61;2.1.0.175;2.2.1.2;2.3.0.83;2.3.1.5;2.3.4.3;2.4.0.124;2.4.1.4;2.4.3.3;2.4.4.5;2.5.0.155;2.5.1.14;2.6.0.218;2.6.2.0;2.6.3.0;2.7.0.0;2.8.0.0;3.0.0.0;3.0.1.0;3.1.0.0;3.1.1.0;3.1.2.0;3.2.0.0;3.2.2.0;3.2.3.0;", + "Name": "升级历史" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "显示全部数据" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "主要材料价格_角钢塔材" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "岩石(爆破)比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "主要材料价格_玻璃绝缘子" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "284.974", + "Name": "水泥用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "378", + "Name": "防振锤用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程历史版本列表" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "阶梯式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "混凝土杆基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "跳线间隔棒单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "主要技术经济指标1" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "综合单价", + "Name": "组价方式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "主要技术经济指标3" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1246", + "Name": "工程静态投资(万元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "光缆2型号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6.926", + "Name": "悬垂串单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "主要技术经济指标2" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "主要材料价格_合成绝缘子" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "动态投资(单)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2", + "Name": "导线1根数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "定额计价", + "Name": "计价方式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "人工费", + "Name": "脚手架计算基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "12", + "Name": "住房公积金缴费费率" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "拉线1根数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1419.52", + "Name": "接地土石方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "378", + "Name": "防振锤用量(导线)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "2.3.4升级工程" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "45.93", + "Name": "防振锤单公里用量(导线)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "72", + "Name": "耐张串" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "其中:灌注桩单公里用量(不含超灌量)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "土石方" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "招标人" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "V型串" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "组件参数汇总错误" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "双回路" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "70.509", + "Name": "基础钢材用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "塔材代用部分是否计入主材费" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢管杆塔基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "工程参数_最大挡距(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "装置性材料预算价2018", + "Name": "工程默认主材库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "14", + "Name": "河流" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "17", + "Name": "灌注桩超灌量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "是", + "Name": "市场价唯一" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "19", + "Name": "直线塔基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "主要材料价格_水泥" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "其中:灌注桩用量(不含超灌量)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1", + "Name": "安装机械按系数调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2612.938", + "Name": "基坑流砂" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2018年版预规", + "Name": "配置选项" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "500", + "Name": "工程概况信息_海拔高度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "合成绝缘子用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程概况信息_设计单位" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1", + "Name": "安装人工按系数调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "护壁钢材用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "报表类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1.486", + "Name": "坚土比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6449.975", + "Name": "基坑土石方量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "9", + "Name": "工程税率" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "其中:建设场地征用及清理费(单)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "45.93", + "Name": "防振锤单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "青苗赔偿费(万元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "自定义材料库", + "Name": "默认自定义主材库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "岩石(人凿)比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "80.444", + "Name": "其中:现浇基础现浇混凝土单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "OPGW-36B1-125", + "Name": "光缆1型号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程概况信息_起点" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.87", + "Name": "接地钢材单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "导线2根数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "概预算", + "Name": "阶段类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "气象条件_最大覆冰(预规)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "7", + "Name": "掏挖式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "125.213", + "Name": "现浇混凝土单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2", + "Name": "光缆1根数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程阶段" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "规划台数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "线路组件库(2014版清单规范)", + "Name": "默认组件库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "线路定额统计规则(2018版).bwgzk6", + "Name": "线路定额统计规则库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "基坑较硬岩" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "光缆2芯数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "59", + "Name": "平地" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1", + "Name": "材机是否按系数调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "峻岭" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "378", + "Name": "防振锤用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "气象条件_保护角" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "直线杆基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "高压线" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.5", + "Name": "脚手架材料费系数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "19000", + "Name": "光缆1价格" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "基坑水坑" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "11160000", + "Name": "本体工程(元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "本期单台容量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2024年上半年调差系数文件(28号文)", + "Name": "拆除工程调差文件" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "10", + "Name": "汽车运距" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "防振锤用量(光缆)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "混凝土杆单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "工程参数_平均挡距(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "自定义设备库", + "Name": "默认自定义设备库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "55.8488", + "Name": "导线用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "是否第一次打开工程_全口径转结算" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程默认调试库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6", + "Name": "其中:挖孔桩" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢管桩" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1030.504", + "Name": "现浇混凝土用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "337.036", + "Name": "其中:挖孔基础现浇混凝土量(不含超灌量)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2306.32", + "Name": "基坑松砂石" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "良导体地线用量(含弧垂)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "送电线路清单库(2014)", + "Name": "安装工程默认清单库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1", + "Name": "建筑人工按系数调差" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "34.483%", + "Name": "耐张塔比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "其中:建设场地征用及清理费(万元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "主网架空线路造价分析指标", + "Name": "指标库名称" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "8.23", + "Name": "线路亘长" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "光缆2根数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "插入材单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "尖峰及施工基面岩石坑" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "S0kJdnJkwLdUvWszCEkUBnMSw68p0mVFHUEJcAgTxrRSpGZGBwUVAwdix7MhqGszAg==", + "Name": "工程有效性数据" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "●工程名称:220kV架空线路工程\n●项目划分:架空输电线路工程\n●工程阶段:施工图预算\n●地区类型:Ⅰ类\n●工程所在地:江西\n●执行规范:电网预规2018年版\n●工程版本:3.2.3.32\n●升级历史:2.0.1.6;2.1.0.61;2.1.0.175;2.2.1.2;2.3.0.83;2.3.1.5;2.3.4.3;2.4.0.124;2.4.1.4;2.4.3.3;2.4.4.5;2.5.0.155;2.5.1.14;2.6.0.218;2.6.2.0;2.6.3.0;2.7.0.0;2.8.0.0;3.0.0.0;3.0.1.0;3.1.0.0;3.1.1.0;3.1.2.0;3.2.0.0;3.2.2.0;3.2.3.0;\n●加密属性:", + "Name": "工程文件预览信息" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "项目划分面板数据加载" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6.926", + "Name": "悬垂串(不含V型串)单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程参数_污秽等级" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "气象条件_主要覆冰(预规)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "23", + "Name": "丘陵" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "7.31", + "Name": "材料调差系数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "地线1长度" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6900.512", + "Name": "基础土石方量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "塔基占地费(万元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "泥沼地形比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "7.31", + "Name": "机械调差系数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "基坑干砂坑" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "是", + "Name": "是否开放组件统计" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "坑底铺石垫层单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1268", + "Name": "工程总投资(万元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程信息" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "编制单位" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "导线2截面积" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "58", + "Name": "尖峰及施工基面松砂石" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1116", + "Name": "本体工程费(万元)(含价差)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "组合件模式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "地线1型号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "13.666", + "Name": "其中:基础护壁用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "瓷绝缘子用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "钢管杆用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "拉线金具用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "26", + "Name": "大板式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "地线单公里用量(含弧垂)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "43.109", + "Name": "其中:挖孔基础现浇混凝土单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "预规(2018版)", + "Name": "监理费计算依据" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2024-09-15", + "Name": "编制时间" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "地线弧垂单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "养老保险费缴费费率" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "7", + "Name": "掏挖基础超灌量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "录入工程量标记招" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "其中:灌注桩单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "是", + "Name": "甲供材料计入综合单价" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "2", + "Name": "人工挖孔" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "11.2239", + "Name": "OPGW用量(含弧垂)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "送电", + "Name": "专业类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "6.108", + "Name": "挂线金具用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "工程参数_平均耐张段长度(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "三回路" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "绝缘子悬挂方式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "FALSE", + "Name": "建筑消材应用调差范围" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "工程概况信息_输送容量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "248.77", + "Name": "角钢塔材用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "按线路亘长计算", + "Name": "材料单公里用量计算规则" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "冷却方式" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "BT", + "Name": "建筑项目划分代码前缀" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "113", + "Name": "可抵扣增值税(万元)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "良导体地线用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "坑底铺石" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "建筑工程默认清单库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "13", + "Name": "物料增值税率" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "四回路" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "10", + "Name": "10kV" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "基坑岩石(爆破)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "27", + "Name": "气象条件_设计风速(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "医疗保险费缴费费率" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "135.6", + "Name": "本体工程(单)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "地线2型号" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "地线瓷绝缘子单公里用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1268", + "Name": "总价万元" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "FALSE", + "Name": "材机界面是否只显示新增资源" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "标准配置", + "Name": "工程创建模板" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "7", + "Name": "钻孔爆扩基础超灌量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "混凝土杆用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "工程参数_线路换位循环个数(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "建筑工程默认定额库" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "22", + "Name": "建设期贷款利息" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "岩石比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "111", + "Name": "间隔棒用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "气象条件_最大风速(预规)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "尖峰及施工基面岩石(爆破)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "10", + "Name": "气象条件_覆冰厚度(导则)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "是否为特高压工程" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "36", + "Name": "光缆1芯数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "人力运距0.3km,汽车运距10km", + "Name": "工程运距" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "19", + "Name": "直线角钢塔基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "送审版", + "Name": "浙江接口项目版本" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "300", + "Name": "导线1截面积" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "良导体地线用量其中:引流线和地线弧垂单公里用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "10", + "Name": "耐张角钢塔基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "13.23", + "Name": "人工调差系数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "1177.523", + "Name": "碎石用量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "是否生成数据" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "269.09", + "Name": "掏挖土方量(西北)" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "拉线用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "地方清单规范" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "29", + "Name": "角钢塔基数" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "23.187", + "Name": "泥水坑比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "平地59%,丘陵23%,泥沼18%", + "Name": "工程地形比例" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "配合比拆分" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "", + "Name": "发布版工程量清单" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "铺石灌浆" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "Ⅰ类 地区", + "Name": "调差系数设置默认地区类型" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "101.5", + "Name": "尖峰及施工基面坚土坑" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0.3", + "Name": "人力运距" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "9.692", + "Name": "地脚螺栓用量" + }, + "itemMaps": [] + }, + { + "itemMap": { + "Value": "0", + "Name": "预制混凝土单公里用量" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "Name", + "columnLable": "Name", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "Value", + "columnLable": "Value", + "dataType": 0, + "columnIndex": 0 + } + ], + "repeatColumn": false + }, + "": { + "tableName": "", + "rows": [ + { + "itemMap": { + "取费基数": "", + "单位": "", + "序号": "", + "代码": "FFZ", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "", + "单位": "", + "序号": "", + "代码": "FFZ1", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "", + "单位": "", + "序号": "", + "代码": "DZF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "取费定额人工费", + "单位": "", + "序号": "", + "代码": "RGF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "取费定额乙供材料费不含税", + "单位": "", + "序号": "", + "代码": "CLF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "取费定额机械费", + "单位": "", + "序号": "", + "代码": "JXF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "", + "单位": "", + "序号": "", + "代码": "ZZCF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "甲供取费主材费含税", + "单位": "", + "序号": "", + "代码": "JZZCF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "乙供取费主材费不含税", + "单位": "", + "序号": "", + "代码": "YZZCF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "", + "单位": "", + "序号": "", + "代码": "FFZ2", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "取费定额人工费", + "单位": "", + "序号": "", + "代码": "DYF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "取费定额人工费", + "单位": "", + "序号": "", + "代码": "YSF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "取费定额人工费", + "单位": "", + "序号": "", + "代码": "SYF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "取费定额人工费", + "单位": "", + "序号": "", + "代码": "TDF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "DZF", + "单位": "", + "序号": "", + "代码": "LSF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "取费定额人工费", + "单位": "", + "序号": "", + "代码": "ZYF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "FFZ1-甲供主材进项税额", + "单位": "", + "序号": "", + "代码": "BZF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "", + "单位": "", + "序号": "", + "代码": "FFJ", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "", + "单位": "", + "序号": "", + "代码": "GF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "取费定额人工费*1.05", + "单位": "", + "序号": "", + "代码": "BZHF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "取费定额人工费*1.05", + "单位": "", + "序号": "", + "代码": "GJJ", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "取费定额人工费", + "单位": "", + "序号": "", + "代码": "GLF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "DZF", + "单位": "", + "序号": "", + "代码": "TSF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "FFZ+FFJ-甲供主材进项税额", + "单位": "", + "序号": "", + "代码": "FFR", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "", + "单位": "", + "序号": "", + "代码": "JC", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "人工价差", + "单位": "", + "序号": "", + "代码": "RJC", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "乙供材料价差不含税", + "单位": "", + "序号": "", + "代码": "CJC", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "机械价差", + "单位": "", + "序号": "", + "代码": "JJC", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "", + "单位": "", + "序号": "", + "代码": "ZCJC", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "甲供主材价差含税", + "单位": "", + "序号": "", + "代码": "JZCJC", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "乙供主材价差不含税", + "单位": "", + "序号": "", + "代码": "YZCJC", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "FFZ+FFJ+FFR+JC-甲供取费主材费含税-甲供主材价差含税+不取费定额费不含税+不取费乙供主材费不含税", + "单位": "", + "序号": "", + "代码": "FFS", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "", + "单位": "", + "序号": "", + "代码": "SBF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "乙供设备费不含税+乙供设备税金", + "单位": "", + "序号": "", + "代码": "SBY", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "甲供设备费含税", + "单位": "", + "序号": "", + "代码": "SBJ", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "DZF+FFZ2+FFJ+FFR+FFS+JC-ZCJC+不取费定额费不含税+一笔性费用", + "单位": "", + "序号": "", + "代码": "AZF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "ZZCF+ZCJC+不取费乙供主材费不含税+不取费甲供主材费含税", + "单位": "", + "序号": "", + "代码": "ZCF", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "AZF+ZCF+SBF", + "单位": "", + "序号": "", + "代码": "ZJ", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + }, + { + "itemMap": { + "取费基数": "ZJ-SBF", + "单位": "", + "序号": "", + "代码": "HJ", + "费用名称": "", + "费率(%)": "", + "备注": "" + }, + "itemMaps": [] + } + ], + "columns": [ + { + "columnName": "序号", + "columnLable": "序号", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "费用名称", + "columnLable": "费用名称", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "代码", + "columnLable": "代码", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "取费基数", + "columnLable": "取费基数", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "费率(%)", + "columnLable": "费率(%)", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "单位", + "columnLable": "单位", + "dataType": 0, + "columnIndex": 0 + }, + { + "columnName": "备注", + "columnLable": "备注", + "dataType": 0, + "columnIndex": 0 + } + ], + "tag": "rule", + "repeatColumn": false + }, + "架空部分汇总表(取费)": { + "tableName": "架空部分汇总表(取费)", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "49" + }, + { + "fileName": "工程或费用名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "工程或费用名称", + "show": "1", + "width": "196" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "定额直接费.人工费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "人工费", + "show": "0", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "定额直接费.材料费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "材料费", + "show": "0", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "定额直接费.施工机械使用费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "施工机械使用费", + "show": "0", + "width": "80" + } + ], + "isZeroShow": "0", + "name": "定额直接费", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "装置性材料费.甲供装置性材料费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "甲供装置性材料费", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "装置性材料费.乙供装置性材料费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "乙供装置性材料费", + "show": "0", + "width": "100" + } + ], + "isZeroShow": "0", + "name": "装置性材料费", + "show": "0" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "措施费.冬雨季施工增加费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "冬雨季施工增加费", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "措施费.夜间施工增加费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "夜间施工增加费", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "措施费.施工工具用具使用费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "施工工具用具使用费", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "措施费.特殊地区施工增加费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "特殊地区施工增加费", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "措施费.临时设施费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "临时设施费", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "措施费.施工机构迁移费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "施工机构迁移费", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "措施费.安全文明施工费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "安全文明施工费", + "show": "0", + "width": "100" + } + ], + "isZeroShow": "0", + "name": "措施费", + "show": "0" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "规费.社会保险费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "社会保险费", + "show": "0", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "规费.住房公积金", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "住房公积金", + "show": "0", + "width": "80" + } + ], + "isZeroShow": "0", + "name": "规费", + "show": "0" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "间接费.企业管理费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "企业管理费", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "间接费.施工企业配合调试费", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "施工企业配合调试费", + "show": "0", + "width": "100" + } + ], + "isZeroShow": "0", + "name": "间接费", + "show": "0" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "利润", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "利润", + "show": "0", + "width": "60" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "编制基准期价差.人工价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "人工价差", + "show": "0", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "编制基准期价差.材料价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "材料价差", + "show": "0", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "编制基准期价差.机械价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "机械价差", + "show": "0", + "width": "80" + } + ], + "isZeroShow": "0", + "name": "编制基准期价差", + "show": "0" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "装置性材料价差.甲供装置性材料价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "甲供装置性材料价差", + "show": "0", + "width": "90" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "装置性材料价差.乙供装置性材料价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "乙供装置性材料价差", + "show": "0", + "width": "90" + } + ], + "isZeroShow": "0", + "name": "装置性材料价差", + "show": "0" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "税金", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "税金", + "show": "0", + "width": "60" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "安装工程费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "安装工程费", + "show": "1", + "width": "77" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "各项占总计(%)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "各项占总计(%)", + "show": "1", + "width": "98" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单位投资", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单位投资(元/km)", + "show": "1", + "width": "105" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "77" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "表二甲", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "架空输电线路安装工程费用汇总[表头设置]表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程取费表": { + "tableName": "架空输电线路工程取费表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "费用名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "费用名称", + "show": "1", + "width": "175" + }, + { + "fileName": "计算说明", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "计算说明", + "show": "1", + "width": "175" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "费率", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "费率", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "总价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总价", + "show": "1", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "表三丙", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "架空输电线路工程取费表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "施工图预算管理工程数据收集表": { + "tableName": "施工图预算管理工程数据收集表", + "rows": [], + "columns": [], + "tag": "unrule", + "repeatColumn": false, + "tableStyle": { + "columns": [ + { + "width": "177" + }, + { + "width": "225" + }, + { + "width": "216" + }, + { + "width": "134" + } + ], + "pageInfo": { + "autoCalUnionRowHeight": "0", + "autoColumnWidth": "1", + "autoFillBlankLine": "0", + "bCalcPageCount": "1", + "bordyFrame": "0", + "colCount": "4", + "deflateSize": "3", + "fixColCount": "0", + "fixRowCount": "0", + "formatPrintFormulaText": "1", + "formatPrintText": "1", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "0" + }, + "marginBottom": "7.8125", + "marginLeft": "7.291667", + "marginRight": "7.291667", + "marginTop": "7.8125", + "middleMode": "0", + "orderMode": "1", + "orientMode": "0", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "2", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "2", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "架空线路工程[表头设置]数据收集表" + } + }, + "rowCount": "36", + "uniteCellAllowFillBlankLine": "0" + }, + "poePictureList": [], + "poeStylesList": [ + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "61442", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "61458", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "49152", + "fmt": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "57344", + "fmt": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "61440", + "fmt": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "8192", + "fmt": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + }, + { + "adj": "36", + "bsiz": "1", + "cb": "16777215", + "cf": "0", + "ct": "0", + "flg": "40960", + "fmt": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "lsiz": "1", + "rsiz": "1", + "siz": "1", + "stl": "0", + "tsiz": "1" + } + ], + "prePictureList": [], + "rows": [ + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "序号" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "3", + "ur": "1", + "value": "[工程编号]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "2", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[0].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[0].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[0].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[0].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "0", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "电压等级(kV)" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "3", + "ur": "1", + "value": "[电压等级]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "2", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[1].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[1].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[1].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[1].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "1", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "工程名称" + }, + "1": { + "index": "1", + "sel": "0", + "style": "1", + "uc": "3", + "ur": "1", + "value": "[工程名称]" + }, + "2": { + "index": "2", + "sel": "0", + "style": "2", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[2].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[2].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[2].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[2].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "2", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "数据来源" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[表头设置]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[3].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[3].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[3].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[3].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "3", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "0", + "uc": "1", + "ur": "11", + "value": "工程静态投资(万元)" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "1", + "ur": "7", + "value": "本体工程费用" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "基础工程费用" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[基础工程费用(万元)(含价差)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[4].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[4].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[4].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[4].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "4", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "杆塔工程费用" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[杆塔工程费用(万元)(含价差)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[5].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[5].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[5].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[5].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "5", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "接地工程费用" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[接地工程费用(万元)(含价差)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[6].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[6].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[6].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[6].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "6", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "架线工程费用" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[架线工程费用(万元)(含价差)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[7].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[7].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[7].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[7].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "7", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "附件工程费用" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[附件工程费用(万元)(含价差)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[8].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[8].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[8].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[8].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "8", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "辅助工程费用" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[辅助工程费用(万元)(含价差)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[9].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[9].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[9].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[9].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "9", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "小计" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[本体工程费(万元)(含价差)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[10].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[10].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[10].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[10].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "10", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "辅助设施工程" + }, + "2": { + "index": "2", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[辅助工程(万元)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[11].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[11].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[11].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[11].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "11", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "其他费用" + }, + "2": { + "index": "2", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[其他费用(万元)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[12].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[12].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[12].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[12].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "12", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "基本预备费" + }, + "2": { + "index": "2", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[基本预备费(万元)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[13].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[13].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[13].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[13].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "13", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "合计" + }, + "2": { + "index": "2", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[工程静态投资(万元)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[14].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[14].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[14].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[14].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "14", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "1", + "uc": "1", + "ur": "14", + "value": "主要工程量及费用对比" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "1", + "ur": "2", + "value": "路径长度(km)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "路径长度" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[线路亘长]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[15].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[15].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[15].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[15].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "15", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "线路长度合计(折单)" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[折单回总长度]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[16].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[16].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[16].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[16].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "16", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "1", + "ur": "3", + "value": "基础工程" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "基础土石方量(m?)" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[基础土石方量]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[17].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[17].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[17].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[17].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "17", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "基础混凝土量(m?)" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[现浇混凝土用量]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[18].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[18].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[18].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[18].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "18", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "基础钢材量(t)" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[基础钢材用量]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[19].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[19].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[19].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[19].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "19", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "1", + "ur": "3", + "value": "杆塔工程" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "总基数(基)" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[杆塔总数]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[20].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[20].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[20].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[20].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "20", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "塔材量(t)" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[塔材量]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[21].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[21].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[21].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[21].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "21", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "水泥杆(基)" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[混凝土杆基数]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[22].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[22].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[22].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[22].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "22", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "架线工程" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "导线量(t)" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[导线用量(含弧垂)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[23].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[23].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[23].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[23].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "23", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "1", + "ur": "5", + "value": "建设场地征用及清理费(万元)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "其中,塔基占地费" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[塔基占地费(万元)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[24].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[24].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[24].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[24].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "24", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "其中,青苗赔偿费" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[青苗赔偿费(万元)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[25].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[25].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[25].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[25].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "25", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "其中,树木砍伐赔偿费用" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "[树木砍伐赔偿费用(万元)]" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[26].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[26].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[26].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[26].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "26", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "其中,房屋拆迁面积(m?)" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[27].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[27].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[27].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[27].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "27", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "其中,房屋拆迁赔偿费用" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[28].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[28].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[28].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[28].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "28", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "0", + "uc": "1", + "ur": "7", + "value": "施工费用管理" + }, + "1": { + "index": "1", + "sel": "1", + "style": "0", + "uc": "2", + "ur": "1", + "value": "最高投标限价(万元)" + }, + "2": { + "index": "2", + "sel": "1", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[29].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[29].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[29].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[29].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "29", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "合同价(万元)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[30].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[30].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[30].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[30].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "30", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "2", + "ur": "1", + "value": "结算价(万元)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "3", + "uc": "0", + "ur": "0", + "value": "" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[31].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[31].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[31].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[31].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "31", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "1", + "ur": "2", + "value": "变更及签证数量(个)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "一般变更签证" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[32].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[32].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[32].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[32].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "32", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "重大变更签证" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[33].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[33].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[33].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[33].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "33", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "5", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "0", + "uc": "1", + "ur": "2", + "value": "变更及签证费用(万元)" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "一般变更签证" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[34].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[34].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[34].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[34].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "34", + "newpage": "0" + }, + { + "cellArrayMap": { + "0": { + "index": "0", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "1": { + "index": "1", + "sel": "0", + "style": "6", + "uc": "0", + "ur": "0", + "value": "" + }, + "2": { + "index": "2", + "sel": "0", + "style": "0", + "uc": "0", + "ur": "0", + "value": "重大变更签证" + }, + "3": { + "index": "3", + "sel": "0", + "style": "4", + "uc": "0", + "ur": "0", + "value": "" + } + }, + "cellArrays": [ + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[35].cellArrayMap.0" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[35].cellArrayMap.1" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[35].cellArrayMap.2" + }, + { + "$ref": "$.projectData.report.施工图预算管理工程数据收集表.tableStyle.rows[35].cellArrayMap.3" + } + ], + "fixRowheight": "0", + "height": "24", + "index": "35", + "newpage": "0" + } + ] + } + }, + "综合地形增加费明细表": { + "tableName": "综合地形增加费明细表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "35" + }, + { + "fileName": "项目名称及规格", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "项目名称及规格", + "show": "1", + "width": "120" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合地形人工费.人工费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "人工费", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合地形人工费.人工价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "人工价差", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合地形人工费.小计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "小计", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "综合地形人工费", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合地形机械费.机械费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "机械费", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合地形机械费.机械价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "机械价差", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "综合地形机械费.小计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "小计", + "show": "0", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "综合地形机械费", + "show": "1" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "合计", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "2", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "2" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "工程名称:[工程名称]", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "综合地形增加费明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程主材汇总表": { + "tableName": "架空输电线路工程主材汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "56" + }, + { + "fileName": "材料名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料名称", + "show": "1", + "width": "189" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "设计用量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设计用量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "损耗率(%)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "损耗率%", + "show": "1", + "width": "63" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "1", + "width": "63" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "单价(不含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "合价(不含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "单价(含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "合价(含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.单重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.总重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "重量", + "show": "1" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装装置性材料汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程主材汇总表(结算)": { + "tableName": "架空输电线路工程主材汇总表(结算)", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "56" + }, + { + "fileName": "材料名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料名称", + "show": "1", + "width": "189" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "设计用量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设计用量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "损耗率(%)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "损耗率%", + "show": "1", + "width": "63" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "1", + "width": "63" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "单价(不含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "合价(不含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "单价(含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "合价(含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.单重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.总重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "重量", + "show": "1" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装装置性材料汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程主材价差汇总表": { + "tableName": "架空输电线路工程主材价差汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "56" + }, + { + "fileName": "材料名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料名称", + "show": "1", + "width": "189" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "设计用量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "设计用量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "损耗率(%)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "损耗率(%)", + "show": "1", + "width": "63" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "1", + "width": "63" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "单价(不含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税) .价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "合价(不含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "单价(含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).预算价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).市场价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场价", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).价差", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "价差", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "合价(含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.单重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "重量.总重", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "1", + "width": "70" + } + ], + "isZeroShow": "0", + "name": "重量", + "show": "1" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装装置性材料价差汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "现浇基础明细表": { + "tableName": "现浇基础明细表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "40" + }, + { + "fileName": "类型名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "类型名称", + "show": "1", + "width": "120" + }, + { + "fileName": "基础形式", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "基础形式", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "数量(腿)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量(腿)", + "show": "1", + "width": "50" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "砼(不含护壁)(m3).单腿", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单腿", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "砼(不含护壁)(m3).合计", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "100" + } + ], + "isZeroShow": "0", + "name": "砼(不含护壁)(m?)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "护壁砼(m3).单腿", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单腿", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "护壁砼(m3).合计", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合计", + "show": "1", + "width": "100" + } + ], + "isZeroShow": "0", + "name": "护壁砼(m?)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "钢筋(t).单腿", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单腿", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "钢筋(t).钢筋总量", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "钢筋总量", + "show": "1", + "width": "100" + } + ], + "isZeroShow": "0", + "name": "钢筋(t)", + "show": "1" + }, + { + "fileName": "备注", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "0", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "2", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "输电工程基础分类一览表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "预制基础明细表": { + "tableName": "预制基础明细表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "40" + }, + { + "fileName": "基础名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "基础名称", + "show": "1", + "width": "120" + }, + { + "fileName": "基础型式", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "基础型式", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "组合块数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "组合块数", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "总基数", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总基数", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "每块重量", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "每块重量", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "总重", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重", + "show": "1", + "width": "80" + }, + { + "fileName": "备注", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "0", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "预制基础明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "塔基占地面积明细表": { + "tableName": "塔基占地面积明细表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "组件名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "组件名称", + "show": "1", + "width": "120" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "正根开(m)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "正根开(m)", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "侧根开(m)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "侧根开(m)", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "立柱宽(m)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "立柱宽(m)", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "基数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "基数", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "塔基面积", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "塔基面积", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "总塔基面积", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总塔基面积", + "show": "1", + "width": "80" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "单位:㎡" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "塔基占地面积明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "跨越明细表": { + "tableName": "跨越明细表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "40" + }, + { + "fileName": "跨越类型", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "跨越类型", + "show": "1", + "width": "100" + }, + { + "fileName": "跨越名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "跨越名称", + "show": "1", + "width": "120" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "处数", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "处数", + "show": "1", + "width": "80" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "跨越明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "组件数量汇总表": { + "tableName": "组件数量汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "构件类型", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "构件类型", + "show": "1", + "width": "70" + }, + { + "fileName": "构件型号", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "构件型号", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单重(kg)", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重(kg)", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "数量", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "总重(kg)", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "总重(kg)", + "show": "1", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "1", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "组件数量汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "组件材料汇总表": { + "tableName": "组件材料汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "构件类型", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "构件类型", + "show": "1", + "width": "70" + }, + { + "fileName": "名称及规格", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "名称及规格", + "show": "1", + "width": "100" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "数量", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单重(kg)", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单重(kg)", + "show": "1", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "1", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-12", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "组件材料组成表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程设备汇总表": { + "tableName": "架空输电线路工程设备汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "类型", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "类型", + "show": "1", + "width": "70" + }, + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "56" + }, + { + "fileName": "设备名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "设备名称", + "show": "1", + "width": "175" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "运杂费率", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费率", + "show": "1", + "width": "56" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "1", + "width": "49" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价(不含税)", + "show": "1", + "width": "60" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价(不含税)", + "show": "1", + "width": "60" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).运杂费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费", + "show": "1", + "width": "84" + } + ], + "isZeroShow": "0", + "name": "单价(含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).运杂费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费", + "show": "1", + "width": "84" + } + ], + "isZeroShow": "0", + "name": "合价(含税)", + "show": "1" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "77" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "安装设备汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程设备汇总表(结算)": { + "tableName": "架空输电线路工程设备汇总表(结算)", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "类型", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "类型", + "show": "1", + "width": "70" + }, + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "56" + }, + { + "fileName": "设备名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "设备名称", + "show": "1", + "width": "175" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "运杂费率", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费率", + "show": "1", + "width": "56" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "1", + "width": "49" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(不含税)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价(不含税)", + "show": "1", + "width": "60" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(不含税)", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价(不含税)", + "show": "1", + "width": "60" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "单价(含税).运杂费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费", + "show": "1", + "width": "84" + } + ], + "isZeroShow": "0", + "name": "单价(含税)", + "show": "1" + }, + { + "fileName": "", + "fileType": "3", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "header": [ + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "0", + "fileName": "合价(含税).运杂费", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "运杂费", + "show": "1", + "width": "84" + } + ], + "isZeroShow": "0", + "name": "合价(含税)", + "show": "1" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "77" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "安装设备汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程定额人工汇总表": { + "tableName": "架空输电线路工程定额人工汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "63" + }, + { + "fileName": "人工名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "人工名称", + "show": "1", + "width": "196" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "4", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价", + "show": "1", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场单价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价", + "show": "0", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单价价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差", + "show": "0", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价", + "show": "1", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场合价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价", + "show": "0", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "合价价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差", + "show": "0", + "width": "84" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "77" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装定额人工汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程拆除定额人工汇总表": { + "tableName": "架空输电线路工程拆除定额人工汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "63" + }, + { + "fileName": "人工名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "人工名称", + "show": "1", + "width": "196" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "4", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价", + "show": "1", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场单价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价", + "show": "0", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单价价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差", + "show": "0", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价", + "show": "1", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场合价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价", + "show": "0", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "合价价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差", + "show": "0", + "width": "84" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "77" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装拆除定额人工汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程清理项目定额人工汇总表": { + "tableName": "架空输电线路工程清理项目定额人工汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "63" + }, + { + "fileName": "人工名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "人工名称", + "show": "1", + "width": "196" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "4", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价", + "show": "1", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场单价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价", + "show": "0", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单价价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差", + "show": "0", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价", + "show": "1", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场合价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价", + "show": "0", + "width": "84" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "合价价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差", + "show": "0", + "width": "84" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "77" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装清理项目定额人工汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程拆除材料汇总表": { + "tableName": "架空输电线路工程拆除材料汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "70" + }, + { + "fileName": "材料名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料名称", + "show": "1", + "width": "175" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "4", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "70" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价(不含税)", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场单价不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价(不含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单价价差不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差(不含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价(不含税)", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场合价不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价(不含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "合价价差不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差(不含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场单价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单价价差含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场合价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "合价价差含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差(含税)", + "show": "0", + "width": "100" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装拆除材料汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程清理项目材料汇总表": { + "tableName": "架空输电线路工程清理项目材料汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编号", + "show": "1", + "width": "70" + }, + { + "fileName": "材料名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "材料名称", + "show": "1", + "width": "175" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "56" + }, + { + "autoRepairZero": "0", + "decimalNum": "4", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "70" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "1", + "width": "70" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价(不含税)", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价不含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价(不含税)", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价(含税)", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价(含税)", + "show": "1", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装清理项目材料汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程拆除机械汇总表": { + "tableName": "架空输电线路工程拆除机械汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编码", + "show": "1", + "width": "80" + }, + { + "fileName": "机械名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "机械名称", + "show": "1", + "width": "200" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "4", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "90" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "90" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场单价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单价价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场合价", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "合价价差", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场单价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场单价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "单价价差含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "单价价差(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "市场合价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "市场合价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "合价价差含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "合价价差(含税)", + "show": "0", + "width": "100" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "0", + "width": "150" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装拆除机械汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程清理项目机械汇总表": { + "tableName": "架空输电线路工程清理项目机械汇总表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "编码", + "show": "1", + "width": "80" + }, + { + "fileName": "机械名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "机械名称", + "show": "1", + "width": "200" + }, + { + "fileName": "单位", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "1", + "isZeroShow": "0", + "name": "单位", + "show": "1", + "width": "80" + }, + { + "autoRepairZero": "0", + "decimalNum": "4", + "fileName": "数量", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "数量", + "show": "1", + "width": "90" + }, + { + "fileName": "供货方", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "供货方", + "show": "0", + "width": "90" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价", + "show": "1", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算单价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算单价(含税)", + "show": "0", + "width": "100" + }, + { + "autoRepairZero": "0", + "decimalNum": "3", + "fileName": "预算合价含税", + "fileType": "1", + "fontColor": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "预算合价(含税)", + "show": "0", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "134", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "0", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "0", + "fontPitchAndFamily": "0", + "fontQuality": "0", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "800", + "fontWidth": "0" + }, + "titleText": "安装清理项目机械汇总表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "价差预备费明细表": { + "tableName": "价差预备费明细表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "现金流量", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "现金流量", + "show": "1", + "width": "112" + }, + { + "fileName": "计算依据", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "计算依据", + "show": "1", + "width": "224" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "金额", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "金额", + "show": "1", + "width": "70" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "价差预备费明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + }, + "架空输电线路工程编制期价差明细表": { + "tableName": "架空输电线路工程编制期价差明细表", + "rows": [], + "columns": [], + "tag": "rule", + "repeatColumn": false, + "tableStyle": { + "borderWidth": "2", + "columns": [ + { + "fileName": "序号", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "序号", + "show": "1", + "width": "56" + }, + { + "fileName": "费用名称", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "费用名称", + "show": "1", + "width": "175" + }, + { + "autoRepairZero": "0", + "decimalNum": "2", + "fileName": "金额", + "fileType": "1", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "2", + "isZeroShow": "0", + "name": "金额", + "show": "1", + "width": "70" + }, + { + "fileName": "备注", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "备注", + "show": "1", + "width": "175" + }, + { + "fileName": "WBS编码", + "fileType": "2", + "fontColor": "-16777216", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0", + "formatType": "0", + "isZeroShow": "0", + "name": "WBS编码", + "show": "1", + "width": "100" + } + ], + "fixColNum": "0", + "fixRowNum": "0", + "height": "20", + "indentation": "3", + "printInfo": { + "head": { + "headCenterText": "", + "headFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "headLeftText": "", + "headRightText": "", + "marginHead": "1" + }, + "marginBottom": "5.208333", + "marginLeft": "5.208333", + "marginRight": "5.208333", + "marginTop": "5.208333", + "middleMode": "0", + "orderMode": "1", + "orientMode": "1", + "paperSize": "9", + "startPageNo": "0", + "subTitle": { + "marginSubTitle": "1", + "subTitleCenterText": "", + "subTitleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "subTitleLeftText": "", + "subTitleRightText": "金额单位:元" + }, + "tail": { + "marginTail": "1", + "tailCenterText": "第 [页码] 页", + "tailFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-15", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "400", + "fontWidth": "0" + }, + "tailLeftText": "[工程名称]", + "tailRightText": "[编制单位]" + }, + "title": { + "marginTitle": "3", + "titleFont": { + "fontCharSet": "0", + "fontClipPrecision": "2", + "fontEscapement": "0", + "fontHeight": "-29", + "fontItalic": "0", + "fontName": "宋体", + "fontOrientation": "0", + "fontOutPrecision": "3", + "fontPitchAndFamily": "18", + "fontQuality": "1", + "fontStrikeOut": "0", + "fontUnderline": "0", + "fontWeight": "700", + "fontWidth": "0" + }, + "titleText": "安装编制期价差明细表" + } + }, + "showHead": "1", + "tableBorder": "1" + } + } + }, + "lineParameters": { + "综合地形比例": [ + { + "名称": "平地", + "值": "59" + }, + { + "名称": "丘陵", + "综合地形名称": "地形比例丘陵", + "值": "23" + }, + { + "名称": "泥沼", + "综合地形名称": "地形比例泥沼", + "值": "18" + }, + { + "名称": "山地", + "综合地形名称": "地形比例一般山地", + "值": "0" + }, + { + "名称": "河网", + "综合地形名称": "地形比例河网", + "值": "0" + }, + { + "名称": "高山", + "综合地形名称": "地形比例高山大岭", + "值": "0" + }, + { + "名称": "峻岭", + "综合地形名称": "地形比例峻岭", + "值": "0" + }, + { + "名称": "沙漠", + "综合地形名称": "地形比例沙漠", + "值": "0" + } + ], + "综合地形比例增加系数": [ + { + "排序字段": "1", + "调整系数_高山": "300", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "150", + "地形比例_山地": "0", + "调整系数_丘陵": "40", + "地形比例_丘陵": "23", + "调整系数_河网": "0", + "地形比例_河网": "0", + "调整系数_泥沼": "70", + "地形比例_泥沼": "18", + "名称": "工地运输(人力运输)混凝土杆、混凝土预制品、钢管杆、线材(不含机械费)", + "序号": "一", + "类型": "工地运输", + "调整系数_峻岭": "400", + "地形比例_峻岭": "0", + "调整系数_沙漠": "65", + "地形比例_沙漠": "0" + }, + { + "排序字段": "2", + "调整系数_高山": "150", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "100", + "地形比例_山地": "0", + "调整系数_丘陵": "20", + "地形比例_丘陵": "23", + "调整系数_河网": "0", + "地形比例_河网": "0", + "调整系数_泥沼": "40", + "地形比例_泥沼": "18", + "名称": "工地运输(人力运输)金具、绝缘子、零星钢材、塔材、其他建筑安装材料(不含机械费)", + "类型": "工地运输", + "调整系数_峻岭": "200", + "地形比例_峻岭": "0", + "调整系数_沙漠": "35", + "地形比例_沙漠": "0" + }, + { + "排序字段": "3", + "调整系数_高山": "0", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "80", + "地形比例_山地": "0", + "调整系数_丘陵": "20", + "地形比例_丘陵": "23", + "调整系数_河网": "0", + "地形比例_河网": "0", + "调整系数_泥沼": "0", + "地形比例_泥沼": "18", + "名称": "工地运输拖拉机、汽车运输(不含装卸,沙漠地形没有正式公路时使用)", + "类型": "工地运输", + "调整系数_峻岭": "0", + "地形比例_峻岭": "0", + "调整系数_沙漠": "40", + "地形比例_沙漠": "0" + }, + { + "排序字段": "4", + "调整系数_高山": "20", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "10", + "地形比例_山地": "0", + "调整系数_丘陵": "5", + "地形比例_丘陵": "23", + "调整系数_河网": "5", + "地形比例_河网": "0", + "调整系数_泥沼": "10", + "地形比例_泥沼": "18", + "名称": "土石方工程(不含机械费)", + "序号": "二", + "类型": "土石方工程", + "调整系数_峻岭": "25", + "地形比例_峻岭": "0", + "调整系数_沙漠": "10", + "地形比例_沙漠": "0" + }, + { + "排序字段": "5", + "调整系数_高山": "40", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "20", + "地形比例_山地": "0", + "调整系数_丘陵": "10", + "地形比例_丘陵": "23", + "调整系数_河网": "10", + "地形比例_河网": "0", + "调整系数_泥沼": "40", + "地形比例_泥沼": "18", + "名称": "基础工程", + "序号": "三", + "类型": "基础工程", + "调整系数_峻岭": "50", + "地形比例_峻岭": "0", + "调整系数_沙漠": "30", + "地形比例_沙漠": "0" + }, + { + "排序字段": "6", + "调整系数_高山": "110", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "70", + "地形比例_山地": "0", + "调整系数_丘陵": "20", + "地形比例_丘陵": "23", + "调整系数_河网": "20", + "地形比例_河网": "0", + "调整系数_泥沼": "70", + "地形比例_泥沼": "18", + "名称": "杆塔工程", + "序号": "四", + "类型": "杆塔工程", + "调整系数_峻岭": "120", + "地形比例_峻岭": "0", + "调整系数_沙漠": "50", + "地形比例_沙漠": "0" + }, + { + "排序字段": "7", + "调整系数_高山": "150", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "100", + "地形比例_山地": "0", + "调整系数_丘陵": "15", + "地形比例_丘陵": "23", + "调整系数_河网": "10", + "地形比例_河网": "0", + "调整系数_泥沼": "40", + "地形比例_泥沼": "18", + "名称": "架线工程一般放、紧线(不包括跨越架设、拦河线安装)", + "序号": "五", + "类型": "架线工程", + "调整系数_峻岭": "170", + "地形比例_峻岭": "0", + "调整系数_沙漠": "35", + "地形比例_沙漠": "0" + }, + { + "排序字段": "8", + "调整系数_高山": "80", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "40", + "地形比例_山地": "0", + "调整系数_丘陵": "5", + "地形比例_丘陵": "23", + "调整系数_河网": "5", + "地形比例_河网": "0", + "调整系数_泥沼": "20", + "地形比例_泥沼": "18", + "名称": "架线工程张力机械放、紧线(不包括跨越架设、拦河线安装)", + "类型": "架线工程", + "调整系数_峻岭": "90", + "地形比例_峻岭": "0", + "调整系数_沙漠": "15", + "地形比例_沙漠": "0" + }, + { + "排序字段": "9", + "调整系数_高山": "60", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "30", + "地形比例_山地": "0", + "调整系数_丘陵": "5", + "地形比例_丘陵": "23", + "调整系数_河网": "5", + "地形比例_河网": "0", + "调整系数_泥沼": "15", + "地形比例_泥沼": "18", + "名称": "架线工程光缆接续(不包括测量)", + "类型": "架线工程", + "调整系数_峻岭": "80", + "地形比例_峻岭": "0", + "调整系数_沙漠": "10", + "地形比例_沙漠": "0" + }, + { + "排序字段": "10", + "调整系数_高山": "50", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "20", + "地形比例_山地": "0", + "调整系数_丘陵": "5", + "地形比例_丘陵": "23", + "调整系数_河网": "5", + "地形比例_河网": "0", + "调整系数_泥沼": "10", + "地形比例_泥沼": "18", + "名称": "附件工程", + "序号": "六", + "类型": "附件工程", + "调整系数_峻岭": "60", + "地形比例_峻岭": "0", + "调整系数_沙漠": "10", + "地形比例_沙漠": "0" + }, + { + "排序字段": "11", + "调整系数_高山": "40", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "20", + "地形比例_山地": "0", + "调整系数_丘陵": "10", + "地形比例_丘陵": "23", + "调整系数_河网": "10", + "地形比例_河网": "0", + "调整系数_泥沼": "40", + "地形比例_泥沼": "18", + "名称": "辅助工程(基础辅助)打桩,护坡、挡土墙及排洪沟砌筑,喷射混凝土护坡", + "序号": "七", + "类型": "辅助工程", + "调整系数_峻岭": "50", + "地形比例_峻岭": "0", + "调整系数_沙漠": "30", + "地形比例_沙漠": "0" + }, + { + "排序字段": "12", + "调整系数_高山": "50", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "20", + "地形比例_山地": "0", + "调整系数_丘陵": "5", + "地形比例_丘陵": "23", + "调整系数_河网": "5", + "地形比例_河网": "0", + "调整系数_泥沼": "10", + "地形比例_泥沼": "18", + "名称": "辅助工程(杆塔辅助)杆塔标志牌,防鸟装置,防坠落装置,避雷器安装,监测装置安装调测", + "类型": "辅助工程", + "调整系数_峻岭": "60", + "地形比例_峻岭": "0", + "调整系数_沙漠": "10", + "地形比例_沙漠": "0" + }, + { + "排序字段": "13", + "调整系数_高山": "300", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "150", + "地形比例_山地": "0", + "调整系数_丘陵": "40", + "地形比例_丘陵": "23", + "调整系数_河网": "0", + "地形比例_河网": "0", + "调整系数_泥沼": "0", + "地形比例_泥沼": "18", + "名称": "辅助工程(其他)索道站支架、绳索及附件运输(地形选择按架设索道站所处地带实际地形为准)", + "类型": "辅助工程", + "调整系数_峻岭": "400", + "地形比例_峻岭": "0", + "调整系数_沙漠": "0", + "地形比例_沙漠": "0" + }, + { + "排序字段": "14", + "调整系数_高山": "110", + "地形比例_高山": "0", + "地形比例_平地": "0", + "调整系数_山地": "70", + "地形比例_山地": "0", + "调整系数_丘陵": "20", + "地形比例_丘陵": "23", + "调整系数_河网": "0", + "地形比例_河网": "0", + "调整系数_泥沼": "0", + "地形比例_泥沼": "18", + "名称": "辅助工程(其他)索道设施安装(地形选择按架设索道站所处地带实际地形为准)", + "类型": "辅助工程", + "调整系数_峻岭": "120", + "地形比例_峻岭": "0", + "调整系数_沙漠": "0", + "地形比例_沙漠": "0" + } + ], + "线路特征": [ + { + "电压等级": "220kV", + "CharacterId": "1", + "线路亘长": "8.23", + "NzxsAdjust": "实际数", + "回路类型": "1", + "索道运输": "0", + "机械化施工段": "0", + "综合地形": [ + { + "名称": "平地", + "值": "59" + }, + { + "名称": "丘陵", + "值": "23" + }, + { + "名称": "山地", + "值": "0" + }, + { + "名称": "高山", + "值": "0" + }, + { + "名称": "峻岭", + "值": "0" + }, + { + "名称": "泥沼", + "值": "18" + }, + { + "名称": "河网", + "值": "0" + }, + { + "名称": "沙漠", + "值": "0" + } + ], + "运输地形": [ + { + "名称": "平地", + "值": "59" + }, + { + "名称": "丘陵", + "值": "23" + }, + { + "名称": "山地", + "值": "0" + }, + { + "名称": "高山", + "值": "0" + }, + { + "名称": "峻岭", + "值": "0" + }, + { + "名称": "泥沼", + "值": "18" + }, + { + "名称": "河网", + "值": "0" + }, + { + "名称": "沙漠", + "值": "0" + } + ] + } + ], + "运输设置": [ + { + "amount": "0", + "材料类型": "混凝土杆", + "运输类型": "混凝土杆", + "损耗率": "0.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "混凝土预制品", + "运输类型": "混凝土制品(包括底盘、拉盘、卡盘、夹盘)", + "损耗率": "0.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "混凝土预制品", + "运输类型": "混凝土叉梁、盖板(方、矩形)", + "损耗率": "3.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "线材", + "运输类型": "裸软导线(含良导体地线)", + "损耗率": "一般架线*((山地+高山+峻岭)*0.20+0.40)+张力架线*0.80", + "毛重": "15", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "线材", + "运输类型": "镀锌钢绞线(避雷线无线盘)", + "损耗率": "0.3", + "毛重": "4", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "线材", + "运输类型": "镀锌钢绞线(避雷线有线盘)", + "损耗率": "0.3", + "毛重": "10", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "线材", + "运输类型": "光缆(有线盘)", + "毛重": "20", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "线材", + "运输类型": "镀锌钢绞线(拉线)", + "损耗率": "2.0", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "线材", + "运输类型": "专用跨接线和引线", + "损耗率": "2.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "线材", + "运输类型": "电力电缆", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "线材", + "运输类型": "接地电缆、同轴电缆", + "损耗率": "1", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "钢筋(加工制作)", + "损耗率": "6.0", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "钢筋、型钢(成品、半成品)", + "损耗率": "0.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "钢筋、型钢(成品、半成品及加工制作)", + "损耗率": "6.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "铜覆钢", + "损耗率": "0.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "插入材", + "损耗率": "3.0", + "毛重": "1", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "地脚螺栓", + "损耗率": "0.5", + "毛重": "1", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "复合绝缘子", + "损耗率": "0.5", + "毛重": "100", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "瓷绝缘子", + "损耗率": "2.0", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "玻璃绝缘子", + "损耗率": "2.0", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "金具(包括压接线夹)", + "损耗率": "1.5", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "间隔棒", + "损耗率": "1.5", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "防振锤", + "损耗率": "1.5", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "阻冰环", + "损耗率": "1.5", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "预绞丝", + "损耗率": "2.0", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "瓷横担(不包括出库前试验损耗)", + "损耗率": "2.0", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "电缆终端头瓷套", + "损耗率": "0.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "铝端夹", + "损耗率": "3.0", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "钢管", + "损耗率": "1.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "螺栓、脚钉、垫片(不包括基础用地脚螺栓)", + "损耗率": "3.0", + "毛重": "1", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "避雷器", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "防坠落装置", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "防鸟装置", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "标志牌", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "金具、绝缘子、零星钢材", + "运输类型": "监测装置", + "毛重": "7", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "超长复合绝缘子", + "运输类型": "超长复合绝缘子", + "损耗率": "0.5", + "毛重": "100", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "塔材", + "运输类型": "角钢塔用螺栓、脚钉、垫片(不包括基础用地脚螺栓)", + "损耗率": "3.0", + "毛重": "1", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "塔材", + "运输类型": "钢管塔用螺栓、脚钉、垫片(不包括基础用地脚螺栓)", + "损耗率": "3.0", + "毛重": "1", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "塔材", + "运输类型": "钢筋、型钢(成品、半成品)用于塔材", + "损耗率": "0.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "塔材", + "运输类型": "钢管塔", + "损耗率": "0.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "钢管杆", + "运输类型": "钢管杆", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "砂", + "损耗率": "(山地+高山+峻岭)*3+15", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "0", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "True" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "碎石", + "损耗率": "(山地+高山+峻岭)*5+10", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "0", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "True" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "水泥", + "损耗率": "(山地+高山+峻岭)*2+5", + "毛重": "1", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "True" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "石灰", + "损耗率": "(山地+高山+峻岭)*2+5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "降阻剂", + "损耗率": "(山地+高山+峻岭)*2+5", + "毛重": "1", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "水", + "毛重": "20", + "人力运距": "0", + "人力运量": "100", + "汽车运距": "0", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "True" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "砖、条石、块石、降阻模块", + "损耗率": "2.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "0", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "混凝土添加剂", + "损耗率": "(山地+高山+峻岭)*2+5", + "毛重": "1", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "防腐材料", + "损耗率": "(山地+高山+峻岭)*2+5", + "毛重": "1", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "复合材料(成品、半成品)", + "损耗率": "1.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "余土外运", + "毛重": "0", + "人力运距": "0", + "人力运量": "100", + "汽车运距": "0", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "True" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "水超运", + "毛重": "20", + "人力运距": "0", + "人力运量": "100", + "汽车运距": "0", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "True" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "油漆", + "毛重": "1", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "其他建筑安装材料", + "运输类型": "塑料制品(管材、板材)", + "损耗率": "5.0", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "混凝土预制品", + "运输类型": "水泥压力管", + "损耗率": "2.0", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "其他", + "运输类型": "商品混凝土", + "损耗率": "1.5", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "海底电缆", + "运输类型": "海底电缆(散装过缆)", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "海底电缆", + "运输类型": "海底电缆(整盘吊装)", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "海底光缆", + "运输类型": "海底光缆(散装过缆)", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "海底光缆", + "运输类型": "海底光缆(整盘吊装)", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + }, + { + "amount": "0", + "材料类型": "材料运输", + "运输类型": "材料运输", + "毛重": "0", + "人力运距": "0.3", + "人力运量": "100", + "汽车运距": "10", + "汽车运量": "100", + "汽车装卸量": "100", + "拖拉机运距": "0", + "拖拉机装卸量": "100", + "拖拉机运量": "100", + "船舶运距": "0", + "船舶装卸量": "100", + "船舶运量": "100", + "海缆船舶运距": "0", + "海缆船舶运量": "100", + "索道运距": "0", + "索道运量": "100", + "索道设置": "0", + "索道装卸量": "100", + "索道类型": "循环式", + "人力不计取": "False", + "汽车不计取": "False", + "拖拉机不计取": "False", + "船舶不计取": "False", + "设置不计取": "False" + } + ] + }, + "projectDivision": { + "安装工程": { + "安装": [ + { + "GUID": "{5EDA70B4-B6B3-4C9C-AED0-2A1940477935}", + "序号": "一", + "项目名称": "架空输电线路本体工程", + "代码": "BTGC", + "费率": "0", + "单位": "元/km", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{1F71BCC1-B088-49F6-814B-CE7E63538A3E}", + "序号": "1", + "项目名称": "基础工程", + "代码": "JCGC", + "费率": "0", + "单位": "元/m?", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{3CA66E10-EBB1-41E4-8B9B-23EFEA1B0E98}", + "序号": "1.1", + "项目名称": "基础工程材料工地运输", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "250340.309025", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "人力运输 金具、绝缘子、零星钢材", + "编码": "YX1-17", + "单位": "t.km", + "计算式": "(2.951359)+(21.773142)+(0.621326)", + "数量": "25.345827", + "中标计算式": "(2.951359)+(21.773142)+(0.621326)", + "人工费": "123", + "机械费": "8.28", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "131.28", + "合价不含税": "3327.400169", + "特征段": "特征1", + "基价": "131.28", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.492", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1657", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0263", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "人力运输 其他建筑安装材料", + "编码": "YX1-22", + "单位": "t.km", + "计算式": "(97.072376)+(208.63204)+(419.59561)", + "数量": "725.300026", + "中标计算式": "(97.072376)+(208.63204)+(419.59561)", + "人工费": "106.54", + "机械费": "7.3", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "其他建筑安装材料", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "113.84", + "合价不含税": "82568.15496", + "特征段": "特征1", + "基价": "113.84", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.2922", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1436", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0232", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 装卸", + "编码": "YX1-97", + "单位": "t", + "计算式": "(9.837865)+(72.57714)+(2.071087)", + "数量": "84.486092", + "中标计算式": "(9.837865)+(72.57714)+(2.071087)", + "人工费": "12.61", + "机械费": "26.19", + "材料费": "7.22", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "46.02", + "合价不含税": "3888.049954", + "特征段": "特征1", + "基价": "46.02", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1528", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0171", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.6", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0771", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1417", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 运输", + "编码": "YX1-98", + "单位": "t.km", + "计算式": "(98.378646)+(725.7714)+(20.710872)", + "数量": "844.860918", + "中标计算式": "(98.378646)+(725.7714)+(20.710872)", + "人工费": "0.51", + "机械费": "1.02", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1.53", + "合价不含税": "1292.637205", + "特征段": "特征1", + "基价": "1.53", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0073", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.003", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 其他建筑安装材料 装卸", + "编码": "YX1-107", + "单位": "t", + "计算式": "323.574586", + "数量": "323.574586", + "中标计算式": "323.574586", + "人工费": "9.59", + "机械费": "17.87", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "其他建筑安装材料", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "27.46", + "合价不含税": "8885.358132", + "特征段": "特征1", + "基价": "27.46", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1159", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0132", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0526", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 其他建筑安装材料 运输", + "编码": "YX1-108", + "单位": "t.km", + "计算式": "3235.745848", + "数量": "3235.745848", + "中标计算式": "3235.745848", + "人工费": "0.41", + "机械费": "0.75", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "其他建筑安装材料", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1.16", + "合价不含税": "3753.465184", + "特征段": "特征1", + "基价": "1.16", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0059", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0022", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{8CB97951-86E4-4AFA-ABB0-72841C4F5886}", + "序号": "1.2", + "项目名称": "基础土石方工程", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "1403039.901482", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "线路复测及分坑 直线自立塔", + "编码": "YX2-6", + "单位": "基", + "计算式": "19", + "数量": "19", + "中标计算式": "19", + "人工费": "41.76", + "机械费": "2.58", + "材料费": "32.22", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "线路复测及分坑", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "76.56", + "合价不含税": "1454.64", + "特征段": "特征1", + "基价": "76.56", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1752", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2634", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.01", + "是否未计价": "0" + }, + { + "编码": "C20020101", + "名称": "普通磁漆", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.727", + "市场价不含税": "9.727", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.025", + "是否未计价": "0" + }, + { + "编码": "C22040801", + "名称": "木桩", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "2.611", + "市场价不含税": "2.611", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "8", + "是否未计价": "0" + }, + { + "编码": "C22040811", + "名称": "竹桩", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "0.65", + "市场价不含税": "0.65", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "16", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0082", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.6317", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "线路复测及分坑 耐张(转角)自立塔", + "编码": "YX2-7", + "单位": "基", + "计算式": "10", + "数量": "10", + "中标计算式": "10", + "人工费": "62.62", + "机械费": "3.74", + "材料费": "37.6", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "线路复测及分坑", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "103.96", + "合价不含税": "1039.6", + "特征段": "特征1", + "基价": "103.96", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2634", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3945", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.01", + "是否未计价": "0" + }, + { + "编码": "C20020101", + "名称": "普通磁漆", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.727", + "市场价不含税": "9.727", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.03", + "是否未计价": "0" + }, + { + "编码": "C22040801", + "名称": "木桩", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "2.611", + "市场价不含税": "2.611", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "10", + "是否未计价": "0" + }, + { + "编码": "C22040811", + "名称": "竹桩", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "0.65", + "市场价不含税": "0.65", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "16", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0119", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7372", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 松砂石 坑深3.0m以内", + "编码": "YX2-25", + "单位": "m?", + "计算式": "220.684048", + "数量": "220.684048", + "中标计算式": "220.684048", + "人工费": "30.96", + "机械费": "2.86", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "松砂石", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "33.82", + "合价不含税": "7463.534503", + "特征段": "特征1", + "基价": "33.82", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4073", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0219", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0091", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 松砂石 坑深4.0m以内", + "编码": "YX2-26", + "单位": "m?", + "计算式": "1439.639855", + "数量": "1439.639855", + "中标计算式": "1439.639855", + "人工费": "36.98", + "机械费": "3.74", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "松砂石", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "40.72", + "合价不含税": "58622.134896", + "特征段": "特征1", + "基价": "40.72", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4867", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.026", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0119", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 松砂石 坑深5.0m以内", + "编码": "YX2-27", + "单位": "m?", + "计算式": "448.74336", + "数量": "448.74336", + "中标计算式": "448.74336", + "人工费": "41.5", + "机械费": "3.84", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "松砂石", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "45.34", + "合价不含税": "20346.023942", + "特征段": "特征1", + "基价": "45.34", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5465", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.029", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0122", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 泥水 坑深4.0m以内", + "编码": "YX2-50", + "单位": "m?", + "计算式": "1306.660143", + "数量": "1306.660143", + "中标计算式": "1306.660143", + "人工费": "49.15", + "机械费": "24.8", + "材料费": "19.48", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "泥水", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "93.43", + "合价不含税": "122081.25716", + "特征段": "特征1", + "基价": "93.43", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5957", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0665", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0112", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1144", + "是否未计价": "0" + }, + { + "编码": "J09-01-017", + "名称": "污水泵 出口直径 Φ100", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "131.39", + "市场价不含税": "131.39", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1533", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0148", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.382", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 泥水 坑深5.0m以内", + "编码": "YX2-51", + "单位": "m?", + "计算式": "205", + "数量": "205", + "中标计算式": "205", + "人工费": "57.49", + "机械费": "26.08", + "材料费": "19.47", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "泥水", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "103.04", + "合价不含税": "21123.2", + "特征段": "特征1", + "基价": "103.04", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.697", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0777", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0112", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1118", + "是否未计价": "0" + }, + { + "编码": "J09-01-017", + "名称": "污水泵 出口直径 Φ100", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "131.39", + "市场价不含税": "131.39", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1602", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.016", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3817", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 流砂 坑深2.0m以内", + "编码": "YX2-56", + "单位": "m?", + "计算式": "0.108", + "数量": "0.108", + "中标计算式": "0.108", + "人工费": "54.77", + "机械费": "27.01", + "材料费": "19.48", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "流砂", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "101.26", + "合价不含税": "10.93608", + "特征段": "特征1", + "基价": "101.26", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.6639", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0741", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0112", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1144", + "是否未计价": "0" + }, + { + "编码": "J09-01-017", + "名称": "污水泵 出口直径 Φ100", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "131.39", + "市场价不含税": "131.39", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1725", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0138", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.382", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 流砂 坑深3.0m以内", + "编码": "YX2-57", + "单位": "m?", + "计算式": "311.904", + "数量": "311.904", + "中标计算式": "311.904", + "人工费": "67.38", + "机械费": "31.45", + "材料费": "19.48", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "流砂", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "118.31", + "合价不含税": "36901.36224", + "特征段": "特征1", + "基价": "118.31", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8174", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0907", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0112", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1144", + "是否未计价": "0" + }, + { + "编码": "J09-01-017", + "名称": "污水泵 出口直径 Φ100", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "131.39", + "市场价不含税": "131.39", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2025", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0154", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.382", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 流砂 坑深4.0m以内", + "编码": "YX2-58", + "单位": "m?", + "计算式": "1609.350125", + "数量": "1609.350125", + "中标计算式": "1609.350125", + "人工费": "87.92", + "机械费": "35.9", + "材料费": "19.48", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "流砂", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "143.3", + "合价不含税": "230619.872913", + "特征段": "特征1", + "基价": "143.3", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.0664", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1185", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0112", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1144", + "是否未计价": "0" + }, + { + "编码": "J09-01-017", + "名称": "污水泵 出口直径 Φ100", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "131.39", + "市场价不含税": "131.39", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2325", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.017", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.382", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "电杆坑、塔坑、拉线坑人工挖方(或爆破)及回填 流砂 坑深5.0m以内", + "编码": "YX2-59", + "单位": "m?", + "计算式": "691.576024", + "数量": "691.576024", + "中标计算式": "691.576024", + "人工费": "110.96", + "机械费": "38.87", + "材料费": "19.12", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "流砂", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "168.95", + "合价不含税": "116841.769255", + "特征段": "特征1", + "基价": "168.95", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.3461", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1494", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.011", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1095", + "是否未计价": "0" + }, + { + "编码": "J09-01-017", + "名称": "污水泵 出口直径 Φ100", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "131.39", + "市场价不含税": "131.39", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.252", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0183", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3749", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "挖孔基础人工挖方(或爆破) 普通土 坑径1000mm以内 坑深5m以内", + "编码": "YX2-89", + "单位": "m?", + "计算式": "7.372916", + "数量": "7.372916", + "中标计算式": "7.372916", + "人工费": "27.56", + "机械费": "2.45", + "材料费": "4.44", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "普通土", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "34.45", + "合价不含税": "253.996956", + "特征段": "特征1", + "基价": "34.45", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3633", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.019", + "是否未计价": "0" + }, + { + "编码": "C07010502", + "名称": "加工铁件 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.767", + "市场价不含税": "5.767", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7553", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0078", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0871", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "挖孔基础人工挖方(或爆破) 坚土 坑径1000mm以内 坑深5m以内", + "编码": "YX2-109", + "单位": "m?", + "计算式": "47.731364", + "数量": "47.731364", + "中标计算式": "47.731364", + "人工费": "28.09", + "机械费": "3.27", + "材料费": "4.44", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "坚土", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "35.8", + "合价不含税": "1708.782831", + "特征段": "特征1", + "基价": "35.8", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3699", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0196", + "是否未计价": "0" + }, + { + "编码": "C07010502", + "名称": "加工铁件 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.767", + "市场价不含税": "5.767", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7553", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0104", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0871", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "挖孔基础人工挖方(或爆破) 松砂石 坑径1000mm以内 坑深5m以内", + "编码": "YX2-129", + "单位": "m?", + "计算式": "41.18372", + "数量": "41.18372", + "中标计算式": "41.18372", + "人工费": "45.51", + "机械费": "5.03", + "材料费": "4.44", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "松砂石", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "54.98", + "合价不含税": "2264.280926", + "特征段": "特征1", + "基价": "54.98", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5998", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0315", + "是否未计价": "0" + }, + { + "编码": "C07010502", + "名称": "加工铁件 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.767", + "市场价不含税": "5.767", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7553", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.016", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0871", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "挖孔基础人工挖方(或爆破) 松砂石 坑径1000mm以内 坑深10m以内", + "编码": "YX2-130", + "单位": "m?", + "计算式": "7.854666", + "数量": "7.854666", + "中标计算式": "7.854666", + "人工费": "79.97", + "机械费": "9.9", + "材料费": "5.23", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "松砂石", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "95.1", + "合价不含税": "746.978737", + "特征段": "特征1", + "基价": "95.1", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.0533", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0557", + "是否未计价": "0" + }, + { + "编码": "C07010502", + "名称": "加工铁件 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.767", + "市场价不含税": "5.767", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8885", + "是否未计价": "0" + }, + { + "编码": "J05-01-001", + "名称": "电动单筒快速卷扬机 10kN", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "167.56", + "市场价不含税": "167.56", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0263", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0092", + "是否未计价": "0" + }, + { + "编码": "J15-01-004", + "名称": "吹风机 能力 4m?/min", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "57.52", + "市场价不含税": "57.52", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0451", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1025", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "挖孔基础人工挖方(或爆破) 松砂石 坑径1500mm以内 坑深10m以内", + "编码": "YX2-135", + "单位": "m?", + "计算式": "36.946668", + "数量": "36.946668", + "中标计算式": "36.946668", + "人工费": "77.47", + "机械费": "9.74", + "材料费": "5.23", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "松砂石", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "92.44", + "合价不含税": "3415.34999", + "特征段": "特征1", + "基价": "92.44", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.0213", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0534", + "是否未计价": "0" + }, + { + "编码": "C07010502", + "名称": "加工铁件 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.767", + "市场价不含税": "5.767", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8885", + "是否未计价": "0" + }, + { + "编码": "J05-01-001", + "名称": "电动单筒快速卷扬机 10kN", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "167.56", + "市场价不含税": "167.56", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0259", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.009", + "是否未计价": "0" + }, + { + "编码": "J15-01-004", + "名称": "吹风机 能力 4m?/min", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "57.52", + "市场价不含税": "57.52", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0446", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1025", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "挖孔基础机械挖方 普通土、坚土 孔深6m以上 孔径1.0m以内", + "编码": "YX2-195", + "单位": "m", + "计算式": "40", + "数量": "40", + "中标计算式": "40", + "人工费": "125.26", + "机械费": "237.53", + "材料费": "2.57", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "普通土、坚土", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "365.36", + "合价不含税": "14614.4", + "特征段": "特征1", + "基价": "365.36", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8841", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5658", + "是否未计价": "0" + }, + { + "编码": "C22010623", + "名称": "钢护筒加工件", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.717", + "市场价不含税": "5.717", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.44", + "是否未计价": "0" + }, + { + "编码": "J01-01-034", + "名称": "履带式单斗液压挖掘机 斗容量 0.6m?", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "639.68", + "市场价不含税": "639.68", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0904", + "是否未计价": "0" + }, + { + "编码": "J28-01-002", + "名称": "履带式旋挖钻机 孔径 Φ1000", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "2208.53", + "市场价不含税": "2208.53", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0687", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0889", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0503", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "挖孔基础机械挖方 普通土、坚土 孔深6m以上 孔径1.2m以内", + "编码": "YX2-196", + "单位": "m", + "计算式": "7.2", + "数量": "7.2", + "中标计算式": "7.2", + "人工费": "126.86", + "机械费": "267.45", + "材料费": "3.1", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "普通土、坚土", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "397.41", + "合价不含税": "2861.352", + "特征段": "特征1", + "基价": "397.41", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8934", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5743", + "是否未计价": "0" + }, + { + "编码": "C22010623", + "名称": "钢护筒加工件", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.717", + "市场价不含税": "5.717", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5315", + "是否未计价": "0" + }, + { + "编码": "J01-01-034", + "名称": "履带式单斗液压挖掘机 斗容量 0.6m?", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "639.68", + "市场价不含税": "639.68", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0918", + "是否未计价": "0" + }, + { + "编码": "J28-01-003", + "名称": "履带式旋挖钻机 孔径 Φ1200", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "2572.08", + "市场价不含税": "2572.08", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0702", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0895", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0608", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "挖孔基础机械挖方 普通土、坚土 孔深6m以上 孔径1.4m以内", + "编码": "YX2-197", + "单位": "m", + "计算式": "14", + "数量": "14", + "中标计算式": "14", + "人工费": "128.49", + "机械费": "314.94", + "材料费": "3.62", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "普通土、坚土", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "447.05", + "合价不含税": "6258.7", + "特征段": "特征1", + "基价": "447.05", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.9032", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5827", + "是否未计价": "0" + }, + { + "编码": "C22010623", + "名称": "钢护筒加工件", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.717", + "市场价不含税": "5.717", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.62", + "是否未计价": "0" + }, + { + "编码": "J01-01-034", + "名称": "履带式单斗液压挖掘机 斗容量 0.6m?", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "639.68", + "市场价不含税": "639.68", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0931", + "是否未计价": "0" + }, + { + "编码": "J28-01-004", + "名称": "履带式旋挖钻机 孔径 Φ1500", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "3166.4", + "市场价不含税": "3166.4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0717", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0901", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0709", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "挖孔基础机械挖方 松砂石 孔深6m以上 孔径1.0m以内", + "编码": "YX2-207", + "单位": "m", + "计算式": "10", + "数量": "10", + "中标计算式": "10", + "人工费": "182.15", + "机械费": "499.25", + "材料费": "2.58", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "松砂石", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "683.98", + "合价不含税": "6839.8", + "特征段": "特征1", + "基价": "683.98", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.2826", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8247", + "是否未计价": "0" + }, + { + "编码": "C22010623", + "名称": "钢护筒加工件", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.717", + "市场价不含税": "5.717", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4429", + "是否未计价": "0" + }, + { + "编码": "J01-01-035", + "名称": "履带式单斗液压挖掘机 斗容量 1m?", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "1096.27", + "市场价不含税": "1096.27", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1538", + "是否未计价": "0" + }, + { + "编码": "J28-01-002", + "名称": "履带式旋挖钻机 孔径 Φ1000", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "2208.53", + "市场价不含税": "2208.53", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1319", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.125", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0506", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "挖孔基础机械挖方 松砂石 孔深6m以上 孔径1.2m以内", + "编码": "YX2-208", + "单位": "m", + "计算式": "22.8", + "数量": "22.8", + "中标计算式": "22.8", + "人工费": "183.6", + "机械费": "552.38", + "材料费": "3.09", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "松砂石", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "739.07", + "合价不含税": "16850.796", + "特征段": "特征1", + "基价": "739.07", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.2908", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8325", + "是否未计价": "0" + }, + { + "编码": "C22010623", + "名称": "钢护筒加工件", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.717", + "市场价不含税": "5.717", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.53", + "是否未计价": "0" + }, + { + "编码": "J01-01-035", + "名称": "履带式单斗液压挖掘机 斗容量 1m?", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "1096.27", + "市场价不含税": "1096.27", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1551", + "是否未计价": "0" + }, + { + "编码": "J28-01-003", + "名称": "履带式旋挖钻机 孔径 Φ1200", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "2572.08", + "市场价不含税": "2572.08", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1333", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1255", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0606", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "挖孔基础机械挖方 松砂石 孔深6m以上 孔径1.4m以内", + "编码": "YX2-209", + "单位": "m", + "计算式": "34", + "数量": "34", + "中标计算式": "34", + "人工费": "184.94", + "机械费": "637.54", + "材料费": "3.62", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "松砂石", + "资源库名称": "24", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "826.1", + "合价不含税": "28087.4", + "特征段": "特征1", + "基价": "826.1", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.3015", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8378", + "是否未计价": "0" + }, + { + "编码": "C22010623", + "名称": "钢护筒加工件", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.717", + "市场价不含税": "5.717", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.62", + "是否未计价": "0" + }, + { + "编码": "J01-01-035", + "名称": "履带式单斗液压挖掘机 斗容量 1m?", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "1096.27", + "市场价不含税": "1096.27", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1563", + "是否未计价": "0" + }, + { + "编码": "J28-01-004", + "名称": "履带式旋挖钻机 孔径 Φ1500", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "3166.4", + "市场价不含税": "3166.4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1347", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1261", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0709", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{8C4CC636-3741-4F07-865A-28D38AB7F31D}", + "序号": "1.3", + "项目名称": "基础砌筑", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{9DFD2FF9-F903-4144-AA90-E96684444E8B}", + "序号": "1.3.1", + "项目名称": "预制基础", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + }, + { + "GUID": "{6430D09F-1680-44F5-9BB7-1DB415E4810B}", + "序号": "1.3.2", + "项目名称": "现浇基础", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "1769496.598607", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + }, + {}, + { + "资源库名称": "装置性材料预算价2018" + }, + { + "资源库名称": "通用材料库" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "钢筋加工及制作", + "编码": "YX3-43", + "单位": "t", + "计算式": "46.193", + "数量": "46.193", + "中标计算式": "46.193", + "人工费": "379.79", + "机械费": "142.64", + "材料费": "8.83", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "钢筋加工及制作", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "531.26", + "合价不含税": "24540.49318", + "特征段": "特征1", + "基价": "531.26", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.1463", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.6745", + "是否未计价": "0" + }, + { + "编码": "C12010100", + "名称": "电焊条 J422 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.96", + "市场价不含税": "4.96", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.746", + "是否未计价": "0" + }, + { + "编码": "J08-01-005", + "名称": "数控钢筋调直切断机 直径 Φ1.8~3", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "194.75", + "市场价不含税": "194.75", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0741", + "是否未计价": "0" + }, + { + "编码": "J08-01-006", + "名称": "钢筋弯曲机 直径 Φ40", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "27.63", + "市场价不含税": "27.63", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4144", + "是否未计价": "0" + }, + { + "编码": "J10-01-028", + "名称": "汽油电焊机 电流 160A以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "226.51", + "市场价不含税": "226.51", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3924", + "是否未计价": "0" + }, + { + "编码": "J15-01-012", + "名称": "内切割机", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "60.49", + "市场价不含税": "60.49", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4608", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1732", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "钢筋笼加工及制作", + "编码": "YX3-44", + "单位": "t", + "计算式": "24.31648", + "数量": "24.31648", + "中标计算式": "24.31648", + "人工费": "455.88", + "机械费": "156.96", + "材料费": "9.72", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "钢筋加工及制作", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "622.56", + "合价不含税": "15138.467789", + "特征段": "特征1", + "基价": "622.56", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.3759", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.2104", + "是否未计价": "0" + }, + { + "编码": "C12010100", + "名称": "电焊条 J422 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.96", + "市场价不含税": "4.96", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.921", + "是否未计价": "0" + }, + { + "编码": "J08-01-005", + "名称": "数控钢筋调直切断机 直径 Φ1.8~3", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "194.75", + "市场价不含税": "194.75", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0834", + "是否未计价": "0" + }, + { + "编码": "J08-01-006", + "名称": "钢筋弯曲机 直径 Φ40", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "27.63", + "市场价不含税": "27.63", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4548", + "是否未计价": "0" + }, + { + "编码": "J10-01-028", + "名称": "汽油电焊机 电流 160A以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "226.51", + "市场价不含税": "226.51", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4307", + "是否未计价": "0" + }, + { + "编码": "J15-01-012", + "名称": "内切割机", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "60.49", + "市场价不含税": "60.49", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5058", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1906", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "基础垫层 素混凝土垫层 每基混凝土量10m?以内", + "编码": "YX3-61", + "单位": "m?", + "计算式": "52.78", + "数量": "52.78", + "中标计算式": "52.78", + "人工费": "123.49", + "机械费": "18.34", + "材料费": "4.96", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "基础垫层", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "146.79", + "合价不含税": "7747.5762", + "特征段": "特征1", + "基价": "146.79", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8536", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5691", + "是否未计价": "0" + }, + { + "编码": "C22040711", + "名称": "草袋", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.57", + "市场价不含税": "1.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.1", + "是否未计价": "0" + }, + { + "编码": "J06-01-021", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量250L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "178.74", + "市场价不含税": "178.74", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0969", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0737", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0973", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "混凝土搅拌及浇制 每个基础混凝土量5m?以内", + "编码": "YX3-63", + "单位": "m?", + "计算式": "68.6084", + "数量": "68.6084", + "中标计算式": "68.6084", + "人工费": "178.38", + "机械费": "14.74", + "材料费": "56.59", + "定额系数": "1", + "人工系数": "0.9", + "材料系数": "0.9", + "机械系数": "0.9", + "定额范围": "1", + "定额章节名称": "混凝土搅拌及浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "224.739", + "合价不含税": "15418.983208", + "特征段": "特征1", + "基价": "249.71", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.2329", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8221", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3503", + "是否未计价": "0" + }, + { + "编码": "C13050501", + "名称": "扒钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.363", + "市场价不含税": "6.363", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3093", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4582", + "是否未计价": "0" + }, + { + "编码": "C22010201", + "名称": "枕木 160×220×2500", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "131.101", + "市场价不含税": "131.101", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0088", + "是否未计价": "0" + }, + { + "编码": "C22010401", + "名称": "通用钢模板", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.726", + "市场价不含税": "4.726", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.903", + "是否未计价": "0" + }, + { + "编码": "C22010431", + "名称": "复合木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "39.45", + "市场价不含税": "39.45", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4983", + "是否未计价": "0" + }, + { + "编码": "C22040711", + "名称": "草袋", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.57", + "市场价不含税": "1.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.52", + "是否未计价": "0" + }, + { + "编码": "J06-01-021", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量250L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "178.74", + "市场价不含税": "178.74", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0119", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0155", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0394", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.1097", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "混凝土搅拌及浇制 每个基础混凝土量5m?以内", + "编码": "YX3-63", + "单位": "m?", + "计算式": "31.884", + "数量": "31.884", + "中标计算式": "31.884", + "人工费": "178.38", + "机械费": "14.74", + "材料费": "56.59", + "定额系数": "1", + "人工系数": "1.2", + "材料系数": "1.2", + "机械系数": "1.2", + "定额范围": "1", + "定额章节名称": "混凝土搅拌及浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "299.652", + "合价不含税": "9554.104368", + "特征段": "特征1", + "基价": "249.71", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.2329", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8221", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3503", + "是否未计价": "0" + }, + { + "编码": "C13050501", + "名称": "扒钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.363", + "市场价不含税": "6.363", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3093", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4582", + "是否未计价": "0" + }, + { + "编码": "C22010201", + "名称": "枕木 160×220×2500", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "131.101", + "市场价不含税": "131.101", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0088", + "是否未计价": "0" + }, + { + "编码": "C22010401", + "名称": "通用钢模板", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.726", + "市场价不含税": "4.726", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.903", + "是否未计价": "0" + }, + { + "编码": "C22010431", + "名称": "复合木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "39.45", + "市场价不含税": "39.45", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4983", + "是否未计价": "0" + }, + { + "编码": "C22040711", + "名称": "草袋", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.57", + "市场价不含税": "1.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.52", + "是否未计价": "0" + }, + { + "编码": "J06-01-021", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量250L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "178.74", + "市场价不含税": "178.74", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0119", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0155", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0394", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.1097", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "混凝土搅拌及浇制 每个基础混凝土量5m?以内", + "编码": "YX3-63", + "单位": "m?", + "计算式": "118.036", + "数量": "118.036", + "中标计算式": "118.036", + "人工费": "178.38", + "机械费": "14.74", + "材料费": "56.59", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "混凝土搅拌及浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "249.71", + "合价不含税": "29474.76956", + "特征段": "特征1", + "基价": "249.71", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.2329", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8221", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3503", + "是否未计价": "0" + }, + { + "编码": "C13050501", + "名称": "扒钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.363", + "市场价不含税": "6.363", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3093", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4582", + "是否未计价": "0" + }, + { + "编码": "C22010201", + "名称": "枕木 160×220×2500", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "131.101", + "市场价不含税": "131.101", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0088", + "是否未计价": "0" + }, + { + "编码": "C22010401", + "名称": "通用钢模板", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.726", + "市场价不含税": "4.726", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.903", + "是否未计价": "0" + }, + { + "编码": "C22010431", + "名称": "复合木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "39.45", + "市场价不含税": "39.45", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4983", + "是否未计价": "0" + }, + { + "编码": "C22040711", + "名称": "草袋", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.57", + "市场价不含税": "1.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.52", + "是否未计价": "0" + }, + { + "编码": "J06-01-021", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量250L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "178.74", + "市场价不含税": "178.74", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0119", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0155", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0394", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.1097", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "混凝土搅拌及浇制 每个基础混凝土量10m?以内", + "编码": "YX3-64", + "单位": "m?", + "计算式": "20.488", + "数量": "20.488", + "中标计算式": "20.488", + "人工费": "148.19", + "机械费": "13.49", + "材料费": "52.13", + "定额系数": "1", + "人工系数": "0.9", + "材料系数": "0.9", + "机械系数": "0.9", + "定额范围": "1", + "定额章节名称": "混凝土搅拌及浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "192.429", + "合价不含税": "3942.485352", + "特征段": "特征1", + "基价": "213.81", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.0242", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.683", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3503", + "是否未计价": "0" + }, + { + "编码": "C13050501", + "名称": "扒钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.363", + "市场价不含税": "6.363", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.22", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4294", + "是否未计价": "0" + }, + { + "编码": "C22010201", + "名称": "枕木 160×220×2500", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "131.101", + "市场价不含税": "131.101", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0064", + "是否未计价": "0" + }, + { + "编码": "C22010401", + "名称": "通用钢模板", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.726", + "市场价不含税": "4.726", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.4925", + "是否未计价": "0" + }, + { + "编码": "C22010431", + "名称": "复合木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "39.45", + "市场价不含税": "39.45", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4637", + "是否未计价": "0" + }, + { + "编码": "C22040711", + "名称": "草袋", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.57", + "市场价不含税": "1.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.48", + "是否未计价": "0" + }, + { + "编码": "J06-01-022", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量400L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "189.99", + "市场价不含税": "189.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0115", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0146", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0353", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.0221", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "混凝土搅拌及浇制 每个基础混凝土量10m?以内", + "编码": "YX3-64", + "单位": "m?", + "计算式": "13.16", + "数量": "13.16", + "中标计算式": "13.16", + "人工费": "148.19", + "机械费": "13.49", + "材料费": "52.13", + "定额系数": "1", + "人工系数": "1.2", + "材料系数": "1.2", + "机械系数": "1.2", + "定额范围": "1", + "定额章节名称": "混凝土搅拌及浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "256.572", + "合价不含税": "3376.48752", + "特征段": "特征1", + "基价": "213.81", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.0242", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.683", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3503", + "是否未计价": "0" + }, + { + "编码": "C13050501", + "名称": "扒钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.363", + "市场价不含税": "6.363", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.22", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4294", + "是否未计价": "0" + }, + { + "编码": "C22010201", + "名称": "枕木 160×220×2500", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "131.101", + "市场价不含税": "131.101", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0064", + "是否未计价": "0" + }, + { + "编码": "C22010401", + "名称": "通用钢模板", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.726", + "市场价不含税": "4.726", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.4925", + "是否未计价": "0" + }, + { + "编码": "C22010431", + "名称": "复合木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "39.45", + "市场价不含税": "39.45", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4637", + "是否未计价": "0" + }, + { + "编码": "C22040711", + "名称": "草袋", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.57", + "市场价不含税": "1.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.48", + "是否未计价": "0" + }, + { + "编码": "J06-01-022", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量400L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "189.99", + "市场价不含税": "189.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0115", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0146", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0353", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.0221", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "混凝土搅拌及浇制 每个基础混凝土量10m?以内", + "编码": "YX3-64", + "单位": "m?", + "计算式": "63.912", + "数量": "63.912", + "中标计算式": "63.912", + "人工费": "148.19", + "机械费": "13.49", + "材料费": "52.13", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "混凝土搅拌及浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "213.81", + "合价不含税": "13665.02472", + "特征段": "特征1", + "基价": "213.81", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.0242", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.683", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3503", + "是否未计价": "0" + }, + { + "编码": "C13050501", + "名称": "扒钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.363", + "市场价不含税": "6.363", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.22", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4294", + "是否未计价": "0" + }, + { + "编码": "C22010201", + "名称": "枕木 160×220×2500", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "131.101", + "市场价不含税": "131.101", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0064", + "是否未计价": "0" + }, + { + "编码": "C22010401", + "名称": "通用钢模板", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.726", + "市场价不含税": "4.726", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.4925", + "是否未计价": "0" + }, + { + "编码": "C22010431", + "名称": "复合木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "39.45", + "市场价不含税": "39.45", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4637", + "是否未计价": "0" + }, + { + "编码": "C22040711", + "名称": "草袋", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.57", + "市场价不含税": "1.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.48", + "是否未计价": "0" + }, + { + "编码": "J06-01-022", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量400L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "189.99", + "市场价不含税": "189.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0115", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0146", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0353", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.0221", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "混凝土搅拌及浇制 每个基础混凝土量20m?以内", + "编码": "YX3-65", + "单位": "m?", + "计算式": "20.812", + "数量": "20.812", + "中标计算式": "20.812", + "人工费": "132.62", + "机械费": "13.1", + "材料费": "46.92", + "定额系数": "1", + "人工系数": "1.2", + "材料系数": "1.2", + "机械系数": "1.2", + "定额范围": "1", + "定额章节名称": "混凝土搅拌及浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "231.168", + "合价不含税": "4811.068416", + "特征段": "特征1", + "基价": "192.64", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.9167", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.6112", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3503", + "是否未计价": "0" + }, + { + "编码": "C13050501", + "名称": "扒钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.363", + "市场价不含税": "6.363", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1891", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4044", + "是否未计价": "0" + }, + { + "编码": "C22010201", + "名称": "枕木 160×220×2500", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "131.101", + "市场价不含税": "131.101", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0056", + "是否未计价": "0" + }, + { + "编码": "C22010401", + "名称": "通用钢模板", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.726", + "市场价不含税": "4.726", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.9257", + "是否未计价": "0" + }, + { + "编码": "C22010431", + "名称": "复合木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "39.45", + "市场价不含税": "39.45", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4158", + "是否未计价": "0" + }, + { + "编码": "C22040711", + "名称": "草袋", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.57", + "市场价不含税": "1.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4", + "是否未计价": "0" + }, + { + "编码": "J06-01-022", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量400L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "189.99", + "市场价不含税": "189.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0108", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0138", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0345", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.92", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "混凝土搅拌及浇制 每个基础混凝土量20m?以内", + "编码": "YX3-65", + "单位": "m?", + "计算式": "329.688", + "数量": "329.688", + "中标计算式": "329.688", + "人工费": "132.62", + "机械费": "13.1", + "材料费": "46.92", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "混凝土搅拌及浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "192.64", + "合价不含税": "63511.09632", + "特征段": "特征1", + "基价": "192.64", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.9167", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.6112", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3503", + "是否未计价": "0" + }, + { + "编码": "C13050501", + "名称": "扒钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.363", + "市场价不含税": "6.363", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1891", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4044", + "是否未计价": "0" + }, + { + "编码": "C22010201", + "名称": "枕木 160×220×2500", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "131.101", + "市场价不含税": "131.101", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0056", + "是否未计价": "0" + }, + { + "编码": "C22010401", + "名称": "通用钢模板", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.726", + "市场价不含税": "4.726", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.9257", + "是否未计价": "0" + }, + { + "编码": "C22010431", + "名称": "复合木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "39.45", + "市场价不含税": "39.45", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4158", + "是否未计价": "0" + }, + { + "编码": "C22040711", + "名称": "草袋", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.57", + "市场价不含税": "1.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4", + "是否未计价": "0" + }, + { + "编码": "J06-01-022", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量400L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "189.99", + "市场价不含税": "189.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0108", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0138", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0345", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.92", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "混凝土搅拌及浇制 每个基础混凝土量40m?以内", + "编码": "YX3-66", + "单位": "m?", + "计算式": "6", + "数量": "6", + "中标计算式": "6", + "人工费": "128.8", + "机械费": "12.44", + "材料费": "40.62", + "定额系数": "1", + "人工系数": "1.2", + "材料系数": "1.2", + "机械系数": "1.2", + "定额范围": "1", + "定额章节名称": "混凝土搅拌及浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "218.232", + "合价不含税": "1309.392", + "特征段": "特征1", + "基价": "181.86", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8904", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5935", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3503", + "是否未计价": "0" + }, + { + "编码": "C13050501", + "名称": "扒钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.363", + "市场价不含税": "6.363", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1233", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3764", + "是否未计价": "0" + }, + { + "编码": "C22010201", + "名称": "枕木 160×220×2500", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "131.101", + "市场价不含税": "131.101", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0035", + "是否未计价": "0" + }, + { + "编码": "C22010401", + "名称": "通用钢模板", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.726", + "市场价不含税": "4.726", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.2611", + "是否未计价": "0" + }, + { + "编码": "C22010431", + "名称": "复合木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "39.45", + "市场价不含税": "39.45", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3597", + "是否未计价": "0" + }, + { + "编码": "C22040711", + "名称": "草袋", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.57", + "市场价不含税": "1.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4", + "是否未计价": "0" + }, + { + "编码": "J06-01-022", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量400L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "189.99", + "市场价不含税": "189.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0102", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0129", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0328", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7966", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "混凝土搅拌及浇制 每个基础混凝土量40m?以内", + "编码": "YX3-66", + "单位": "m?", + "计算式": "101.592", + "数量": "101.592", + "中标计算式": "101.592", + "人工费": "128.8", + "机械费": "12.44", + "材料费": "40.62", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "混凝土搅拌及浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "181.86", + "合价不含税": "18475.52112", + "特征段": "特征1", + "基价": "181.86", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8904", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5935", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3503", + "是否未计价": "0" + }, + { + "编码": "C13050501", + "名称": "扒钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.363", + "市场价不含税": "6.363", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1233", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3764", + "是否未计价": "0" + }, + { + "编码": "C22010201", + "名称": "枕木 160×220×2500", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "131.101", + "市场价不含税": "131.101", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0035", + "是否未计价": "0" + }, + { + "编码": "C22010401", + "名称": "通用钢模板", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.726", + "市场价不含税": "4.726", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.2611", + "是否未计价": "0" + }, + { + "编码": "C22010431", + "名称": "复合木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "39.45", + "市场价不含税": "39.45", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3597", + "是否未计价": "0" + }, + { + "编码": "C22040711", + "名称": "草袋", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.57", + "市场价不含税": "1.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4", + "是否未计价": "0" + }, + { + "编码": "J06-01-022", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量400L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "189.99", + "市场价不含税": "189.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0102", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0129", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0328", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7966", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "混凝土搅拌及浇制 保护帽", + "编码": "YX3-72", + "单位": "m?", + "计算式": "21.84", + "数量": "21.84", + "中标计算式": "21.84", + "人工费": "712.27", + "机械费": "47.04", + "材料费": "90.52", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "混凝土搅拌及浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "849.83", + "合价不含税": "18560.2872", + "特征段": "特征1", + "基价": "849.83", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.9927", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.4891", + "是否未计价": "0" + }, + { + "编码": "C13050101", + "名称": "圆钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.601", + "市场价不含税": "5.601", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.1", + "是否未计价": "0" + }, + { + "编码": "C22010431", + "名称": "复合木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "39.45", + "市场价不含税": "39.45", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.9513", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1495", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.7748", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "钻孔灌注桩基础 商品混凝土浇制 孔深10m以内", + "编码": "YX3-175", + "单位": "m?", + "计算式": "242.65764", + "数量": "242.65764", + "中标计算式": "242.65764", + "人工费": "109.39", + "机械费": "45.59", + "材料费": "8.12", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "商品混凝土浇制", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "163.1", + "合价不含税": "39577.461084", + "特征段": "特征1", + "基价": "163.1", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7563", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.504", + "是否未计价": "0" + }, + { + "编码": "C13050501", + "名称": "扒钉", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.363", + "市场价不含税": "6.363", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0718", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1189", + "是否未计价": "0" + }, + { + "编码": "C22010432", + "名称": "木模板", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1621.771", + "市场价不含税": "1621.771", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0043", + "是否未计价": "0" + }, + { + "编码": "J05-01-009", + "名称": "电动单筒慢速卷扬机 30kN", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "175.97", + "市场价不含税": "175.97", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1053", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0307", + "是否未计价": "0" + }, + { + "编码": "J09-01-016", + "名称": "污水泵 出口直径 Φ70", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "88.61", + "市场价不含税": "88.61", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0401", + "是否未计价": "0" + }, + { + "编码": "J13-01-060", + "名称": "机动绞磨 3t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "162.99", + "市场价不含税": "162.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0924", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0255", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1591", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "现浇护壁 有筋", + "编码": "YX3-193", + "单位": "m?", + "计算式": "13.6656", + "数量": "13.6656", + "中标计算式": "13.6656", + "人工费": "323.63", + "机械费": "129.45", + "材料费": "128.77", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "基础护壁", + "资源库名称": "32", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "581.85", + "合价不含税": "7951.32936", + "特征段": "特征1", + "基价": "581.85", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.7782", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.7782", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.059", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.118", + "是否未计价": "0" + }, + { + "编码": "C22010421", + "名称": "专用钢模板", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.652", + "市场价不含税": "5.652", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.8734", + "是否未计价": "0" + }, + { + "编码": "C22010441", + "名称": "钢模板附件", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.989", + "市场价不含税": "4.989", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0354", + "是否未计价": "0" + }, + { + "编码": "C22010443", + "名称": "内模定型加固圈", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.359", + "市场价不含税": "5.359", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0118", + "是否未计价": "0" + }, + { + "编码": "J06-01-021", + "名称": "滚筒式混凝土搅拌机(电动式) 出料容量250L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "178.74", + "市场价不含税": "178.74", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3031", + "是否未计价": "0" + }, + { + "编码": "J06-01-052", + "名称": "混凝土振捣器(插入式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "13.83", + "市场价不含税": "13.83", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0249", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2206", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.5249", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8488", + "项目名称": "爬梯", + "单位": "t", + "数量": "0.06", + "损耗率": "0.5", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "地脚螺栓", + "资源库名称": "33", + "市场价不含税": "8018", + "市场价含税": "9060", + "单价不含税": "6018", + "单价含税": "6800", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "408", + "合价不含税": "361.08", + "线重": "0", + "制造长度": "0", + "每件重": "1010" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8489", + "项目名称": "超声波测管", + "单位": "kg", + "数量": "2040.48", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "1", + "运输类型": "钢管", + "资源库名称": "33", + "市场价不含税": "5.51", + "市场价含税": "6.23", + "单价不含税": "5.51", + "单价含税": "6.23", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "12712.1904", + "合价不含税": "11243.0448", + "线重": "0", + "制造长度": "0", + "每件重": "1" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8490", + "项目名称": "地脚螺栓", + "单位": "t", + "数量": "9.632", + "损耗率": "0.5", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "地脚螺栓", + "资源库名称": "33", + "市场价不含税": "8018", + "市场价含税": "9060", + "单价不含税": "6018", + "单价含税": "6800", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "65497.6", + "合价不含税": "57965.376", + "线重": "0", + "制造长度": "0", + "每件重": "1010" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8491", + "编码": "H09010101", + "项目名称": "普通圆钢", + "规格型号": "综合", + "单位": "t", + "数量": "68.469", + "损耗率": "6", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "钢筋(加工制作)", + "资源库名称": "34", + "市场价不含税": "4531", + "市场价含税": "0", + "单价不含税": "3959", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "0", + "合价不含税": "271068.771", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "1000" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8492", + "编码": "SP1004", + "项目名称": "商品混凝土(立柱)", + "规格型号": "C25", + "单位": "m?", + "数量": "39.944", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "2714.45", + "运输类型": "商品混凝土", + "资源库名称": "35", + "市场价不含税": "591.26", + "市场价含税": "0", + "单价不含税": "246.43", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "0", + "合价不含税": "9843.39992", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "2714.45" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8493", + "编码": "SP1004", + "项目名称": "商品混凝土", + "规格型号": "C25", + "单位": "m?", + "数量": "202.71364", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "2714.45", + "运输类型": "商品混凝土", + "资源库名称": "35", + "市场价不含税": "591.26", + "市场价含税": "0", + "单价不含税": "246.43", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "0", + "合价不含税": "49954.722305", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "2714.45" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8494", + "编码": "ZH1002", + "项目名称": "混凝土", + "规格型号": "C15", + "单位": "m?", + "数量": "74.62", + "损耗率": "0", + "供货方": "0", + "集中配送": "0", + "单重": "2653.75", + "资源库名称": "35", + "市场价不含税": "427.581", + "市场价含税": "0", + "单价不含税": "217.711", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "0", + "合价不含税": "16245.59482", + "children": [ + { + "id": "8495", + "编码": "C09010102", + "项目名称": "普通硅酸盐水泥", + "规格型号": "42.5", + "单位": "t", + "数量": "21.49056", + "损耗率": "5", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水泥", + "资源库名称": "35", + "市场价不含税": "601.77", + "市场价含税": "0", + "单价不含税": "396", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "8510.26176", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1010" + }, + { + "id": "8496", + "编码": "C10010101", + "项目名称": "中砂", + "单位": "m?", + "数量": "37.98158", + "损耗率": "15", + "供货方": "2", + "集中配送": "0", + "单重": "1550", + "运输类型": "砂", + "资源库名称": "35", + "市场价不含税": "235", + "市场价含税": "0", + "单价不含税": "65", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "2468.8027", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1550" + }, + { + "id": "8497", + "编码": "C10020103", + "项目名称": "碎石", + "规格型号": "粒径40mm以内", + "单位": "m?", + "数量": "65.14326", + "损耗率": "10", + "供货方": "2", + "集中配送": "0", + "单重": "1600", + "运输类型": "碎石", + "资源库名称": "35", + "市场价不含税": "153.4", + "市场价含税": "0", + "单价不含税": "80", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "5211.4608", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1600" + }, + { + "id": "8498", + "编码": "C21010101", + "项目名称": "水", + "单位": "t", + "数量": "13.4316", + "损耗率": "0", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水", + "资源库名称": "35", + "市场价不含税": "4.1", + "市场价含税": "0", + "单价不含税": "4.1", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "55.06956", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1200" + } + ], + "线重": "0", + "制造长度": "0", + "截面积": "0" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8499", + "编码": "ZH1004", + "项目名称": "混凝土(护壁)", + "规格型号": "C25", + "单位": "m?", + "数量": "13.6656", + "损耗率": "0", + "供货方": "0", + "集中配送": "0", + "单重": "2714.45", + "资源库名称": "35", + "市场价不含税": "464.4686", + "市场价含税": "0", + "单价不含税": "246.433", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "0", + "合价不含税": "3367.654805", + "children": [ + { + "id": "8500", + "编码": "C09010102", + "项目名称": "普通硅酸盐水泥", + "规格型号": "42.5", + "单位": "t", + "数量": "4.919616", + "损耗率": "5", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水泥", + "资源库名称": "35", + "市场价不含税": "601.77", + "市场价含税": "0", + "单价不含税": "396", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "1948.167936", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1010" + }, + { + "id": "8501", + "编码": "C10010101", + "项目名称": "中砂", + "单位": "m?", + "数量": "6.108523", + "损耗率": "15", + "供货方": "2", + "集中配送": "0", + "单重": "1550", + "运输类型": "砂", + "资源库名称": "35", + "市场价不含税": "235", + "市场价含税": "0", + "单价不含税": "65", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "397.053995", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1550" + }, + { + "id": "8502", + "编码": "C10020103", + "项目名称": "碎石", + "规格型号": "粒径40mm以内", + "单位": "m?", + "数量": "12.654346", + "损耗率": "10", + "供货方": "2", + "集中配送": "0", + "单重": "1600", + "运输类型": "碎石", + "资源库名称": "35", + "市场价不含税": "153.4", + "市场价含税": "0", + "单价不含税": "80", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "1012.34768", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1600" + }, + { + "id": "8503", + "编码": "C21010101", + "项目名称": "水", + "单位": "t", + "数量": "2.459808", + "损耗率": "0", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水", + "资源库名称": "35", + "市场价不含税": "4.1", + "市场价含税": "0", + "单价不含税": "4.1", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "10.085213", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1200" + } + ], + "线重": "0", + "制造长度": "0", + "截面积": "0" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8504", + "编码": "ZH1004", + "项目名称": "混凝土(立柱)", + "规格型号": "C25", + "单位": "m?", + "数量": "73.384", + "损耗率": "0", + "供货方": "0", + "集中配送": "0", + "单重": "2714.45", + "资源库名称": "35", + "市场价不含税": "464.4686", + "市场价含税": "0", + "单价不含税": "246.433", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "0", + "合价不含税": "18084.239272", + "children": [ + { + "id": "8505", + "编码": "C09010102", + "项目名称": "普通硅酸盐水泥", + "规格型号": "42.5", + "单位": "t", + "数量": "26.41824", + "损耗率": "5", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水泥", + "资源库名称": "35", + "市场价不含税": "601.77", + "市场价含税": "0", + "单价不含税": "396", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "10461.62304", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1010" + }, + { + "id": "8506", + "编码": "C10010101", + "项目名称": "中砂", + "单位": "m?", + "数量": "32.802648", + "损耗率": "15", + "供货方": "2", + "集中配送": "0", + "单重": "1550", + "运输类型": "砂", + "资源库名称": "35", + "市场价不含税": "235", + "市场价含税": "0", + "单价不含税": "65", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "2132.17212", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1550" + }, + { + "id": "8507", + "编码": "C10020103", + "项目名称": "碎石", + "规格型号": "粒径40mm以内", + "单位": "m?", + "数量": "67.953584", + "损耗率": "10", + "供货方": "2", + "集中配送": "0", + "单重": "1600", + "运输类型": "碎石", + "资源库名称": "35", + "市场价不含税": "153.4", + "市场价含税": "0", + "单价不含税": "80", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "5436.28672", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1600" + }, + { + "id": "8508", + "编码": "C21010101", + "项目名称": "水", + "单位": "t", + "数量": "13.20912", + "损耗率": "0", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水", + "资源库名称": "35", + "市场价不含税": "4.1", + "市场价含税": "0", + "单价不含税": "4.1", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "54.157392", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1200" + } + ], + "线重": "0", + "制造长度": "0", + "截面积": "0" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8509", + "编码": "ZH1004", + "项目名称": "混凝土(基础)", + "规格型号": "C25", + "单位": "m?", + "数量": "700.7964", + "损耗率": "0", + "供货方": "0", + "集中配送": "0", + "单重": "2714.45", + "资源库名称": "35", + "市场价不含税": "464.4686", + "市场价含税": "0", + "单价不含税": "246.433", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "0", + "合价不含税": "172699.359241", + "children": [ + { + "id": "8510", + "编码": "C09010102", + "项目名称": "普通硅酸盐水泥", + "规格型号": "42.5", + "单位": "t", + "数量": "252.286704", + "损耗率": "5", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水泥", + "资源库名称": "35", + "市场价不含税": "601.77", + "市场价含税": "0", + "单价不含税": "396", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "99905.534784", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1010" + }, + { + "id": "8511", + "编码": "C10010101", + "项目名称": "中砂", + "单位": "m?", + "数量": "313.255991", + "损耗率": "15", + "供货方": "2", + "集中配送": "0", + "单重": "1550", + "运输类型": "砂", + "资源库名称": "35", + "市场价不含税": "235", + "市场价含税": "0", + "单价不含税": "65", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "20361.639415", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1550" + }, + { + "id": "8512", + "编码": "C10020103", + "项目名称": "碎石", + "规格型号": "粒径40mm以内", + "单位": "m?", + "数量": "648.937466", + "损耗率": "10", + "供货方": "2", + "集中配送": "0", + "单重": "1600", + "运输类型": "碎石", + "资源库名称": "35", + "市场价不含税": "153.4", + "市场价含税": "0", + "单价不含税": "80", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "51914.99728", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1600" + }, + { + "id": "8513", + "编码": "C21010101", + "项目名称": "水", + "单位": "t", + "数量": "126.143352", + "损耗率": "0", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水", + "资源库名称": "35", + "市场价不含税": "4.1", + "市场价含税": "0", + "单价不含税": "4.1", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "517.187743", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1200" + } + ], + "线重": "0", + "制造长度": "0", + "截面积": "0" + } + ] + }, + { + "GUID": "{0B8DAC34-A8BD-46A6-B92D-BF7CCB2C6A99}", + "序号": "1.3.3", + "项目名称": "灌注桩基础", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + }, + { + "GUID": "{7372B2CF-C6CF-403D-91BE-C402AF92DA60}", + "序号": "1.3.4", + "项目名称": "锚杆基础", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + }, + { + "GUID": "{8ECB16E6-C571-4576-A248-0A50186C1A95}", + "序号": "1.3.5", + "项目名称": "其他基础", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + } + ] + }, + { + "GUID": "{60020B85-E823-4F47-8957-E09B1808ED57}", + "序号": "1.4", + "项目名称": "基础防护", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + }, + { + "GUID": "{D5646DAA-6D22-4671-A2D7-D6ABC3081260}", + "序号": "1.5", + "项目名称": "地基处理", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + } + ] + }, + { + "GUID": "{67ED7087-CD54-471F-904D-CC90937A126A}", + "序号": "2", + "项目名称": "杆塔工程", + "代码": "GTGC", + "费率": "0", + "单位": "元/t", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{C7C875F4-66C0-4B09-B8E6-D334EB761640}", + "序号": "2.1", + "项目名称": "杆塔工程材料工地运输", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "114455.869103", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "人力运输 角钢塔材", + "编码": "YX1-20", + "单位": "t.km", + "计算式": "150.00831", + "数量": "150.00831", + "中标计算式": "150.00831", + "人工费": "146.52", + "机械费": "10.95", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "塔材", + "资源库名称": "11", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "157.47", + "合价不含税": "23621.808576", + "特征段": "特征1", + "基价": "157.47", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.7771", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1975", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0348", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 角钢塔材 装卸", + "编码": "YX1-103", + "单位": "t", + "计算式": "500.0277", + "数量": "500.0277", + "中标计算式": "500.0277", + "人工费": "12.76", + "机械费": "36.56", + "材料费": "0.59", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "塔材", + "资源库名称": "11", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "49.91", + "合价不含税": "24956.382507", + "特征段": "特征1", + "基价": "49.91", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1549", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0171", + "是否未计价": "0" + }, + { + "编码": "C01040102", + "名称": "钢丝绳 Φ15以下", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.97", + "市场价不含税": "5.97", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.097", + "是否未计价": "0" + }, + { + "编码": "J03-01-034", + "名称": "汽车式起重机 起重量 8t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "655.69", + "市场价不含税": "655.69", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0238", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0617", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0116", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 角钢塔材 运输", + "编码": "YX1-104", + "单位": "t.km", + "计算式": "5000.277", + "数量": "5000.277", + "中标计算式": "5000.277", + "人工费": "0.55", + "机械费": "1.02", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "塔材", + "资源库名称": "11", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1.57", + "合价不含税": "7850.43489", + "特征段": "特征1", + "基价": "1.57", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0079", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.003", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{8E843F68-34F5-4E5B-A204-C13F3EB10054}", + "序号": "2.2", + "项目名称": "杆塔组立", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{A48517A8-9099-4519-9D39-F27990A0FEC9}", + "序号": "2.2.1", + "项目名称": "混凝土杆组立", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + }, + { + "GUID": "{F971B5D8-7C59-483E-ADD5-BF8EBC488AD0}", + "序号": "2.2.2", + "项目名称": "铁塔、钢管杆组立", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "2901202.645889", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + }, + { + "资源库名称": "装置性材料预算价2018" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "角钢塔组立 塔全高20m以内 每米塔重400kg以上", + "编码": "YX4-37", + "单位": "t", + "计算式": "18.628", + "数量": "18.628", + "中标计算式": "18.628", + "人工费": "476.45", + "机械费": "60.85", + "材料费": "7.33", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "角钢塔组立", + "资源库名称": "14", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "544.63", + "合价不含税": "10145.36764", + "特征段": "特征1", + "基价": "544.63", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.4381", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.3552", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0031", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1258", + "是否未计价": "0" + }, + { + "编码": "C20020101", + "名称": "普通磁漆", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.727", + "市场价不含税": "9.727", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1524", + "是否未计价": "0" + }, + { + "编码": "J13-01-061", + "名称": "机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "174.42", + "市场价不含税": "174.42", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1027", + "是否未计价": "0" + }, + { + "编码": "J13-01-062", + "名称": "手扶机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "240.23", + "市场价不含税": "240.23", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.016", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1008", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0217", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1437", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "角钢塔组立 塔全高30m以内 每米塔重300kg以内", + "编码": "YX4-40", + "单位": "t", + "计算式": "7.953", + "数量": "7.953", + "中标计算式": "7.953", + "人工费": "544.54", + "机械费": "69.49", + "材料费": "8.64", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "角钢塔组立", + "资源库名称": "14", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "622.67", + "合价不含税": "4952.09451", + "特征段": "特征1", + "基价": "622.67", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.6434", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.8348", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0037", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1438", + "是否未计价": "0" + }, + { + "编码": "C20020101", + "名称": "普通磁漆", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.727", + "市场价不含税": "9.727", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.174", + "是否未计价": "0" + }, + { + "编码": "J13-01-061", + "名称": "机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "174.42", + "市场价不含税": "174.42", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1174", + "是否未计价": "0" + }, + { + "编码": "J13-01-062", + "名称": "手扶机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "240.23", + "市场价不含税": "240.23", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0182", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1152", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0247", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1694", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "角钢塔组立 塔全高50m以内 每米塔重300kg以内", + "编码": "YX4-45", + "单位": "t", + "计算式": "174.76", + "数量": "174.76", + "中标计算式": "174.76", + "人工费": "482.05", + "机械费": "76.33", + "材料费": "6.21", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "角钢塔组立", + "资源库名称": "14", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "564.59", + "合价不含税": "98667.7484", + "特征段": "特征1", + "基价": "564.59", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.4556", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.3943", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0028", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0785", + "是否未计价": "0" + }, + { + "编码": "C20020101", + "名称": "普通磁漆", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.727", + "市场价不含税": "9.727", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1122", + "是否未计价": "0" + }, + { + "编码": "J13-01-061", + "名称": "机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "174.42", + "市场价不含税": "174.42", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1923", + "是否未计价": "0" + }, + { + "编码": "J13-01-062", + "名称": "手扶机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "240.23", + "市场价不含税": "240.23", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0077", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0622", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0629", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1217", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "角钢塔组立 塔全高50m以内 每米塔重400kg以内", + "编码": "YX4-46", + "单位": "t", + "计算式": "34.999", + "数量": "34.999", + "中标计算式": "34.999", + "人工费": "452.29", + "机械费": "71.6", + "材料费": "5.78", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "角钢塔组立", + "资源库名称": "14", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "529.67", + "合价不含税": "18537.92033", + "特征段": "特征1", + "基价": "529.67", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.3656", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.1848", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0026", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0737", + "是否未计价": "0" + }, + { + "编码": "C20020101", + "名称": "普通磁漆", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.727", + "市场价不含税": "9.727", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1053", + "是否未计价": "0" + }, + { + "编码": "J13-01-061", + "名称": "机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "174.42", + "市场价不含税": "174.42", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1804", + "是否未计价": "0" + }, + { + "编码": "J13-01-062", + "名称": "手扶机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "240.23", + "市场价不含税": "240.23", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0073", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0583", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.059", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1133", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "角钢塔组立 塔全高50m以内 每米塔重800kg以内", + "编码": "YX4-47", + "单位": "t", + "计算式": "12.43", + "数量": "12.43", + "中标计算式": "12.43", + "人工费": "438.57", + "机械费": "69.5", + "材料费": "5.57", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "角钢塔组立", + "资源库名称": "14", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "513.64", + "合价不含税": "6384.5452", + "特征段": "特征1", + "基价": "513.64", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.3237", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.0885", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0025", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0714", + "是否未计价": "0" + }, + { + "编码": "C20020101", + "名称": "普通磁漆", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.727", + "市场价不含税": "9.727", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.102", + "是否未计价": "0" + }, + { + "编码": "J13-01-061", + "名称": "机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "174.42", + "市场价不含税": "174.42", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.175", + "是否未计价": "0" + }, + { + "编码": "J13-01-062", + "名称": "手扶机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "240.23", + "市场价不含税": "240.23", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0071", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0566", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0573", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1092", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8541", + "编码": "T01010104", + "项目名称": "塔材", + "规格型号": "角钢塔", + "单位": "t", + "数量": "248.77", + "损耗率": "0.5", + "供货方": "1", + "集中配送": "0", + "单重": "1000", + "运输类型": "钢筋、型钢(成品、半成品)用于塔材", + "资源库名称": "15", + "市场价不含税": "8487.79", + "市场价含税": "9591.2", + "单价不含税": "6018", + "单价含税": "6800", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "1691636", + "合价不含税": "1497097.86", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "1000" + } + ] + } + ] + } + ] + }, + { + "GUID": "{0E1C341C-8D14-4AF3-AB28-DDDAED95AF5E}", + "序号": "3", + "项目名称": "接地工程", + "代码": "JDGC", + "费率": "0", + "单位": "元/基", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{6A3CA4F9-E8C8-4C78-BF38-592A1F078AD1}", + "序号": "3.1", + "项目名称": "接地工程材料工地运输", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "1539.190591", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "人力运输 金具、绝缘子、零星钢材", + "编码": "YX1-17", + "单位": "t.km", + "计算式": "2.277198", + "数量": "2.277198", + "中标计算式": "2.277198", + "人工费": "123", + "机械费": "8.28", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "131.28", + "合价不含税": "298.950553", + "特征段": "特征1", + "基价": "131.28", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.492", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1657", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0263", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 装卸", + "编码": "YX1-97", + "单位": "t", + "计算式": "7.59066", + "数量": "7.59066", + "中标计算式": "7.59066", + "人工费": "12.61", + "机械费": "26.19", + "材料费": "7.22", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "46.02", + "合价不含税": "349.322173", + "特征段": "特征1", + "基价": "46.02", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1528", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0171", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.6", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0771", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1417", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 运输", + "编码": "YX1-98", + "单位": "t.km", + "计算式": "75.9066", + "数量": "75.9066", + "中标计算式": "75.9066", + "人工费": "0.51", + "机械费": "1.02", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1.53", + "合价不含税": "116.137098", + "特征段": "特征1", + "基价": "1.53", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0073", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.003", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{B3C8BF76-4C5C-41D5-AFD7-CD35005B8086}", + "序号": "3.2", + "项目名称": "接地土石方", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "40095.806048", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "接地槽挖方(或爆破)及回填 普通土", + "编码": "YX2-213", + "单位": "m?", + "计算式": "1419.52", + "数量": "1419.52", + "中标计算式": "1419.52", + "人工费": "11.03", + "机械费": "1.04", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "接地槽挖方(或爆破)及回填", + "资源库名称": "7", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "12.07", + "合价不含税": "17133.6064", + "特征段": "特征1", + "基价": "12.07", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1449", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0079", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0033", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{CBBB7473-263E-4F29-9D9A-E18B6AF6CB96}", + "序号": "3.3", + "项目名称": "接地安装", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "81989.854822", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + }, + { + "资源库名称": "装置性材料预算价2018" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "接地体加工及制作", + "编码": "YX3-203", + "单位": "t", + "计算式": "7.161", + "数量": "7.161", + "中标计算式": "7.161", + "人工费": "166.28", + "机械费": "99.7", + "材料费": "5.77", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "接地体加工及制作", + "资源库名称": "13", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "271.75", + "合价不含税": "1946.00175", + "特征段": "特征1", + "基价": "271.75", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5018", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.171", + "是否未计价": "0" + }, + { + "编码": "C12020100", + "名称": "碳钢气焊丝 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "7.065", + "市场价不含税": "7.065", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.065", + "是否未计价": "0" + }, + { + "编码": "C19110101", + "名称": "氧气", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.71", + "市场价不含税": "4.71", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.64", + "是否未计价": "0" + }, + { + "编码": "C19110201", + "名称": "乙炔气", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "10.379", + "市场价不含税": "10.379", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.21", + "是否未计价": "0" + }, + { + "编码": "J08-01-073", + "名称": "型钢剪断机 剪断宽度 500mm", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "249.57", + "市场价不含税": "249.57", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3545", + "是否未计价": "0" + }, + { + "编码": "J08-01-094", + "名称": "管子切断机 管径 Φ60", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "17.4", + "市场价不含税": "17.4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.6455", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1131", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "一般接地体安装 垂直接地体安装 土", + "编码": "YX3-204", + "单位": "根", + "计算式": "392", + "数量": "392", + "中标计算式": "392", + "人工费": "10.75", + "机械费": "0.85", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "一般接地体安装", + "资源库名称": "13", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "11.6", + "合价不含税": "4547.2", + "特征段": "特征1", + "基价": "11.6", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1304", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0145", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0027", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "一般接地体安装 水平接地体敷设", + "编码": "YX3-206", + "单位": "m", + "计算式": "4436", + "数量": "4436", + "中标计算式": "4436", + "人工费": "0.37", + "机械费": "0.03", + "材料费": "0.03", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "一般接地体安装", + "资源库名称": "13", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "0.43", + "合价不含税": "1907.48", + "特征段": "特征1", + "基价": "0.43", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0045", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0005", + "是否未计价": "0" + }, + { + "编码": "C12020100", + "名称": "碳钢气焊丝 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "7.065", + "市场价不含税": "7.065", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0003", + "是否未计价": "0" + }, + { + "编码": "C19110101", + "名称": "氧气", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.71", + "市场价不含税": "4.71", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0028", + "是否未计价": "0" + }, + { + "编码": "C19110201", + "名称": "乙炔气", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "10.379", + "市场价不含税": "10.379", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.001", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0001", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0005", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "接地电阻测量", + "编码": "YX3-214", + "单位": "基", + "计算式": "29", + "数量": "29", + "中标计算式": "29", + "人工费": "24.43", + "机械费": "12.9", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "接地测量及其他", + "资源库名称": "13", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "37.33", + "合价不含税": "1082.57", + "特征段": "特征1", + "基价": "37.33", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0223", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2042", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.041", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8546", + "项目名称": "镀锌圆钢", + "规格型号": "综合", + "单位": "t", + "数量": "7.161", + "损耗率": "6", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "钢筋(加工制作)", + "资源库名称": "14", + "市场价不含税": "6832", + "市场价含税": "0", + "单价不含税": "3959", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "0", + "合价不含税": "28350.399", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "1000" + } + ] + } + ] + }, + { + "GUID": "{CC045DB6-3A0A-4D34-8728-5B3268E37904}", + "序号": "4", + "项目名称": "架线工程", + "代码": "JXGC", + "费率": "0", + "单位": "元/km", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{595C0DC6-143C-47E6-9AC4-CD2344A5F0A5}", + "序号": "4.1", + "项目名称": "架线工程材料工地运输", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "13773.765985", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "人力运输 金具、绝缘子、零星钢材", + "编码": "YX1-17", + "单位": "t.km", + "计算式": "0.840839", + "数量": "0.840839", + "中标计算式": "0.840839", + "人工费": "123", + "机械费": "8.28", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "131.28", + "合价不含税": "110.385344", + "特征段": "特征1", + "基价": "131.28", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.492", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1657", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0263", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 线材 每件重2000kg以内 装卸", + "编码": "YX1-87", + "单位": "t", + "计算式": "13.468032", + "数量": "13.468032", + "中标计算式": "13.468032", + "人工费": "12.22", + "机械费": "65.81", + "材料费": "0.16", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "线材", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "78.19", + "合价不含税": "1053.065422", + "特征段": "特征1", + "基价": "78.19", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1482", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0165", + "是否未计价": "0" + }, + { + "编码": "C08030901", + "名称": "木楔", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1606.956", + "市场价不含税": "1606.956", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0001", + "是否未计价": "0" + }, + { + "编码": "J03-01-034", + "名称": "汽车式起重机 起重量 8t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "655.69", + "市场价不含税": "655.69", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0637", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0708", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0032", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 线材 每件重2000kg以内 运输", + "编码": "YX1-88", + "单位": "t.km", + "计算式": "134.68032", + "数量": "134.68032", + "中标计算式": "134.68032", + "人工费": "0.61", + "机械费": "1.05", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "线材", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1.66", + "合价不含税": "223.569331", + "特征段": "特征1", + "基价": "1.66", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0087", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0031", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 线材 每件重4000kg以内 装卸", + "编码": "YX1-89", + "单位": "t", + "计算式": "68.62464", + "数量": "68.62464", + "中标计算式": "68.62464", + "人工费": "13.55", + "机械费": "70.14", + "材料费": "0.16", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "线材", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "83.85", + "合价不含税": "5754.176064", + "特征段": "特征1", + "基价": "83.85", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.164", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0185", + "是否未计价": "0" + }, + { + "编码": "C08030901", + "名称": "木楔", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1606.956", + "市场价不含税": "1606.956", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0001", + "是否未计价": "0" + }, + { + "编码": "J03-01-034", + "名称": "汽车式起重机 起重量 8t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "655.69", + "市场价不含税": "655.69", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0675", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0762", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0032", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 线材 每件重4000kg以内 运输", + "编码": "YX1-90", + "单位": "t.km", + "计算式": "686.2464", + "数量": "686.2464", + "中标计算式": "686.2464", + "人工费": "0.74", + "机械费": "1.29", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "线材", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "2.03", + "合价不含税": "1393.080192", + "特征段": "特征1", + "基价": "2.03", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0105", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0038", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 装卸", + "编码": "YX1-97", + "单位": "t", + "计算式": "2.802791", + "数量": "2.802791", + "中标计算式": "2.802791", + "人工费": "12.61", + "机械费": "26.19", + "材料费": "7.22", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "46.02", + "合价不含税": "128.984442", + "特征段": "特征1", + "基价": "46.02", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1528", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0171", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.6", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0771", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1417", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 运输", + "编码": "YX1-98", + "单位": "t.km", + "计算式": "28.027909", + "数量": "28.027909", + "中标计算式": "28.027909", + "人工费": "0.51", + "机械费": "1.02", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1.53", + "合价不含税": "42.882701", + "特征段": "特征1", + "基价": "1.53", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0073", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.003", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{1BC8E615-4324-48AA-8F7A-049E965D4278}", + "序号": "4.2", + "项目名称": "导地线架设", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "2126678.833942", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + {}, + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + }, + { + "资源库名称": "通用材料库" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2512", + "项目名称": "光缆防振金具", + "规格型号": "OPGW光缆用,预绞丝式,14.2/15.5", + "单位": "个", + "数量": "64", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "3.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "54", + "市场价不含税": "54.87", + "市场价含税": "62", + "单价不含税": "54.87", + "单价含税": "62", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "3968", + "合价不含税": "3511.68" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2513", + "项目名称": "光缆悬垂串", + "规格型号": "120kN,OPGW用双线夹,非绝缘,14.2/15.5", + "单位": "个", + "数量": "40", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "15.2", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "54", + "市场价不含税": "571.05", + "市场价含税": "645.29", + "单价不含税": "571.05", + "单价含税": "645.29", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "25811.6", + "合价不含税": "22842" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2514", + "项目名称": "光缆耐张串", + "规格型号": ",120kN,OPGW用单线夹,非绝缘,14.2/15.5", + "单位": "个", + "数量": "44", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "16.2", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "54", + "市场价不含税": "287.05", + "市场价含税": "324.37", + "单价不含税": "287.05", + "单价含税": "324.37", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "14272.28", + "合价不含税": "12630.2" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2515", + "项目名称": "光缆耐张串,", + "规格型号": "70kN,OPGW用单线夹,双联绝缘,14.2/15.5", + "单位": "个", + "数量": "8", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "30.74", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "54", + "市场价不含税": "544.07", + "市场价含税": "614.8", + "单价不含税": "544.07", + "单价含税": "614.8", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "4918.4", + "合价不含税": "4352.56" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2516", + "项目名称": "光缆防振金具", + "规格型号": ",OPGW光缆用,预绞丝式,14.2/15.5", + "单位": "个", + "数量": "132", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "2.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "54", + "市场价不含税": "54.87", + "市场价含税": "62", + "单价不含税": "54.87", + "单价含税": "62", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "8184", + "合价不含税": "7242.84" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2517", + "项目名称": "光缆卡具,", + "规格型号": "OPGW光缆用,塔用", + "单位": "个", + "数量": "160", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "2.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "54", + "市场价不含税": "40.71", + "市场价含税": "46", + "单价不含税": "40.71", + "单价含税": "46", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "7360", + "合价不含税": "6513.6" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2518", + "项目名称": "光缆卡具,", + "规格型号": "OPGW光缆用,普通杆用", + "单位": "个", + "数量": "8", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "1.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "54", + "市场价不含税": "48.85", + "市场价含税": "55.2", + "单价不含税": "48.85", + "单价含税": "55.2", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "441.6", + "合价不含税": "390.8" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2519", + "项目名称": "光缆余缆架1", + "单位": "个", + "数量": "8", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "1.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "54", + "市场价不含税": "107.1", + "市场价含税": "121", + "单价不含税": "107.1", + "单价含税": "121", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "968", + "合价不含税": "856.8" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2520", + "项目名称": "光缆余缆架", + "单位": "个", + "数量": "8", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "1.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "54", + "市场价不含税": "117.79", + "市场价含税": "133.1", + "单价不含税": "117.79", + "单价含税": "133.1", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "1064.8", + "合价不含税": "942.32" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2521", + "项目名称": "光缆接头盒,OPGW光缆用,3", + "单位": "个", + "数量": "16", + "损耗率": "1.5", + "供货方": "2", + "集中配送": "0", + "单重": "1.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "54", + "市场价不含税": "427.43", + "市场价含税": "483", + "单价不含税": "427.43", + "单价含税": "483", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "7728", + "合价不含税": "6838.88" + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "牵、张场场地建设 场地平整 二分裂导线", + "编码": "YX5-19", + "单位": "处", + "计算式": "1", + "数量": "1", + "中标计算式": "1", + "人工费": "973.78", + "机械费": "60.63", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "牵、张场场地建设", + "资源库名称": "55", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1034.41", + "合价不含税": "1034.41", + "特征段": "特征1", + "基价": "1034.41", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "8.2524", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.5367", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1785", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "牵、张场场地建设 钢板铺设 二分裂导线", + "编码": "YX5-24", + "单位": "处", + "计算式": "1", + "数量": "1", + "中标计算式": "1", + "人工费": "544.01", + "机械费": "876.14", + "材料费": "2545.45", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "牵、张场场地建设", + "资源库名称": "55", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "3965.6", + "合价不含税": "3965.6", + "特征段": "特征1", + "基价": "3965.6", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.6103", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.9758", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.188", + "是否未计价": "0" + }, + { + "编码": "C01030204", + "名称": "中厚钢板 12~20", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "3.836", + "市场价不含税": "3.836", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "338.983", + "是否未计价": "0" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.72", + "是否未计价": "0" + }, + { + "编码": "J03-01-033", + "名称": "汽车式起重机 起重量 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "552.67", + "市场价不含税": "552.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8552", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "49.9108", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "导引绳展放 飞行器展放", + "编码": "YX5-29", + "单位": "km", + "计算式": "8.23", + "数量": "8.23", + "中标计算式": "8.23", + "人工费": "1574.99", + "机械费": "324.4", + "材料费": "569.24", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "导引绳展放", + "资源库名称": "55", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "2468.63", + "合价不含税": "20316.8249", + "特征段": "特征1", + "基价": "2468.63", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.6117", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "13.0551", + "是否未计价": "0" + }, + { + "编码": "C16110704", + "名称": "迪尼玛绳 Φ2", + "单位": "m", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "0.872", + "市场价不含税": "0.872", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "640", + "是否未计价": "0" + }, + { + "编码": "J03-01-034", + "名称": "汽车式起重机 起重量 8t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "655.69", + "市场价不含税": "655.69", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0753", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7066", + "是否未计价": "0" + }, + { + "编码": "J13-01-082", + "名称": "输电专用载重汽车 8t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "476.01", + "市场价不含税": "476.01", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0736", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "11.1616", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "张力放、紧线 OPGW 100mm?以上", + "编码": "YX5-31", + "单位": "km", + "计算式": "16.46", + "数量": "16.46", + "中标计算式": "16.46", + "人工费": "823.68", + "机械费": "2326.27", + "材料费": "34.41", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "张力放、紧线", + "资源库名称": "55", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "3184.36", + "合价不含税": "52414.5656", + "特征段": "特征1", + "基价": "3184.36", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.5873", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "6.3622", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.282", + "是否未计价": "0" + }, + { + "编码": "C16010605", + "名称": "镀锌钢绞线 GJ-35", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.759", + "市场价不含税": "5.759", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.122", + "是否未计价": "0" + }, + { + "编码": "C18020101", + "名称": "普通橡胶管 DN50", + "单位": "m", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "11.666", + "市场价不含税": "11.666", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.343", + "是否未计价": "0" + }, + { + "编码": "C22040101", + "名称": "砂布", + "单位": "张", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "0.66", + "市场价不含税": "0.66", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.127", + "是否未计价": "0" + }, + { + "编码": "C22040401", + "名称": "白布", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "3.358", + "市场价不含税": "3.358", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.016", + "是否未计价": "0" + }, + { + "编码": "C22040501", + "名称": "棉纱头", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.67", + "市场价不含税": "5.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.013", + "是否未计价": "0" + }, + { + "编码": "C22040611", + "名称": "白棕绳 Φ8", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "10.626", + "市场价不含税": "10.626", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.273", + "是否未计价": "0" + }, + { + "编码": "C22040621", + "名称": "麻绳", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.246", + "市场价不含税": "9.246", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.422", + "是否未计价": "0" + }, + { + "编码": "C22040722", + "名称": "麻袋片", + "单位": "m", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.919", + "市场价不含税": "1.919", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.903", + "是否未计价": "0" + }, + { + "编码": "J13-01-060", + "名称": "机动绞磨 3t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "162.99", + "市场价不含税": "162.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.9345", + "是否未计价": "0" + }, + { + "编码": "J03-01-034", + "名称": "汽车式起重机 起重量 8t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "655.69", + "市场价不含税": "655.69", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.1471", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4159", + "是否未计价": "0" + }, + { + "编码": "J13-01-082", + "名称": "输电专用载重汽车 8t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "476.01", + "市场价不含税": "476.01", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3362", + "是否未计价": "0" + }, + { + "编码": "J18-01-001", + "名称": "牵引机 一牵一", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "1272.84", + "市场价不含税": "1272.84", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5072", + "是否未计价": "0" + }, + { + "编码": "J18-01-005", + "名称": "张力机 一张一", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "936.39", + "市场价不含税": "936.39", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5072", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.6748", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "张力放、紧线 交流线路 导线 2×300mm?以内", + "编码": "YX5-44", + "单位": "km", + "计算式": "8.23", + "数量": "8.23", + "中标计算式": "8.23", + "人工费": "5416.96", + "机械费": "7912.09", + "材料费": "334.29", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "张力放、紧线", + "资源库名称": "55", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "13663.34", + "合价不含税": "112449.2882", + "特征段": "特征1", + "基价": "13663.34", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "10.4575", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "41.8298", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "10.917", + "是否未计价": "0" + }, + { + "编码": "C16010609", + "名称": "镀锌钢绞线 GJ-100", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.759", + "市场价不含税": "5.759", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "18.4", + "是否未计价": "0" + }, + { + "编码": "C16037106", + "名称": "导线补修管JX-300", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "22", + "市场价不含税": "22", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.2", + "是否未计价": "0" + }, + { + "编码": "C18010102", + "名称": "橡胶板 10mm以下", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.638", + "市场价不含税": "5.638", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.927", + "是否未计价": "0" + }, + { + "编码": "C18020101", + "名称": "普通橡胶管 DN50", + "单位": "m", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "11.666", + "市场价不含税": "11.666", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.359", + "是否未计价": "0" + }, + { + "编码": "C19031101", + "名称": "清洗剂", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "2.41", + "市场价不含税": "2.41", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.92", + "是否未计价": "0" + }, + { + "编码": "C19020405", + "名称": "导电脂", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "11.597", + "市场价不含税": "11.597", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7", + "是否未计价": "0" + }, + { + "编码": "C20010101", + "名称": "防锈漆", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.353", + "市场价不含税": "9.353", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.572", + "是否未计价": "0" + }, + { + "编码": "C22030501", + "名称": "钢锯条 各种规格", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.308", + "市场价不含税": "1.308", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "17", + "是否未计价": "0" + }, + { + "编码": "C22040101", + "名称": "砂布", + "单位": "张", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "0.66", + "市场价不含税": "0.66", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "9.99", + "是否未计价": "0" + }, + { + "编码": "C22040401", + "名称": "白布", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "3.358", + "市场价不含税": "3.358", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.87", + "是否未计价": "0" + }, + { + "编码": "C22040621", + "名称": "麻绳", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.246", + "市场价不含税": "9.246", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.792", + "是否未计价": "0" + }, + { + "编码": "C22040722", + "名称": "麻袋片", + "单位": "m", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.919", + "市场价不含税": "1.919", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.6", + "是否未计价": "0" + }, + { + "编码": "C22040731", + "名称": "苇席", + "单位": "张", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.757", + "市场价不含税": "5.757", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.615", + "是否未计价": "0" + }, + { + "编码": "J13-01-060", + "名称": "机动绞磨 3t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "162.99", + "市场价不含税": "162.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.5067", + "是否未计价": "0" + }, + { + "编码": "J13-01-065", + "名称": "机动液压压接机 200t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "79.03", + "市场价不含税": "79.03", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.9461", + "是否未计价": "0" + }, + { + "编码": "J03-01-034", + "名称": "汽车式起重机 起重量 8t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "655.69", + "市场价不含税": "655.69", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0626", + "是否未计价": "0" + }, + { + "编码": "J03-01-037", + "名称": "汽车式起重机 起重量 20t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "993.04", + "市场价不含税": "993.04", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.8058", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5287", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.0143", + "是否未计价": "0" + }, + { + "编码": "J13-01-082", + "名称": "输电专用载重汽车 8t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "476.01", + "市场价不含税": "476.01", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3477", + "是否未计价": "0" + }, + { + "编码": "J13-01-084", + "名称": "输电专用载重汽车 15t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "726.01", + "市场价不含税": "726.01", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3276", + "是否未计价": "0" + }, + { + "编码": "J18-01-001", + "名称": "牵引机 一牵一", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "1272.84", + "市场价不含税": "1272.84", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1626", + "是否未计价": "0" + }, + { + "编码": "J18-01-002", + "名称": "牵引机 一牵二", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "2020.02", + "市场价不含税": "2020.02", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8345", + "是否未计价": "0" + }, + { + "编码": "J18-01-005", + "名称": "张力机 一张一", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "936.39", + "市场价不含税": "936.39", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1626", + "是否未计价": "0" + }, + { + "编码": "J18-01-006", + "名称": "张力机 一张二", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "1756.32", + "市场价不含税": "1756.32", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8345", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "6.5547", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "OPGW单盘测量 芯数 36以内", + "编码": "YX5-207", + "单位": "盘", + "计算式": "6", + "数量": "6", + "中标计算式": "6", + "人工费": "168.18", + "机械费": "682.73", + "材料费": "261.02", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "单盘测量", + "资源库名称": "55", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1111.93", + "合价不含税": "6671.58", + "特征段": "特征1", + "基价": "1111.93", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.5016", + "是否未计价": "0" + }, + { + "编码": "C16050751", + "名称": "光纤测量用匹配油", + "单位": "瓶", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "304.892", + "市场价不含税": "304.892", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.57", + "是否未计价": "0" + }, + { + "编码": "C16050761", + "名称": "光纤用除油剂", + "单位": "瓶", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "45.357", + "市场价不含税": "45.357", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.247", + "是否未计价": "0" + }, + { + "编码": "C16050771", + "名称": "光纤用切管刀片", + "单位": "片", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "62.801", + "市场价不含税": "62.801", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.57", + "是否未计价": "0" + }, + { + "编码": "C18030801", + "名称": "自黏性橡胶带 25mm×20m", + "单位": "卷", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.897", + "市场价不含税": "6.897", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.425", + "是否未计价": "0" + }, + { + "编码": "C19030201", + "名称": "乙醇", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "3.62", + "市场价不含税": "3.62", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.285", + "是否未计价": "0" + }, + { + "编码": "C22040412", + "名称": "无纺布", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.218", + "市场价不含税": "5.218", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.147", + "是否未计价": "0" + }, + { + "编码": "C22041601", + "名称": "压缩空气标准瓶装", + "单位": "瓶", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "19.63", + "市场价不含税": "19.63", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.665", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.6928", + "是否未计价": "0" + }, + { + "编码": "J14-05-064", + "名称": "光时域反射仪", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "295.76", + "市场价不含税": "295.76", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.5713", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.1181", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "OPGW接续 芯数 36以内", + "编码": "YX5-216", + "单位": "头", + "计算式": "4", + "数量": "4", + "中标计算式": "4", + "人工费": "840.92", + "机械费": "1584.84", + "材料费": "342.3", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "接续", + "资源库名称": "55", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "2768.06", + "合价不含税": "11072.24", + "特征段": "特征1", + "基价": "2768.06", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "7.5082", + "是否未计价": "0" + }, + { + "编码": "C16050601", + "名称": "热缩管", + "单位": "m", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.744", + "市场价不含税": "1.744", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "39.9", + "是否未计价": "0" + }, + { + "编码": "C16050761", + "名称": "光纤用除油剂", + "单位": "瓶", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "45.357", + "市场价不含税": "45.357", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.33", + "是否未计价": "0" + }, + { + "编码": "C16050771", + "名称": "光纤用切管刀片", + "单位": "片", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "62.801", + "市场价不含税": "62.801", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.375", + "是否未计价": "0" + }, + { + "编码": "C18030801", + "名称": "自黏性橡胶带 25mm×20m", + "单位": "卷", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "6.897", + "市场价不含税": "6.897", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.85", + "是否未计价": "0" + }, + { + "编码": "C18080101", + "名称": "塑料标识牌", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "0.457", + "市场价不含税": "0.457", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.95", + "是否未计价": "0" + }, + { + "编码": "C19030201", + "名称": "乙醇", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "3.62", + "市场价不含税": "3.62", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.532", + "是否未计价": "0" + }, + { + "编码": "C22040412", + "名称": "无纺布", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.218", + "市场价不含税": "5.218", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.04", + "是否未计价": "0" + }, + { + "编码": "C22041601", + "名称": "压缩空气标准瓶装", + "单位": "瓶", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "19.63", + "市场价不含税": "19.63", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.95", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.6628", + "是否未计价": "0" + }, + { + "编码": "J14-05-061", + "名称": "光纤熔接仪", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "233.38", + "市场价不含税": "233.38", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.824", + "是否未计价": "0" + }, + { + "编码": "J14-05-062", + "名称": "光纤电话", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "33.06", + "市场价不含税": "33.06", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.6597", + "是否未计价": "0" + }, + { + "编码": "J14-05-064", + "名称": "光时域反射仪", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "295.76", + "市场价不含税": "295.76", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.9646", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "6.7118", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "OPGW全程测量 芯数 36以内", + "编码": "YX5-225", + "单位": "段", + "计算式": "2", + "数量": "2", + "中标计算式": "2", + "人工费": "1121.22", + "机械费": "1156.22", + "材料费": "15.14", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "全程测量", + "资源库名称": "55", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "2292.58", + "合价不含税": "4585.16", + "特征段": "特征1", + "基价": "2292.58", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "10.0109", + "是否未计价": "0" + }, + { + "编码": "C19030201", + "名称": "乙醇", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "3.62", + "市场价不含税": "3.62", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.266", + "是否未计价": "0" + }, + { + "编码": "C22040412", + "名称": "无纺布", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.218", + "市场价不含税": "5.218", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.66", + "是否未计价": "0" + }, + { + "编码": "J14-05-057", + "名称": "光频谱分析仪", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "209.72", + "市场价不含税": "209.72", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.57", + "是否未计价": "0" + }, + { + "编码": "J14-05-059", + "名称": "光纤色散测试仪", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "1522.97", + "市场价不含税": "1522.97", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.57", + "是否未计价": "0" + }, + { + "编码": "J14-05-064", + "名称": "光时域反射仪", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "295.76", + "市场价不含税": "295.76", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.57", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2969", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8556", + "项目名称": "钢芯铝绞线", + "规格型号": "JL/G1A-300/40", + "单位": "t", + "数量": "59.2", + "损耗率": "0.8", + "供货方": "1", + "集中配送": "0", + "单重": "1000", + "运输类型": "裸软导线(含良导体地线)", + "资源库名称": "56", + "市场价不含税": "19588", + "市场价含税": "22134", + "单价不含税": "13274", + "单价含税": "15000", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "888000", + "合价不含税": "785820.8", + "线重": "1.131", + "制造长度": "2000", + "截面积": "300", + "每件重": "4000kg以内" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8557", + "编码": "L05010203", + "项目名称": "OPGW光缆", + "规格型号": "OPGW-36B1-125", + "单位": "km", + "数量": "17.32", + "损耗率": "0", + "供货方": "1", + "集中配送": "0", + "单重": "648", + "运输类型": "光缆(有线盘)", + "资源库名称": "56", + "市场价不含税": "12285.66", + "市场价含税": "13882.8", + "单价不含税": "16814", + "单价含税": "19000", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "329080", + "合价不含税": "291218.48", + "线重": "0.648", + "制造长度": "2000", + "截面积": "120", + "每件重": "2000kg以内" + } + ] + }, + { + "GUID": "{858247E5-0438-4C3E-A401-4243F191C686}", + "序号": "4.3", + "项目名称": "导地线跨越架设", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "803591.78659", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "跨越一般公路 220kV", + "编码": "YX5-101", + "单位": "处", + "计算式": "13", + "数量": "13", + "中标计算式": "13", + "人工费": "3508.95", + "机械费": "490.47", + "材料费": "921.21", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "跨越架设", + "资源库名称": "22", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "4920.63", + "合价不含税": "63968.19", + "特征段": "特征1", + "基价": "4920.63", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "10.5906", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "24.7108", + "是否未计价": "0" + }, + { + "编码": "C01040102", + "名称": "钢丝绳 Φ15以下", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.97", + "市场价不含税": "5.97", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7719", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "13.6974", + "是否未计价": "0" + }, + { + "编码": "C22010101", + "名称": "钢管脚手架 包括扣件", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.215", + "市场价不含税": "4.215", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "133.9144", + "是否未计价": "0" + }, + { + "编码": "C22010111", + "名称": "木脚手杆杉原木 Φ80×6000", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "31.034", + "市场价不含税": "31.034", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.8834", + "是否未计价": "0" + }, + { + "编码": "C22010121", + "名称": "毛竹", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "17.241", + "市场价不含税": "17.241", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "8.5481", + "是否未计价": "0" + }, + { + "编码": "C22010301", + "名称": "安全网", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4", + "市场价不含税": "4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "7.724", + "是否未计价": "0" + }, + { + "编码": "C22040801", + "名称": "木桩", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "2.611", + "市场价不含税": "2.611", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.1796", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.4441", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "18.0629", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "跨越一般公路 220kV", + "编码": "YX5-101", + "单位": "处", + "计算式": "2", + "数量": "2", + "中标计算式": "2", + "人工费": "3508.95", + "机械费": "490.47", + "材料费": "921.21", + "定额系数": "1", + "人工系数": "1.2", + "材料系数": "1.2", + "机械系数": "1.2", + "定额范围": "1", + "定额章节名称": "跨越架设", + "资源库名称": "22", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "5904.756", + "合价不含税": "11809.512", + "特征段": "特征1", + "基价": "4920.63", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "10.5906", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "24.7108", + "是否未计价": "0" + }, + { + "编码": "C01040102", + "名称": "钢丝绳 Φ15以下", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.97", + "市场价不含税": "5.97", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7719", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "13.6974", + "是否未计价": "0" + }, + { + "编码": "C22010101", + "名称": "钢管脚手架 包括扣件", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.215", + "市场价不含税": "4.215", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "133.9144", + "是否未计价": "0" + }, + { + "编码": "C22010111", + "名称": "木脚手杆杉原木 Φ80×6000", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "31.034", + "市场价不含税": "31.034", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.8834", + "是否未计价": "0" + }, + { + "编码": "C22010121", + "名称": "毛竹", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "17.241", + "市场价不含税": "17.241", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "8.5481", + "是否未计价": "0" + }, + { + "编码": "C22010301", + "名称": "安全网", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4", + "市场价不含税": "4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "7.724", + "是否未计价": "0" + }, + { + "编码": "C22040801", + "名称": "木桩", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "2.611", + "市场价不含税": "2.611", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.1796", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.4441", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "18.0629", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "220kV 跨越电力线 10kV", + "编码": "YX5-129", + "单位": "处", + "计算式": "10", + "数量": "10", + "中标计算式": "10", + "人工费": "2537.37", + "机械费": "280.88", + "材料费": "191.12", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "跨越架设", + "资源库名称": "22", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "3009.37", + "合价不含税": "30093.7", + "特征段": "特征1", + "基价": "3009.37", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "7.6582", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "17.8687", + "是否未计价": "0" + }, + { + "编码": "C01040102", + "名称": "钢丝绳 Φ15以下", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.97", + "市场价不含税": "5.97", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8305", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "6.5226", + "是否未计价": "0" + }, + { + "编码": "C22010101", + "名称": "钢管脚手架 包括扣件", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.215", + "市场价不含税": "4.215", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.1741", + "是否未计价": "0" + }, + { + "编码": "C22010111", + "名称": "木脚手杆杉原木 Φ80×6000", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "31.034", + "市场价不含税": "31.034", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.7216", + "是否未计价": "0" + }, + { + "编码": "C22010121", + "名称": "毛竹", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "17.241", + "市场价不含税": "17.241", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.6839", + "是否未计价": "0" + }, + { + "编码": "C22010301", + "名称": "安全网", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4", + "市场价不含税": "4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.1107", + "是否未计价": "0" + }, + { + "编码": "C22040801", + "名称": "木桩", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "2.611", + "市场价不含税": "2.611", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8989", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.827", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.7475", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "跨越低压、弱电线 220kV(土路)", + "编码": "YX5-171", + "单位": "处", + "计算式": "10", + "数量": "10", + "中标计算式": "10", + "人工费": "1610.19", + "机械费": "263.83", + "材料费": "266.18", + "定额系数": "1", + "人工系数": "0.8", + "材料系数": "0.8", + "机械系数": "0.8", + "定额范围": "1", + "定额章节名称": "跨越架设", + "资源库名称": "22", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1712.16", + "合价不含税": "17121.6", + "特征段": "特征1", + "基价": "2140.2", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.8599", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "11.3393", + "是否未计价": "0" + }, + { + "编码": "C01040102", + "名称": "钢丝绳 Φ15以下", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.97", + "市场价不含税": "5.97", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5289", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "9.7024", + "是否未计价": "0" + }, + { + "编码": "C22010111", + "名称": "木脚手杆杉原木 Φ80×6000", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "31.034", + "市场价不含税": "31.034", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.2935", + "是否未计价": "0" + }, + { + "编码": "C22010121", + "名称": "毛竹", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "17.241", + "市场价不含税": "17.241", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "6.3502", + "是否未计价": "0" + }, + { + "编码": "C22010301", + "名称": "安全网", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4", + "市场价不含税": "4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "7.9379", + "是否未计价": "0" + }, + { + "编码": "C22040801", + "名称": "木桩", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "2.611", + "市场价不含税": "2.611", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.9334", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7768", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.2192", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "跨越低压、弱电线 220kV", + "编码": "YX5-171", + "单位": "处", + "计算式": "25", + "数量": "25", + "中标计算式": "25", + "人工费": "1610.19", + "机械费": "263.83", + "材料费": "266.18", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "跨越架设", + "资源库名称": "22", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "2140.2", + "合价不含税": "53505", + "特征段": "特征1", + "基价": "2140.2", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.8599", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "11.3393", + "是否未计价": "0" + }, + { + "编码": "C01040102", + "名称": "钢丝绳 Φ15以下", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.97", + "市场价不含税": "5.97", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5289", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "9.7024", + "是否未计价": "0" + }, + { + "编码": "C22010111", + "名称": "木脚手杆杉原木 Φ80×6000", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "31.034", + "市场价不含税": "31.034", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.2935", + "是否未计价": "0" + }, + { + "编码": "C22010121", + "名称": "毛竹", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "17.241", + "市场价不含税": "17.241", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "6.3502", + "是否未计价": "0" + }, + { + "编码": "C22010301", + "名称": "安全网", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4", + "市场价不含税": "4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "7.9379", + "是否未计价": "0" + }, + { + "编码": "C22040801", + "名称": "木桩", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "2.611", + "市场价不含税": "2.611", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.9334", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7768", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.2192", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "张力架线 跨越河流 河宽50m以内", + "编码": "YX5-181", + "单位": "处", + "计算式": "14", + "数量": "14", + "中标计算式": "14", + "人工费": "1172.2", + "机械费": "621.53", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "跨越架设", + "资源库名称": "22", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1793.73", + "合价不含税": "25112.22", + "特征段": "特征1", + "基价": "1793.73", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.538", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "8.2548", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2318", + "是否未计价": "0" + }, + { + "编码": "J15-01-051", + "名称": "机动船舶 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "138.01", + "市场价不含税": "138.01", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.975", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "带电跨越电力线 被跨线电压等级 10kV", + "编码": "YX5-185", + "单位": "处", + "计算式": "10", + "数量": "10", + "中标计算式": "10", + "人工费": "853.1", + "机械费": "52.29", + "材料费": "1744.7", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "带电跨越电力线", + "资源库名称": "22", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "2650.09", + "合价不含税": "26500.9", + "特征段": "特征1", + "基价": "2650.09", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.1295", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "6.286", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.387", + "是否未计价": "0" + }, + { + "编码": "C16120101", + "名称": "蚕丝绝缘绳", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "162.303", + "市场价不含税": "162.303", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "10.5", + "是否未计价": "0" + }, + { + "编码": "C22010111", + "名称": "木脚手杆杉原木 Φ80×6000", + "单位": "根", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "31.034", + "市场价不含税": "31.034", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.148", + "是否未计价": "0" + }, + { + "编码": "J13-01-060", + "名称": "机动绞磨 3t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "162.99", + "市场价不含税": "162.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0687", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.121", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "34.2098", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "特殊跨越 无跨越架索道封网式 单回路", + "编码": "YX5-197", + "单位": "处", + "计算式": "3", + "数量": "3", + "中标计算式": "3", + "人工费": "16346.29", + "机械费": "2505.19", + "材料费": "6585.25", + "定额系数": "1", + "人工系数": "2.2", + "材料系数": "2.2", + "机械系数": "2.2", + "定额范围": "1", + "定额章节名称": "无跨越架索道封网式", + "资源库名称": "22", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "55960.806", + "合价不含税": "167882.418", + "特征段": "特征1", + "基价": "25436.73", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "49.3352", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "115.1145", + "是否未计价": "0" + }, + { + "编码": "C01020300", + "名称": "角钢 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "3.672", + "市场价不含税": "3.672", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "87.9155", + "是否未计价": "0" + }, + { + "编码": "C01040102", + "名称": "钢丝绳 Φ15以下", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.97", + "市场价不含税": "5.97", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "125.4774", + "是否未计价": "0" + }, + { + "编码": "C22010301", + "名称": "安全网", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4", + "市场价不含税": "4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "321.552", + "是否未计价": "0" + }, + { + "编码": "C22040614", + "名称": "白棕绳 Φ16", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "8.073", + "市场价不含税": "8.073", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "507.6167", + "是否未计价": "0" + }, + { + "编码": "J13-01-061", + "名称": "机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "174.42", + "市场价不含税": "174.42", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.4424", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "5.6082", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "129.1225", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{1DB6193D-4C6A-4FBF-AF18-DACFA411102D}", + "序号": "4.4", + "项目名称": "其他架线工程", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + } + ] + }, + { + "GUID": "{82B6C2D0-E04A-47AB-8F2F-379FFE64BC9A}", + "序号": "5", + "项目名称": "附件安装工程", + "代码": "FJAZ", + "费率": "0", + "单位": "元/基", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{5D26CB85-AA9A-40AA-A08E-3578209B0CA4}", + "序号": "5.1", + "项目名称": "附件安装工程材料工地运输", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "7533.888747", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "人力运输 金具、绝缘子、零星钢材", + "编码": "YX1-17", + "单位": "t.km", + "计算式": "(8.049817)+(0.128152)+(2.140671)+(0.137429)+(0.689685)", + "数量": "11.145754", + "中标计算式": "(8.049817)+(0.128152)+(2.140671)+(0.137429)+(0.689685)", + "人工费": "123", + "机械费": "8.28", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "131.28", + "合价不含税": "1463.214585", + "特征段": "特征1", + "基价": "131.28", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.492", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1657", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0263", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 装卸", + "编码": "YX1-97", + "单位": "t", + "计算式": "(26.832724)+(0.427174)+(7.135567)+(0.458096)+(2.298951)", + "数量": "37.152512", + "中标计算式": "(26.832724)+(0.427174)+(7.135567)+(0.458096)+(2.298951)", + "人工费": "12.61", + "机械费": "26.19", + "材料费": "7.22", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "46.02", + "合价不含税": "1709.758602", + "特征段": "特征1", + "基价": "46.02", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1528", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0171", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.6", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0771", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1417", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 运输", + "编码": "YX1-98", + "单位": "t.km", + "计算式": "(268.327239)+(4.27174)+(71.355654)+(4.580959)+(22.989506)", + "数量": "371.525098", + "中标计算式": "(268.327239)+(4.27174)+(71.355654)+(4.580959)+(22.989506)", + "人工费": "0.51", + "机械费": "1.02", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "10", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1.53", + "合价不含税": "568.4334", + "特征段": "特征1", + "基价": "1.53", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0073", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.003", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{958D2D6A-555C-4F25-B9B0-90098F585480}", + "序号": "5.2", + "项目名称": "绝缘子串及金具安装", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{3D84FDE3-5F3E-48BF-A134-2F1F41B09983}", + "序号": "5.2.1", + "项目名称": "耐张绝缘子串及金具安装", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "664430.85366", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + {}, + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + }, + { + "资源库名称": "装置性材料预算价2018" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2522", + "项目名称": "双联耐张", + "规格型号": "2NZ21Y-4040-12PZ", + "单位": "套", + "数量": "3", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "59.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "19", + "市场价不含税": "939.63", + "市场价含税": "1061.78", + "单价不含税": "939.63", + "单价含税": "1061.78", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "3185.34", + "合价不含税": "2818.89", + "线重": "0", + "制造长度": "0", + "每件重": "63.665" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2523", + "项目名称": "双联耐张", + "规格型号": "2NZ21Y-4040-12P(H)R", + "单位": "套", + "数量": "3", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "59.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "19", + "市场价不含税": "939.63", + "市场价含税": "1061.78", + "单价不含税": "939.63", + "单价含税": "1061.78", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "3185.34", + "合价不含税": "2818.89", + "线重": "0", + "制造长度": "0", + "每件重": "63.665" + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "耐张转角杆塔导线挂线及绝缘子串安装 220kV 双分裂", + "编码": "YX6-5", + "单位": "组", + "计算式": "72", + "数量": "72", + "中标计算式": "72", + "人工费": "1523.73", + "机械费": "331.33", + "材料费": "27.71", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "耐张转角杆塔导线挂线及绝缘子串安装", + "资源库名称": "20", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1882.77", + "合价不含税": "135559.44", + "特征段": "特征1", + "基价": "1882.77", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.1623", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "12.2533", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.672", + "是否未计价": "0" + }, + { + "编码": "C19020405", + "名称": "导电脂", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "11.597", + "市场价不含税": "11.597", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5184", + "是否未计价": "0" + }, + { + "编码": "C22040501", + "名称": "棉纱头", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.67", + "市场价不含税": "5.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.864", + "是否未计价": "0" + }, + { + "编码": "J13-01-060", + "名称": "机动绞磨 3t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "162.99", + "市场价不含税": "162.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.9913", + "是否未计价": "0" + }, + { + "编码": "J13-01-065", + "名称": "机动液压压接机 200t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "79.03", + "市场价不含税": "79.03", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.58", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3938", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5433", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "防振锤 双分裂", + "编码": "YX6-102", + "单位": "个", + "计算式": "378", + "数量": "378", + "中标计算式": "378", + "人工费": "4.53", + "机械费": "0.22", + "材料费": "0.73", + "定额系数": "1", + "人工系数": "1.2", + "材料系数": "1.2", + "机械系数": "1.2", + "定额范围": "1", + "定额章节名称": "防振锤、间隔棒安装", + "资源库名称": "20", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "6.576", + "合价不含税": "2485.728", + "特征段": "特征1", + "基价": "5.48", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0066", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0363", + "是否未计价": "0" + }, + { + "编码": "C16100411", + "名称": "铝包带 1mm×10mm", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "20", + "市场价不含税": "20", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0203", + "是否未计价": "0" + }, + { + "编码": "C19020701", + "名称": "铅油", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "7.763", + "市场价不含税": "7.763", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0405", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0007", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0144", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "导线间隔棒 双分裂", + "编码": "YX6-106", + "单位": "个", + "计算式": "111", + "数量": "111", + "中标计算式": "111", + "人工费": "7.38", + "机械费": "0.47", + "材料费": "1.16", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "防振锤、间隔棒安装", + "资源库名称": "20", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "9.01", + "合价不含税": "1000.11", + "特征段": "特征1", + "基价": "9.01", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0105", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0593", + "是否未计价": "0" + }, + { + "编码": "C16100411", + "名称": "铝包带 1mm×10mm", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "20", + "市场价不含税": "20", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0567", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0015", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0227", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "软跳线制作及安装 220kV 双分裂", + "编码": "YX6-156", + "单位": "单相", + "计算式": "32", + "数量": "32", + "中标计算式": "32", + "人工费": "824.33", + "机械费": "346.81", + "材料费": "11.24", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "跳线制作及安装", + "资源库名称": "20", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1182.38", + "合价不含税": "37836.16", + "特征段": "特征1", + "基价": "1182.38", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.1697", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "6.629", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4485", + "是否未计价": "0" + }, + { + "编码": "C19031101", + "名称": "清洗剂", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "2.41", + "市场价不含税": "2.41", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4672", + "是否未计价": "0" + }, + { + "编码": "C19020405", + "名称": "导电脂", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "11.597", + "市场价不含税": "11.597", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2995", + "是否未计价": "0" + }, + { + "编码": "C22040401", + "名称": "白布", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "3.358", + "市场价不含税": "3.358", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1498", + "是否未计价": "0" + }, + { + "编码": "C22040501", + "名称": "棉纱头", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.67", + "市场价不含税": "5.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1872", + "是否未计价": "0" + }, + { + "编码": "C22040722", + "名称": "麻袋片", + "单位": "m", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.919", + "市场价不含税": "1.919", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.496", + "是否未计价": "0" + }, + { + "编码": "J13-01-060", + "名称": "机动绞磨 3t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "162.99", + "市场价不含税": "162.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.6551", + "是否未计价": "0" + }, + { + "编码": "J13-01-065", + "名称": "机动液压压接机 200t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "79.03", + "市场价不含税": "79.03", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3113", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.6343", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2204", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8583", + "项目名称": "线路 间隔棒", + "规格型号": "FJG-220/24", + "单位": "件", + "数量": "99", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "3.8", + "运输类型": "间隔棒", + "资源库名称": "21", + "市场价不含税": "29.23", + "市场价含税": "33.03", + "单价不含税": "29.23", + "单价含税": "33.03", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "3269.97", + "合价不含税": "2893.77", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "4.066" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8584", + "项目名称": "地线耐张串", + "规格型号": "BN4Y-BG-21Z", + "单位": "套", + "数量": "2", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "16.2", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "19", + "市场价不含税": "434.93", + "市场价含税": "491.47", + "单价不含税": "434.93", + "单价含税": "491.47", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "982.94", + "合价不含税": "869.86", + "线重": "0", + "制造长度": "0", + "每件重": "17.334" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8585", + "项目名称": "导线防振锤", + "规格型号": "FDNJ-4/5", + "单位": "件", + "数量": "378", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "5.6", + "运输类型": "防振锤", + "资源库名称": "21", + "市场价不含税": "102", + "市场价含税": "115.26", + "单价不含税": "102", + "单价含税": "115.26", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "43568.28", + "合价不含税": "38556", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "5.992" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8586", + "项目名称": "线路 间隔棒", + "规格型号": "FJZ-240/24", + "单位": "件", + "数量": "12", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "3.8", + "运输类型": "间隔棒", + "资源库名称": "21", + "市场价不含税": "129.46", + "市场价含税": "146.29", + "单价不含税": "129.46", + "单价含税": "146.29", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "1755.48", + "合价不含税": "1553.52", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "4.066" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8587", + "项目名称": "双联耐张", + "规格型号": "2NZ21Y-4040-12P(H)R", + "单位": "套", + "数量": "18", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "59.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "19", + "市场价不含税": "939.63", + "市场价含税": "1061.78", + "单价不含税": "939.63", + "单价含税": "1061.78", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "19112.04", + "合价不含税": "16913.34", + "线重": "0", + "制造长度": "0", + "每件重": "63.665" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8588", + "项目名称": "双联耐张", + "规格型号": "2NZ21Y-4040-12PZ", + "单位": "套", + "数量": "42", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "59.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "19", + "市场价不含税": "939.63", + "市场价含税": "1061.78", + "单价不含税": "939.63", + "单价含税": "1061.78", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "44594.76", + "合价不含税": "39464.46", + "线重": "0", + "制造长度": "0", + "每件重": "63.665" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8589", + "项目名称": "线路电瓷 玻璃绝缘子", + "规格型号": "U120BP/146-2", + "单位": "只", + "数量": "2112", + "损耗率": "2", + "供货方": "1", + "集中配送": "0", + "单重": "6.1", + "运输类型": "玻璃绝缘子", + "资源库名称": "21", + "市场价不含税": "51.26", + "市场价含税": "57.92", + "单价不含税": "51.26", + "单价含税": "57.92", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "122327.04", + "合价不含税": "108261.12", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "6.527" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8590", + "项目名称": "单联耐张", + "规格型号": "2MP11Y-4000-07P", + "单位": "套", + "数量": "12", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "10.2", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "19", + "市场价不含税": "451.02", + "市场价含税": "509.65", + "单价不含税": "451.02", + "单价含税": "509.65", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "6115.8", + "合价不含税": "5412.24", + "线重": "0", + "制造长度": "0", + "每件重": "10.914" + } + ] + }, + { + "GUID": "{8B49E78B-38C6-4A27-B048-3B0CC9722408}", + "序号": "5.2.2", + "项目名称": "悬垂绝缘子串及金具安装", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "267467.518577", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + {}, + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + }, + { + "资源库名称": "装置性材料预算价2018" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2524", + "项目名称": "地线用盘形悬式瓷绝缘子", + "规格型号": "UE70CN,160,200,160", + "单位": "件", + "数量": "4", + "损耗率": "2", + "供货方": "2", + "集中配送": "0", + "单重": "3.8", + "运输类型": "瓷绝缘子", + "资源库名称": "11", + "市场价不含税": "132.92", + "市场价含税": "150.2", + "单价不含税": "132.92", + "单价含税": "150.2", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "600.8", + "合价不含税": "531.68" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2525", + "项目名称": "交流盘形悬式瓷绝缘子", + "规格型号": "U70BP/155T,320,550", + "单位": "件", + "数量": "99", + "损耗率": "2", + "供货方": "2", + "集中配送": "0", + "单重": "3.8", + "运输类型": "瓷绝缘子", + "资源库名称": "11", + "市场价不含税": "74.42", + "市场价含税": "84.09", + "单价不含税": "74.42", + "单价含税": "84.09", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "8324.91", + "合价不含税": "7367.58" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2526", + "项目名称": "悬垂双串", + "规格型号": "2XZ22CLCS-4045-12P(H)-1D", + "单位": "套", + "数量": "3", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "35", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "11", + "市场价不含税": "1227.86", + "市场价含税": "1387.48", + "单价不含税": "1227.86", + "单价含税": "1387.48", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "4162.44", + "合价不含税": "3683.58", + "线重": "0", + "制造长度": "0", + "每件重": "37.45" + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装 220kV I型单联串(跳线串)", + "编码": "YX6-26", + "单位": "串", + "计算式": "16", + "数量": "16", + "中标计算式": "16", + "人工费": "24.64", + "机械费": "10.32", + "材料费": "0.52", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "35.48", + "合价不含税": "567.68", + "特征段": "特征1", + "基价": "35.48", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0349", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1982", + "是否未计价": "0" + }, + { + "编码": "C22040501", + "名称": "棉纱头", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.67", + "市场价不含税": "5.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0901", + "是否未计价": "0" + }, + { + "编码": "J13-01-060", + "名称": "机动绞磨 3t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "162.99", + "市场价不含税": "162.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0523", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0057", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0102", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装 220kV I型单联串(悬垂串)", + "编码": "YX6-26", + "单位": "串", + "计算式": "24", + "数量": "24", + "中标计算式": "24", + "人工费": "24.64", + "机械费": "10.32", + "材料费": "0.52", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "35.48", + "合价不含税": "851.52", + "特征段": "特征1", + "基价": "35.48", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0349", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1982", + "是否未计价": "0" + }, + { + "编码": "C22040501", + "名称": "棉纱头", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.67", + "市场价不含税": "5.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0901", + "是否未计价": "0" + }, + { + "编码": "J13-01-060", + "名称": "机动绞磨 3t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "162.99", + "市场价不含税": "162.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0523", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0057", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0102", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装 220kV I型双联串(跳线串)", + "编码": "YX6-27", + "单位": "串", + "计算式": "16", + "数量": "16", + "中标计算式": "16", + "人工费": "45.05", + "机械费": "15.13", + "材料费": "1", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "61.18", + "合价不含税": "978.88", + "特征段": "特征1", + "基价": "61.18", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.064", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3622", + "是否未计价": "0" + }, + { + "编码": "C22040501", + "名称": "棉纱头", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.67", + "市场价不含税": "5.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1733", + "是否未计价": "0" + }, + { + "编码": "J13-01-060", + "名称": "机动绞磨 3t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "162.99", + "市场价不含税": "162.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0795", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0069", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0197", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装 220kV I型双联串(悬垂串)", + "编码": "YX6-27", + "单位": "串", + "计算式": "33", + "数量": "33", + "中标计算式": "33", + "人工费": "45.05", + "机械费": "15.13", + "材料费": "1", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "直线(直线换位、直线转角)杆塔绝缘子串悬挂安装", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "61.18", + "合价不含税": "2018.94", + "特征段": "特征1", + "基价": "61.18", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.064", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3622", + "是否未计价": "0" + }, + { + "编码": "C22040501", + "名称": "棉纱头", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.67", + "市场价不含税": "5.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1733", + "是否未计价": "0" + }, + { + "编码": "J13-01-060", + "名称": "机动绞磨 3t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "162.99", + "市场价不含税": "162.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0795", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0069", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0197", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "导线缠绕预绞丝线夹安装 直线(直线换位、直线转角)杆塔 220kV 双分裂", + "编码": "YX6-77", + "单位": "单相", + "计算式": "89", + "数量": "89", + "中标计算式": "89", + "人工费": "64.53", + "机械费": "1.7", + "材料费": "0", + "定额系数": "1", + "人工系数": "1.2", + "材料系数": "1.2", + "机械系数": "1.2", + "定额范围": "1", + "定额章节名称": "导线缠绕预绞丝线夹安装", + "资源库名称": "12", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "79.476", + "合价不含税": "7073.364", + "特征段": "特征1", + "基价": "66.23", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0913", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5191", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.005", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8571", + "项目名称": "跳线串", + "规格型号": "2TP-25-07PRS", + "单位": "套", + "数量": "16", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "36.1", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "11", + "市场价不含税": "578.87", + "市场价含税": "654.12", + "单价不含税": "578.87", + "单价含税": "654.12", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "10465.92", + "合价不含税": "9261.92", + "线重": "0", + "制造长度": "0", + "每件重": "38.627" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8572", + "项目名称": "跳线串", + "规格型号": "2TP-20-07PZ", + "单位": "套", + "数量": "16", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "8.2", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "11", + "市场价不含税": "228.5", + "市场价含税": "258.21", + "单价不含税": "228.5", + "单价含税": "258.21", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "4131.36", + "合价不含税": "3656", + "线重": "0", + "制造长度": "0", + "每件重": "8.774" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8573", + "项目名称": "悬垂双串", + "规格型号": "2XZ22CLCS-4045-12P(H)-1D", + "单位": "套", + "数量": "33", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "35", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "11", + "市场价不含税": "1227.86", + "市场价含税": "1387.48", + "单价不含税": "1227.86", + "单价含税": "1387.48", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "45786.84", + "合价不含税": "40519.38", + "线重": "0", + "制造长度": "0", + "每件重": "37.45" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8574", + "项目名称": "线路电瓷 玻璃绝缘子", + "规格型号": "U120BP/146-2", + "单位": "只", + "数量": "1440", + "损耗率": "2", + "供货方": "1", + "集中配送": "0", + "单重": "6.1", + "运输类型": "玻璃绝缘子", + "资源库名称": "13", + "市场价不含税": "51.26", + "市场价含税": "57.92", + "单价不含税": "51.26", + "单价含税": "57.92", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "83404.8", + "合价不含税": "73814.4", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "6.527" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8575", + "项目名称": "悬垂Ⅰ串", + "规格型号": "2XZ11CLC-4000-12P(H)-1A", + "单位": "套", + "数量": "24", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "20.5", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "11", + "市场价不含税": "613.93", + "市场价含税": "693.74", + "单价不含税": "613.93", + "单价含税": "693.74", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "16649.76", + "合价不含税": "14734.32", + "线重": "0", + "制造长度": "0", + "每件重": "21.935" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8576", + "编码": "C01032404", + "项目名称": "线路电瓷 玻璃绝缘子", + "规格型号": "U70BP/146-2", + "单位": "只", + "数量": "768", + "损耗率": "2", + "供货方": "1", + "集中配送": "0", + "单重": "3.8", + "运输类型": "玻璃绝缘子", + "资源库名称": "13", + "市场价不含税": "47.35", + "市场价含税": "57.92", + "单价不含税": "47.35", + "单价含税": "53.51", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "41095.68", + "合价不含税": "36364.8", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "4.066" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8577", + "编码": "C03250102", + "项目名称": "线路 接续管(钢芯铝绞线用)", + "规格型号": "JYD-300/40(BY-300Q)", + "单位": "件", + "数量": "12", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "1.4", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "13", + "市场价不含税": "40.58", + "市场价含税": "45.86", + "单价不含税": "40.58", + "单价含税": "45.86", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "550.32", + "合价不含税": "486.96", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "1.498" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8578", + "编码": "C03270106", + "项目名称": "线路 修补管", + "规格型号": "JX-300/40", + "单位": "件", + "数量": "18", + "损耗率": "1.5", + "供货方": "1", + "集中配送": "0", + "单重": "0.6", + "运输类型": "金具(包括压接线夹)", + "资源库名称": "13", + "市场价不含税": "14.84", + "市场价含税": "16.77", + "单价不含税": "14.84", + "单价含税": "16.77", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "301.86", + "合价不含税": "267.12", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "0.642" + } + ] + } + ] + } + ] + }, + { + "GUID": "{328859FB-E551-4EC3-A4CD-2D9052D77699}", + "序号": "6", + "项目名称": "辅助工程", + "代码": "FZGC", + "费率": "0", + "单位": "元/km、元/m?、元/处", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{52BB4E2C-BCF0-43EB-8D3E-F1B1E85D59A5}", + "序号": "6.1", + "项目名称": "尖峰、施工基面土石方工程", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "6863.530572", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "尖峰及施工基面挖方(或爆破) 普通土", + "编码": "YX2-226", + "单位": "m?", + "计算式": "290*0.45", + "数量": "130.5", + "中标计算式": "290*0.45", + "人工费": "6.97", + "机械费": "0.28", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "尖峰及施工基面挖方(或爆破)", + "资源库名称": "7", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "7.25", + "合价不含税": "946.125", + "特征段": "特征1", + "基价": "7.25", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0922", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0046", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0009", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "尖峰及施工基面挖方(或爆破) 坚土", + "编码": "YX2-227", + "单位": "m?", + "计算式": "290*0.35", + "数量": "101.5", + "中标计算式": "290*0.35", + "人工费": "9", + "机械费": "0.5", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "尖峰及施工基面挖方(或爆破)", + "资源库名称": "7", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "9.5", + "合价不含税": "964.25", + "特征段": "特征1", + "基价": "9.5", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1192", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0059", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0016", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "尖峰及施工基面挖方(或爆破) 松砂石", + "编码": "YX2-228", + "单位": "m?", + "计算式": "290*0.2", + "数量": "58", + "中标计算式": "290*0.2", + "人工费": "16.01", + "机械费": "0.63", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "尖峰及施工基面挖方(或爆破)", + "资源库名称": "7", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "16.64", + "合价不含税": "965.12", + "特征段": "特征1", + "基价": "16.64", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2108", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0112", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.002", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{FA9774AC-96C7-4F38-95BB-2C705B3DA1A3}", + "序号": "6.2", + "项目名称": "护坡、挡土墙及排洪沟", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{CD9D81E2-DBF4-4672-84D8-D2D872C0B167}", + "序号": "6.2.1", + "项目名称": "护坡、挡土墙及排洪沟材料工地运输", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "27406.070814", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "人力运输 其他建筑安装材料", + "编码": "YX1-22", + "单位": "t.km", + "计算式": "(2.005936)+(15.459622)+(75.03)", + "数量": "92.495558", + "中标计算式": "(2.005936)+(15.459622)+(75.03)", + "人工费": "106.54", + "机械费": "7.3", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "其他建筑安装材料", + "资源库名称": "8", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "113.84", + "合价不含税": "10529.694323", + "特征段": "特征1", + "基价": "113.84", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.2922", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1436", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0232", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 其他建筑安装材料 装卸", + "编码": "YX1-107", + "单位": "t", + "计算式": "6.686452", + "数量": "6.686452", + "中标计算式": "6.686452", + "人工费": "9.59", + "机械费": "17.87", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "其他建筑安装材料", + "资源库名称": "8", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "27.46", + "合价不含税": "183.609972", + "特征段": "特征1", + "基价": "27.46", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1159", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0132", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0526", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 其他建筑安装材料 运输", + "编码": "YX1-108", + "单位": "t.km", + "计算式": "66.864525", + "数量": "66.864525", + "中标计算式": "66.864525", + "人工费": "0.41", + "机械费": "0.75", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "其他建筑安装材料", + "资源库名称": "8", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1.16", + "合价不含税": "77.562849", + "特征段": "特征1", + "基价": "1.16", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0059", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0022", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{3ED6E244-1C39-4358-8784-8221694E78DF}", + "序号": "6.2.2", + "项目名称": "护坡、挡土墙及排洪沟土石方工程", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "5157.394213", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "排水沟挖方(或爆破) 普通土", + "编码": "YX2-220", + "单位": "m?", + "计算式": "4.524", + "数量": "4.524", + "中标计算式": "4.524", + "人工费": "6.05", + "机械费": "0.5", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "排水沟挖方(或爆破)", + "资源库名称": "9", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "6.55", + "合价不含税": "29.6322", + "特征段": "特征1", + "基价": "6.55", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0802", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0039", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0016", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "排水沟挖方(或爆破) 坚土", + "编码": "YX2-221", + "单位": "m?", + "计算式": "27.144", + "数量": "27.144", + "中标计算式": "27.144", + "人工费": "8.68", + "机械费": "0.5", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "排水沟挖方(或爆破)", + "资源库名称": "9", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "9.18", + "合价不含税": "249.18192", + "特征段": "特征1", + "基价": "9.18", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1146", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0059", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0016", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "排水沟挖方(或爆破) 松砂石", + "编码": "YX2-222", + "单位": "m?", + "计算式": "27.144", + "数量": "27.144", + "中标计算式": "27.144", + "人工费": "11.76", + "机械费": "0.76", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "排水沟挖方(或爆破)", + "资源库名称": "9", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "12.52", + "合价不含税": "339.84288", + "特征段": "特征1", + "基价": "12.52", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1554", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0079", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0024", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "排水沟挖方(或爆破) 泥水", + "编码": "YX2-223", + "单位": "m?", + "计算式": "20.5632", + "数量": "20.5632", + "中标计算式": "20.5632", + "人工费": "14.29", + "机械费": "1.04", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "排水沟挖方(或爆破)", + "资源库名称": "9", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "15.33", + "合价不含税": "315.233856", + "特征段": "特征1", + "基价": "15.33", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1883", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0099", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0033", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "排水沟挖方(或爆破) 岩石 人工开凿", + "编码": "YX2-225", + "单位": "m?", + "计算式": "11.7312", + "数量": "11.7312", + "中标计算式": "11.7312", + "人工费": "99", + "机械费": "4.59", + "材料费": "3.06", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "排水沟挖方(或爆破)", + "资源库名称": "9", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "106.65", + "合价不含税": "1251.13248", + "特征段": "特征1", + "基价": "106.65", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.2005", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1336", + "是否未计价": "0" + }, + { + "编码": "C19120201", + "名称": "焦炭", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1.675", + "市场价不含税": "1.675", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.792", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0146", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.06", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{9C1646F5-2991-437E-A50D-BE37E5E0C645}", + "序号": "6.2.3", + "项目名称": "护坡、挡土墙及排洪沟砌筑", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "69613.486187", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + }, + { + "资源库名称": "通用材料库" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "排洪沟砌筑 浆砌", + "编码": "YX7-18", + "单位": "m?", + "计算式": "57", + "数量": "57", + "中标计算式": "57", + "人工费": "69.42", + "机械费": "5.03", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "护坡、挡土墙及排洪沟砌筑", + "资源库名称": "7", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "74.45", + "合价不含税": "4243.65", + "特征段": "特征1", + "基价": "74.45", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5882", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2522", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.016", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "护坡、挡土墙砌筑 斜坡形 浆砌", + "编码": "YX7-20", + "单位": "m?", + "计算式": "100", + "数量": "100", + "中标计算式": "100", + "人工费": "64.73", + "机械费": "5.03", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "护坡、挡土墙及排洪沟砌筑", + "资源库名称": "7", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "69.76", + "合价不含税": "6976", + "特征段": "特征1", + "基价": "69.76", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5486", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2351", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.016", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8593", + "项目名称": "块石", + "单位": "m?", + "数量": "152.5", + "损耗率": "2.5", + "供货方": "2", + "集中配送": "0", + "单重": "1600", + "运输类型": "砖、条石、块石、降阻模块", + "资源库名称": "8", + "市场价不含税": "158", + "市场价含税": "0", + "单价不含税": "80", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "0", + "合价不含税": "12200", + "线重": "0", + "制造长度": "0", + "截面积": "0", + "每件重": "1600" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8594", + "编码": "ZH1016", + "项目名称": "水泥砂浆", + "规格型号": "M7.5", + "单位": "m?", + "数量": "20", + "损耗率": "0", + "供货方": "0", + "集中配送": "0", + "单重": "2317", + "资源库名称": "8", + "市场价不含税": "439.4764", + "市场价含税": "0", + "单价不含税": "183.73", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "0", + "合价不含税": "3674.6", + "children": [ + { + "id": "8595", + "编码": "C09010102", + "项目名称": "普通硅酸盐水泥", + "规格型号": "42.5", + "单位": "t", + "数量": "5.36", + "损耗率": "5", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水泥", + "资源库名称": "8", + "市场价不含税": "601.77", + "市场价含税": "0", + "单价不含税": "396", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "2122.56", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1010" + }, + { + "id": "8596", + "编码": "C10010101", + "项目名称": "中砂", + "单位": "m?", + "数量": "23.6", + "损耗率": "15", + "供货方": "2", + "集中配送": "0", + "单重": "1550", + "运输类型": "砂", + "资源库名称": "8", + "市场价不含税": "235", + "市场价含税": "0", + "单价不含税": "65", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "1534", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1550" + }, + { + "id": "8597", + "编码": "C21010101", + "项目名称": "水", + "单位": "t", + "数量": "4.4", + "损耗率": "0", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水", + "资源库名称": "8", + "市场价不含税": "4.1", + "市场价含税": "0", + "单价不含税": "4.1", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "18.04", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1200" + } + ], + "线重": "0", + "制造长度": "0", + "截面积": "0" + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "8598", + "编码": "ZH1017", + "项目名称": "水泥砂浆", + "规格型号": "M5", + "单位": "m?", + "数量": "4.5", + "损耗率": "0", + "供货方": "0", + "集中配送": "0", + "单重": "2259", + "资源库名称": "8", + "市场价不含税": "404.5737", + "市场价含税": "0", + "单价不含税": "160.762", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "0", + "合价不含税": "723.429", + "children": [ + { + "id": "8599", + "编码": "C09010102", + "项目名称": "普通硅酸盐水泥", + "规格型号": "42.5", + "单位": "t", + "数量": "0.945", + "损耗率": "5", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水泥", + "资源库名称": "8", + "市场价不含税": "601.77", + "市场价含税": "0", + "单价不含税": "396", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "374.22", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1010" + }, + { + "id": "8600", + "编码": "C10010101", + "项目名称": "中砂", + "单位": "m?", + "数量": "5.31", + "损耗率": "15", + "供货方": "2", + "集中配送": "0", + "单重": "1550", + "运输类型": "砂", + "资源库名称": "8", + "市场价不含税": "235", + "市场价含税": "0", + "单价不含税": "65", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "345.15", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1550" + }, + { + "id": "8601", + "编码": "C21010101", + "项目名称": "水", + "单位": "t", + "数量": "0.99", + "损耗率": "0", + "供货方": "2", + "集中配送": "0", + "单重": "1000", + "运输类型": "水", + "资源库名称": "8", + "市场价不含税": "4.1", + "市场价含税": "0", + "单价不含税": "4.1", + "单价含税": "0", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "类型": "主材", + "合价含税": "0", + "合价不含税": "4.059", + "特征段": "特征1", + "线重": "0", + "制造长度": "0", + "每件重": "1200" + } + ], + "线重": "0", + "制造长度": "0", + "截面积": "0" + } + ] + } + ] + }, + { + "GUID": "{538122F9-D60F-4602-A751-7E16171EF5F3}", + "序号": "6.3", + "项目名称": "基础永久性围堰", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路", + "children": [ + { + "GUID": "{7886BFB7-8FEF-4BE4-8AA1-61A5C8431892}", + "序号": "6.3.1", + "项目名称": "基础永久性围堰材料工地运输", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + }, + { + "GUID": "{D59571BA-E18B-488F-B5DF-7C3DDA2B5FF8}", + "序号": "6.3.2", + "项目名称": "基础永久性围堰土石方工程", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + }, + { + "GUID": "{F5944495-31E2-4914-BC2F-E456AC728206}", + "序号": "6.3.3", + "项目名称": "基础永久性围堰砌筑", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + } + ] + }, + { + "GUID": "{FDBDD5AD-D92C-45CA-94E1-558633EB4C25}", + "序号": "6.4", + "项目名称": "索道站安装", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + }, + { + "GUID": "{C4CE9E6E-B570-4D96-96D7-2961F18DDCC8}", + "序号": "6.5", + "项目名称": "杆塔上装的各类辅助生产装置", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "81643.46339", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + }, + {} + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "驱鸟器安装", + "编码": "YX7-29", + "单位": "个", + "计算式": "120", + "数量": "120", + "中标计算式": "120", + "人工费": "14.29", + "机械费": "33.26", + "材料费": "0.46", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "资源库名称": "37", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "48.01", + "合价不含税": "5761.2", + "特征段": "特征1", + "基价": "48.01", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1515", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0329", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.037", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1057", + "是否未计价": "0" + }, + { + "编码": "C22040501", + "名称": "棉纱头", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.67", + "市场价不含税": "5.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.05", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0089", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2531", + "项目名称": "防鸟盒", + "单位": "个", + "数量": "120", + "损耗率": "0", + "供货方": "1", + "集中配送": "0", + "单重": "3.5", + "运输类型": "防鸟装置", + "资源库名称": "38", + "市场价不含税": "247", + "市场价含税": "279.11", + "单价不含税": "247", + "单价含税": "279.11", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "33493.2", + "合价不含税": "29640" + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "氧化锌避雷器安装 220kV", + "编码": "YX7-34", + "单位": "单相", + "计算式": "3", + "数量": "3", + "中标计算式": "3", + "人工费": "561.8", + "机械费": "417.62", + "材料费": "48.42", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "资源库名称": "37", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1027.84", + "合价不含税": "3083.52", + "特征段": "特征1", + "基价": "1027.84", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.3444", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.1758", + "是否未计价": "0" + }, + { + "编码": "C04010201", + "名称": "紫铜棒 Φ6", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "46.112", + "市场价不含税": "46.112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1698", + "是否未计价": "0" + }, + { + "编码": "C04010301", + "名称": "紫铜皮 0.5以下", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "51.078", + "市场价不含税": "51.078", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0112", + "是否未计价": "0" + }, + { + "编码": "C07010401", + "名称": "钢垫板 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.655", + "市场价不含税": "4.655", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.9142", + "是否未计价": "0" + }, + { + "编码": "C12010100", + "名称": "电焊条 J422 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.96", + "市场价不含税": "4.96", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.167", + "是否未计价": "0" + }, + { + "编码": "C13010201", + "名称": "镀锌六角螺栓 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "8.8", + "市场价不含税": "8.8", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8733", + "是否未计价": "0" + }, + { + "编码": "C18060104", + "名称": "塑料带防辐照聚乙烯 20mm×40m", + "单位": "卷", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "3.112", + "市场价不含税": "3.112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.3542", + "是否未计价": "0" + }, + { + "编码": "C19031101", + "名称": "清洗剂", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "2.41", + "市场价不含税": "2.41", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.161", + "是否未计价": "0" + }, + { + "编码": "C19020801", + "名称": "电力复合脂", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "10.119", + "市场价不含税": "10.119", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0917", + "是否未计价": "0" + }, + { + "编码": "C19030201", + "名称": "乙醇", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "3.62", + "市场价不含税": "3.62", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0179", + "是否未计价": "0" + }, + { + "编码": "C19110101", + "名称": "氧气", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.71", + "市场价不含税": "4.71", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2926", + "是否未计价": "0" + }, + { + "编码": "C19110201", + "名称": "乙炔气", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "10.379", + "市场价不含税": "10.379", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1026", + "是否未计价": "0" + }, + { + "编码": "C20010101", + "名称": "防锈漆", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.353", + "市场价不含税": "9.353", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2562", + "是否未计价": "0" + }, + { + "编码": "C20030101", + "名称": "普通调和漆", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "11.223", + "市场价不含税": "11.223", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5488", + "是否未计价": "0" + }, + { + "编码": "C20080202", + "名称": "硝基快干腻子", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.904", + "市场价不含税": "5.904", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0732", + "是否未计价": "0" + }, + { + "编码": "C22040101", + "名称": "砂布", + "单位": "张", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "0.66", + "市场价不含税": "0.66", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.7315", + "是否未计价": "0" + }, + { + "编码": "C22040411", + "名称": "无絮棉布", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "7.414", + "市场价不含税": "7.414", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0179", + "是否未计价": "0" + }, + { + "编码": "C22040501", + "名称": "棉纱头", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "5.67", + "市场价不含税": "5.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.2195", + "是否未计价": "0" + }, + { + "编码": "J10-01-001", + "名称": "交流弧焊机 容量 21kVA", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "67", + "市场价不含税": "67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0245", + "是否未计价": "0" + }, + { + "编码": "J14-08-220", + "名称": "直流高压发生器 200kV 3mA", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "414.4", + "市场价不含税": "414.4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.8926", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.3776", + "是否未计价": "0" + }, + { + "编码": "J13-01-060", + "名称": "机动绞磨 3t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "162.99", + "市场价不含税": "162.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1129", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0815", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.9494", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2533", + "项目名称": "220kV避雷器 Y10W-204/532W,附在线监测仪", + "单位": "台", + "数量": "3", + "损耗率": "0", + "供货方": "1", + "集中配送": "0", + "单重": "0", + "资源库名称": "38", + "市场价不含税": "4389", + "市场价含税": "4960", + "单价不含税": "4389", + "单价含税": "4960", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "14880", + "合价不含税": "13167" + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "人力运输 金具、绝缘子、零星钢材", + "编码": "YX1-17", + "单位": "t.km", + "计算式": "0.13482", + "数量": "0.13482", + "中标计算式": "0.13482", + "人工费": "123", + "机械费": "8.28", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "37", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "131.28", + "合价不含税": "17.69917", + "特征段": "特征1", + "基价": "131.28", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.492", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1657", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0263", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 装卸", + "编码": "YX1-97", + "单位": "t", + "计算式": "0.4494", + "数量": "0.4494", + "中标计算式": "0.4494", + "人工费": "12.61", + "机械费": "26.19", + "材料费": "7.22", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "37", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "46.02", + "合价不含税": "20.681388", + "特征段": "特征1", + "基价": "46.02", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1528", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0171", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.6", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0771", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1417", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 运输", + "编码": "YX1-98", + "单位": "t.km", + "计算式": "4.494", + "数量": "4.494", + "中标计算式": "4.494", + "人工费": "0.51", + "机械费": "1.02", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "37", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1.53", + "合价不含税": "6.87582", + "特征段": "特征1", + "基价": "1.53", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0073", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.003", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "杆塔标志牌安装", + "编码": "YX7-27", + "单位": "块", + "计算式": "145", + "数量": "145", + "中标计算式": "145", + "人工费": "19.97", + "机械费": "30.11", + "材料费": "0.83", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "杆塔标志牌安装", + "资源库名称": "37", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "50.91", + "合价不含税": "7381.95", + "特征段": "特征1", + "基价": "50.91", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1383", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0919", + "是否未计价": "0" + }, + { + "编码": "C07010101", + "名称": "平垫铁 综合", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.655", + "市场价不含税": "4.655", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.014", + "是否未计价": "0" + }, + { + "编码": "C13040200", + "名称": "弹簧垫圈", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "11.929", + "市场价不含税": "11.929", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.014", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.091", + "是否未计价": "0" + }, + { + "编码": "C16100322", + "名称": "铝绑扎线 3.2mm以下", + "单位": "m", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "0.523", + "市场价不含税": "0.523", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.35", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0957", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0164", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{8E18F9F0-7BE5-4FE7-86DA-345E86E55428}", + "序号": "6.6", + "项目名称": "输、送电线路试运", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "34298.091234", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "输电线路试运 220kV", + "编码": "YX7-128", + "单位": "回", + "计算式": "1", + "数量": "1", + "中标计算式": "1", + "人工费": "8415.88", + "机械费": "6381.81", + "材料费": "4291.01", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "资源库名称": "18", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "19088.7", + "合价不含税": "19088.7", + "特征段": "特征1", + "基价": "19088.7", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9102104", + "名称": "调试技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "152", + "市场价不含税": "152", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "55.3676", + "是否未计价": "0" + }, + { + "编码": "C16011309", + "名称": "铜芯聚氯乙烯绝缘电线 25mm?", + "单位": "m", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "14.336", + "市场价不含税": "14.336", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "45", + "是否未计价": "0" + }, + { + "编码": "C16011315", + "名称": "铜芯聚氯乙烯绝缘电线 120mm?", + "单位": "m", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "73.805", + "市场价不含税": "73.805", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "45", + "是否未计价": "0" + }, + { + "编码": "C16038104", + "名称": "铜接线端子 25mm?", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4", + "市场价不含税": "4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "12", + "是否未计价": "0" + }, + { + "编码": "C16038109", + "名称": "铜接线端子 120mm?", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "16.044", + "市场价不含税": "16.044", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "12", + "是否未计价": "0" + }, + { + "编码": "J03-01-037", + "名称": "汽车式起重机 起重量 20t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "993.04", + "市场价不含税": "993.04", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.4177", + "是否未计价": "0" + }, + { + "编码": "J04-01-004", + "名称": "载重汽车 8t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "445.99", + "市场价不含税": "445.99", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.6595", + "是否未计价": "0" + }, + { + "编码": "J14-03-018", + "名称": "交流高压发生器 50kVA以下 500kV", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "777.48", + "市场价不含税": "777.48", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.2713", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.3498", + "是否未计价": "0" + }, + { + "编码": "J14-09-027", + "名称": "线路参数测试仪", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "5226.08", + "市场价不含税": "5226.08", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4543", + "是否未计价": "0" + }, + { + "编码": "J15-01-066", + "名称": "功能检测分析平台(电脑)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "31.98", + "市场价不含税": "31.98", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.2713", + "是否未计价": "0" + }, + { + "编码": "J16-01-025", + "名称": "绝缘电阻表(数字式)", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "15.69", + "市场价不含税": "15.69", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.0811", + "是否未计价": "0" + }, + { + "编码": "J19-01-024", + "名称": "手持式数字双钳相位表", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "12.43", + "市场价不含税": "12.43", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "2.0442", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "84.1375", + "是否未计价": "0" + } + ] + } + ] + }, + { + "GUID": "{123B6C33-1C6B-4561-81C1-E8043ECCE0E6}", + "序号": "6.7", + "项目名称": "施工道路", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "合价含税": "484509.219276", + "type": "项目划分", + "专业类型": "线路", + "资源库列表": [ + { + "资源库名称": "预算 第四册 架空输电线路工程(2018年版)" + }, + { + "资源库名称": "预算 第一册 建筑工程(2018年版)" + }, + { + "资源库名称": "装置性材料预算价2018" + } + ], + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "施工道路修筑 路床整形", + "编码": "YX7-1", + "单位": "m?", + "计算式": "170*3.5+300", + "数量": "895", + "中标计算式": "170*3.5+300", + "人工费": "5.63", + "机械费": "0.63", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "资源库名称": "34", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "6.26", + "合价不含税": "5602.7", + "特征段": "特征1", + "基价": "6.26", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0683", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0076", + "是否未计价": "0" + }, + { + "编码": "J01-01-053", + "名称": "电动夯实机 夯击能量 250N·m", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "28.93", + "市场价不含税": "28.93", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0121", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0009", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "机械填土碾压", + "编码": "YT1-115", + "单位": "m?", + "计算式": "280*1.4", + "数量": "392", + "中标计算式": "280*1.4", + "人工费": "0.25", + "机械费": "5.01", + "材料费": "0.06", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "回填及其他", + "资源库名称": "35", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "5.32", + "合价不含税": "2085.44", + "特征段": "特征1", + "基价": "5.32", + "所属定额库": "预算 第一册 建筑工程(2018年版)", + "材机列表": [ + { + "编码": "9101106", + "名称": "建筑普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0036", + "是否未计价": "0" + }, + { + "编码": "J01-01-001", + "名称": "履带式推土机 功率 75kW", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "745.79", + "市场价不含税": "745.79", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0007", + "是否未计价": "0" + }, + { + "编码": "J01-01-047", + "名称": "机械式振动压路机 工作质量 15t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "878.08", + "市场价不含税": "878.08", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0047", + "是否未计价": "0" + }, + { + "编码": "J04-01-041", + "名称": "洒水车 4000L", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "449.25", + "市场价不含税": "449.25", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0008", + "是否未计价": "0" + }, + { + "编码": "C21010101", + "名称": "水", + "单位": "t", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.1", + "市场价不含税": "4.1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.015", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0012", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "主材", + "关联父级量": "0", + "id": "2538", + "项目名称": "路基箱租赁及铺设", + "单位": "块*天", + "数量": "11280", + "损耗率": "0", + "供货方": "2", + "集中配送": "0", + "单重": "30", + "运输类型": "钢筋、型钢(成品、半成品)", + "资源库名称": "36", + "市场价不含税": "26.55", + "市场价含税": "30", + "单价不含税": "26.55", + "单价含税": "30", + "结算市场价不含税": "0", + "结算市场价含税": "0", + "基准价不含税": "0", + "基准价含税": "0", + "费用类型": "取费", + "投标数量": "0", + "投标单价": "0", + "增值税率": "0", + "特征段": "特征1", + "合价含税": "338400", + "合价不含税": "299484", + "线重": "0", + "制造长度": "0", + "截面积": "0" + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "预应力钢筋混凝土管道安装 Φ1600", + "编码": "YT13-104", + "单位": "m", + "计算式": "10", + "数量": "10", + "中标计算式": "10", + "人工费": "86.18", + "机械费": "46.93", + "材料费": "3123.83", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "预应力钢筋混凝土管道安装", + "资源库名称": "35", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "3256.94", + "合价不含税": "32569.4", + "特征段": "特征1", + "基价": "3256.94", + "所属定额库": "预算 第一册 建筑工程(2018年版)", + "材机列表": [ + { + "编码": "9101106", + "名称": "建筑普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.5318", + "是否未计价": "0" + }, + { + "编码": "9101107", + "名称": "建筑技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "98", + "市场价不含税": "98", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.4995", + "是否未计价": "0" + }, + { + "编码": "C09050334", + "名称": "钢筋混凝土管 Φ1600", + "单位": "m", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "3097", + "市场价不含税": "3097", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.98", + "是否未计价": "0" + }, + { + "编码": "C18030210", + "名称": "橡胶密封圈 DN1600", + "单位": "个", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "187.472", + "市场价不含税": "187.472", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.263", + "是否未计价": "0" + }, + { + "编码": "C19020403", + "名称": "二丁酯", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "7.845", + "市场价不含税": "7.845", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.008", + "是否未计价": "0" + }, + { + "编码": "C19030301", + "名称": "丙酮 95%", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.1", + "市场价不含税": "4.1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.005", + "是否未计价": "0" + }, + { + "编码": "C19060131", + "名称": "乙二胺", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "20.52", + "市场价不含税": "20.52", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.007", + "是否未计价": "0" + }, + { + "编码": "C20060202", + "名称": "环氧树脂 6101号", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "19.187", + "市场价不含税": "19.187", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.07", + "是否未计价": "0" + }, + { + "编码": "C21010101", + "名称": "水", + "单位": "t", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.1", + "市场价不含税": "4.1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "4.12", + "是否未计价": "0" + }, + { + "编码": "J03-01-007", + "名称": "履带式起重机 起重量 40t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "1364.4", + "市场价不含税": "1364.4", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0114", + "是否未计价": "0" + }, + { + "编码": "J03-01-036", + "名称": "汽车式起重机 起重量 16t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "876.93", + "市场价不含税": "876.93", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0114", + "是否未计价": "0" + }, + { + "编码": "J04-01-035", + "名称": "管子拖车 24t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "1616.25", + "市场价不含税": "1616.25", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0114", + "是否未计价": "0" + }, + { + "编码": "J05-01-010", + "名称": "电动单筒慢速卷扬机 50kN", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "181.65", + "市场价不含税": "181.65", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0074", + "是否未计价": "0" + }, + { + "编码": "J09-01-003", + "名称": "电动单级离心清水泵 出口直径 Φ150", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "101.95", + "市场价不含税": "101.95", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0114", + "是否未计价": "0" + }, + { + "编码": "J09-01-033", + "名称": "试压泵 压力 25MPa", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "29.73", + "市场价不含税": "29.73", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.015", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "21.0018", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "排水沟挖方(或爆破) 坚土", + "编码": "YX2-221", + "单位": "m?", + "计算式": "25", + "数量": "25", + "中标计算式": "25", + "人工费": "8.68", + "机械费": "0.5", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "排水沟挖方(或爆破)", + "资源库名称": "34", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "9.18", + "合价不含税": "229.5", + "特征段": "特征1", + "基价": "9.18", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1146", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "1", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0059", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0016", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "人力运输 金具、绝缘子、零星钢材", + "编码": "YX1-17", + "单位": "t.km", + "计算式": "101.52", + "数量": "101.52", + "中标计算式": "101.52", + "人工费": "123", + "机械费": "8.28", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "34", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "131.28", + "合价不含税": "13327.5456", + "特征段": "特征1", + "基价": "131.28", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.492", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1657", + "是否未计价": "0" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0263", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 装卸", + "编码": "YX1-97", + "单位": "t", + "计算式": "338.4", + "数量": "338.4", + "中标计算式": "338.4", + "人工费": "12.61", + "机械费": "26.19", + "材料费": "7.22", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "34", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "46.02", + "合价不含税": "15573.168", + "特征段": "特征1", + "基价": "46.02", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1528", + "是否未计价": "0" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0171", + "是否未计价": "0" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.6", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0771", + "是否未计价": "0" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1417", + "是否未计价": "0" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 金具、绝缘子、零星钢材 运输", + "编码": "YX1-98", + "单位": "t.km", + "计算式": "3384", + "数量": "3384", + "中标计算式": "3384", + "人工费": "0.51", + "机械费": "1.02", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "金具、绝缘子、零星钢材", + "资源库名称": "34", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "其中:甲供材料费": "0", + "单价不含税": "1.53", + "合价不含税": "5177.52", + "特征段": "特征1", + "基价": "1.53", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0073", + "是否未计价": "0" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.003", + "是否未计价": "0" + } + ] + } + ] + } + ] + }, + { + "GUID": "{0EA5CAA6-3C15-4658-8012-48BB88C6A8C9}", + "序号": "7", + "项目名称": "电缆工程", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + }, + { + "GUID": "{AB451BF0-FBA6-4BA4-90CA-824D418B4C14}", + "序号": "8", + "项目名称": "通信线路工程", + "费率": "0", + "取费表id": "3_1", + "取费表": "线路取费表", + "type": "项目划分", + "专业类型": "线路" + } + ] + } + ], + "清理项目": [ + { + "GUID": "{C4189478-2AF5-452B-81F9-52F00BA0FF85}", + "序号": "1", + "项目名称": "建筑工程", + "费率": "0", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)", + "children": [ + { + "GUID": "{2D305725-C56A-47D2-8A34-B44B4420A00A}", + "序号": "1.1", + "项目名称": "一般砖木结构", + "费率": "10", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)" + }, + { + "GUID": "{58C34656-D682-4EDD-BB94-3FD01FBCA292}", + "序号": "1.2", + "项目名称": "混合结构", + "费率": "20", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)" + }, + { + "GUID": "{B7619B58-39BF-4F19-996E-3D6742D1C749}", + "序号": "1.3", + "项目名称": "混凝土及钢筋混凝土结构", + "费率": "0", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)", + "children": [ + { + "GUID": "{D3F253A4-3228-42EC-B134-601DA6309397}", + "序号": "1.3.1", + "项目名称": "(1)有条件爆破的", + "费率": "20", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)" + }, + { + "GUID": "{96E5FC2D-BB1E-470A-8B75-DBB8FA9FD957}", + "序号": "1.3.2", + "项目名称": "(2)无条件爆破的", + "费率": "0", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)" + } + ] + }, + { + "GUID": "{BB3A2888-6AB1-4DFB-B59B-EFBCE7FA7F6A}", + "序号": "1.4", + "项目名称": "临时简易建筑", + "费率": "8", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)" + }, + { + "GUID": "{381CE252-DE8C-4A73-B279-C3529C2A0EB8}", + "序号": "1.5", + "项目名称": "金属结构", + "费率": "0", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)", + "children": [ + { + "GUID": "{74034EDA-F2E6-4B2C-A673-E4167E86BC13}", + "序号": "1.5.1", + "项目名称": "(1)拆除后能利用", + "费率": "55", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)" + }, + { + "GUID": "{3262DA10-AE71-421B-A6D1-D48334E090E8}", + "序号": "1.5.2", + "项目名称": "(2)拆除后不能利用", + "费率": "38", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)" + } + ] + } + ] + }, + { + "GUID": "{132CF57D-6154-4C3A-9111-D006D99977B2}", + "序号": "2", + "项目名称": "安装工程", + "费率": "0", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)", + "children": [ + { + "GUID": "{48C890AE-742B-44EE-B1E7-69640A00BBF2}", + "序号": "2.1", + "项目名称": "金属结构及工业管道", + "费率": "45", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)" + }, + { + "GUID": "{ED7D04E4-AA0F-4118-8921-09CC24A893B2}", + "序号": "2.2", + "项目名称": "机电设备", + "费率": "32", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)" + }, + { + "GUID": "{326A93F1-CB4A-478B-808B-4DB125BB3102}", + "序号": "2.3", + "项目名称": "输电线路及通信线路", + "费率": "0", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)", + "children": [ + { + "GUID": "{1C4E292A-04BD-4E54-A4B5-D3FB5F466C5C}", + "序号": "2.3.1", + "项目名称": "(1)拆除后能利用", + "费率": "62", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)" + }, + { + "GUID": "{C510BFCF-B0A5-4C28-820B-5DE2D01A9BBD}", + "序号": "2.3.2", + "项目名称": "(2)拆除后不能利用", + "费率": "35", + "取费表id": "4_4", + "type": "项目划分", + "专业类型": "余物清理", + "取费表": "线路取费表(余物清理)", + "合价含税": "4195.76065", + "children": [ + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "角钢塔组立 塔全高50m以内 每米塔重400kg以内", + "编码": "YX4-46", + "单位": "t", + "计算式": "15*1", + "数量": "15", + "中标计算式": "15*1", + "人工费": "452.29", + "机械费": "71.6", + "材料费": "5.78", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "资源库名称": "14", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "单价不含税": "529.67", + "合价不含税": "7945.05", + "特征段": "特征1", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.3656" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "3.1848" + }, + { + "编码": "C08020102", + "名称": "方材红白松 二等", + "单位": "m?", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1660", + "市场价不含税": "1660", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0026" + }, + { + "编码": "C14010100", + "名称": "镀锌铁丝", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "4.427", + "市场价不含税": "4.427", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0737" + }, + { + "编码": "C20020101", + "名称": "普通磁漆", + "单位": "kg", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "9.727", + "市场价不含税": "9.727", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1053" + }, + { + "编码": "J13-01-061", + "名称": "机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "174.42", + "市场价不含税": "174.42", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1804" + }, + { + "编码": "J13-01-062", + "名称": "手扶机动绞磨 5t以内", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "240.23", + "市场价不含税": "240.23", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0073" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0583" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.059" + }, + { + "编码": "C99010102", + "名称": "其他材料费", + "单位": "元", + "类型": "材料", + "供货方": "乙供", + "预算价不含税": "1", + "市场价不含税": "1", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1133" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "人力运输 角钢塔材(拆除铁塔运输)", + "编码": "YX1-20", + "单位": "t.km", + "计算式": "15*0.4", + "数量": "6", + "中标计算式": "15*0.4", + "人工费": "146.52", + "机械费": "10.95", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "塔材", + "资源库名称": "14", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "单价不含税": "157.47", + "合价不含税": "944.82", + "特征段": "特征1", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "1.7771" + }, + { + "编码": "9101111", + "名称": "输电技术工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "112", + "市场价不含税": "112", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.1975" + }, + { + "编码": "J13-01-079", + "名称": "输电专用载重汽车 4t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "314.67", + "市场价不含税": "314.67", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0348" + } + ] + }, + { + "颜色标记": "标记:16777215;", + "类型": "定额", + "关联父级量": "0", + "项目名称": "汽车运输 角钢塔材 运输(拆除铁塔运输)", + "编码": "YX1-104", + "单位": "t.km", + "计算式": "15*50", + "数量": "750", + "中标计算式": "15*50", + "人工费": "0.55", + "机械费": "1.02", + "材料费": "0", + "定额系数": "1", + "人工系数": "1", + "材料系数": "1", + "机械系数": "1", + "定额范围": "1", + "定额章节名称": "塔材", + "资源库名称": "14", + "费用类型": "0", + "投标数量": "0", + "投标单价": "0", + "投标合价": "0", + "单价不含税": "1.57", + "合价不含税": "1177.5", + "特征段": "特征1", + "所属定额库": "预算 第四册 架空输电线路工程(2018年版)", + "材机列表": [ + { + "编码": "9101110", + "名称": "输电普通工", + "单位": "工日", + "类型": "人工", + "供货方": "乙供", + "预算价不含税": "70", + "市场价不含税": "70", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.0079" + }, + { + "编码": "J13-01-080", + "名称": "输电专用载重汽车 5t", + "单位": "台班", + "类型": "机械", + "供货方": "乙供", + "预算价不含税": "339.64", + "市场价不含税": "339.64", + "预算价含税": "0", + "市场价含税": "0", + "结算预算价不含税": "0", + "结算市场价不含税": "0", + "结算预算价含税": "0", + "结算市场价含税": "0", + "暂估价": "0", + "拆分": "0", + "全口径市场价不含税": "0", + "全口径市场价含税": "0", + "数量": "0.003" + } + ] + } + ] + } + ] + } + ] + } + ] + } + }, + "technicalEconomic": [ + { + "序号": "1", + "项目内容": "工程概况信息", + "项目参数变量": "工程概况信息", + "children": [ + { + "序号": "1.1", + "项目内容": "起点", + "项目参数变量": "起点" + }, + { + "序号": "1.2", + "项目内容": "终点", + "项目参数变量": "终点" + }, + { + "序号": "1.3", + "项目内容": "输送容量", + "项目参数变量": "输送容量", + "单位": "MVA" + }, + { + "序号": "1.4", + "项目内容": "海拔高度", + "项目参数": "500", + "项目参数变量": "海拔高度", + "单位": "m" + }, + { + "序号": "1.5", + "项目内容": "设计单位", + "项目参数变量": "设计单位" + } + ] + }, + { + "序号": "2", + "项目内容": "工程参数", + "项目参数变量": "工程参数", + "children": [ + { + "序号": "2.1", + "项目内容": "转角次数", + "项目参数变量": "转角次数", + "单位": "次" + }, + { + "序号": "2.2", + "项目内容": "污秽等级", + "项目参数变量": "污秽等级", + "单位": "级" + }, + { + "序号": "2.3", + "项目内容": "曲折系数", + "项目参数": "1.18", + "项目参数变量": "曲折系数" + }, + { + "序号": "2.4", + "项目内容": "导地线防震措施(导则)", + "项目参数变量": "导地线防震措施" + }, + { + "序号": "2.5", + "项目内容": "维护通讯方式(导则)", + "项目参数变量": "维护通讯方式" + }, + { + "序号": "2.6", + "项目内容": "平均挡距(导则)", + "项目参数变量": "平均挡距", + "单位": "m" + }, + { + "序号": "2.7", + "项目内容": "最大挡距(导则)", + "项目参数变量": "最大挡距", + "单位": "m" + }, + { + "序号": "2.8", + "项目内容": "平均耐张段长度(导则)", + "项目参数变量": "平均耐张段长度", + "单位": "m" + }, + { + "序号": "2.9", + "项目内容": "线路换位循环个数(导则)", + "项目参数变量": "线路换位循环个数" + }, + { + "序号": "2.10", + "项目内容": "地线绝缘方式(导则)", + "项目参数变量": "地线绝缘方式" + }, + { + "序号": "2.11", + "项目内容": "直线转角塔基数(导则)", + "项目参数变量": "直线转角塔基数", + "单位": "基" + } + ] + }, + { + "序号": "3", + "项目内容": "气象条件", + "项目参数变量": "气象条件", + "children": [ + { + "序号": "3.1", + "项目内容": "最高温度", + "项目参数变量": "最高温度", + "单位": "℃" + }, + { + "序号": "3.2", + "项目内容": "最低温度", + "项目参数变量": "最低温度", + "单位": "℃" + }, + { + "序号": "3.3", + "项目内容": "雷电日", + "项目参数变量": "雷电日", + "单位": "天/年(d/a)" + }, + { + "序号": "3.4", + "项目内容": "保护角", + "项目参数变量": "保护角" + }, + { + "序号": "3.5", + "项目内容": "主要风速(预规)", + "项目参数变量": "主要风速", + "单位": "m/s" + }, + { + "序号": "3.6", + "项目内容": "最大风速(预规)", + "项目参数变量": "最大风速", + "单位": "m/s" + }, + { + "序号": "3.7", + "项目内容": "主要覆冰(预规)", + "项目参数变量": "主要覆冰", + "单位": "mm" + }, + { + "序号": "3.8", + "项目内容": "最大覆冰(预规)", + "项目参数变量": "最大覆冰", + "单位": "mm" + }, + { + "序号": "3.9", + "项目内容": "设计风速(导则)", + "项目参数": "27", + "项目参数变量": "设计风速", + "单位": "m/s" + }, + { + "序号": "3.10", + "项目内容": "覆冰厚度(导则)", + "项目参数": "10", + "项目参数变量": "覆冰厚度", + "单位": "mm" + }, + { + "序号": "3.11", + "项目内容": "雷电小时(导则)", + "项目参数变量": "雷电小时", + "单位": "小时/年" + } + ] + }, + { + "序号": "4", + "项目内容": "主要材料价格", + "项目参数变量": "主要材料价格", + "children": [ + { + "序号": "4.1", + "项目内容": "塔材", + "项目参数变量": "塔材", + "单位": "元/t" + }, + { + "序号": "4.2", + "项目内容": "角钢塔材", + "项目参数变量": "角钢塔材", + "单位": "元/t" + }, + { + "序号": "4.3", + "项目内容": "钢管塔材", + "项目参数变量": "钢管塔材", + "单位": "元/t" + }, + { + "序号": "4.4", + "项目内容": "瓷绝缘子", + "项目参数变量": "瓷绝缘子", + "单位": "元/片" + }, + { + "序号": "4.5", + "项目内容": "合成绝缘子", + "项目参数变量": "合成绝缘子", + "单位": "元/串" + }, + { + "序号": "4.6", + "项目内容": "基础钢材", + "项目参数变量": "基础钢材", + "单位": "元/t" + }, + { + "序号": "4.7", + "项目内容": "玻璃绝缘子", + "项目参数变量": "玻璃绝缘子", + "单位": "元/片" + }, + { + "序号": "4.8", + "项目内容": "OPGW", + "项目参数变量": "OPGW芯", + "单位": "元/km" + }, + { + "序号": "4.9", + "项目内容": "挂线金具", + "项目参数变量": "挂线金具", + "单位": "元/t" + }, + { + "序号": "4.10", + "项目内容": "水泥", + "项目参数变量": "水泥", + "单位": "元/t" + } + ] + } + ] + }, + "projectId": "5f8aecc485961c9928f42786135902eb", + "stageStatus": "0" +} \ No newline at end of file diff --git a/dataset/主网架空线路造价分析指标.xml b/dataset/主网架空线路造价分析指标.xml new file mode 100644 index 0000000..c7c3b99 Binary files /dev/null and b/dataset/主网架空线路造价分析指标.xml differ diff --git a/main.py b/main.py index 591ce0b..3012a3c 100644 --- a/main.py +++ b/main.py @@ -1,64 +1,53 @@ +# main.py + +import os import logging +from datetime import datetime +import logging +import os import asyncio import os +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + logging.basicConfig( - level=logging.DEBUG, # 生产环境可改为 INFO 或 WARNING + level=logging.DEBUG, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", - handlers=[logging.FileHandler("BoweiAgent.log", encoding="utf-8"), logging.StreamHandler()], + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], ) -logger = logging.getLogger("BoweiAgent") +logger = logging.getLogger(current_file) -import logging +def setup_logger(logger_name): + """ + 设置指定名称的logger,将其级别设置为WARNING并禁用传播 + :param logger_name: logger的名称 + """ + logger = logging.getLogger(logger_name) + logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 + logger.propagate = False # 可选:禁用传播(防止被根logger处理) + return logger -# 获取logger并设置级别 -httpx_logger = logging.getLogger("httpx") -httpx_logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 -# 可选:禁用传播(防止被根logger处理) -httpx_logger.propagate = False - -# 获取logger并设置级别 -openai_logger = logging.getLogger("openai") -openai_logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 -# 可选:禁用传播(防止被根logger处理) -openai_logger.propagate = False - -# 获取logger并设置级别 -langsmith_logger = logging.getLogger("langsmith.client") -langsmith_logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 -# 可选:禁用传播(防止被根logger处理) -langsmith_logger.propagate = False - -# 获取logger并设置级别 -neo4j_logger = logging.getLogger("neo4j") -neo4j_logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 -# 可选:禁用传播(防止被根logger处理) -neo4j_logger.propagate = False - -# 获取logger并设置级别 -urllib3_logger = logging.getLogger("urllib3") -urllib3_logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 -# 可选:禁用传播(防止被根logger处理) -urllib3_logger.propagate = False - -# 获取logger并设置级别 -httpcore_logger = logging.getLogger("httpcore") -httpcore_logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 -# 可选:禁用传播(防止被根logger处理) -httpcore_logger.propagate = False +logger_names = ["httpx", "openai", "langsmith.client", "neo4j", "urllib3", "httpcore"] +for name in logger_names: + setup_logger(name) from src.config import Config from src.document_loader import load_file -from src.llm_client import LLMClient +from src.multi_llm_client import MultiAPIKeyChatOpenAI from src.prompt_manager import PromptManager from src.code_executor import CodeExecutor from src.dialog_manager import DialogManager from src.neo4j_raw_retriever import Neo4jRawRetriever from src.embedding_client import EmbeddingClient -from project import ProjectBuilder, ProjectToolkit -from project_implementation import ProjectToolkitNeo4j +from src.project import ProjectBuilder, ProjectToolkit +from src.project_implementation import ProjectToolkitNeo4j @@ -73,8 +62,8 @@ def main(): business_structure = load_file(config.business_object_structure_path) bowei_api_docs = load_file(config.bowei_api_docs_path) - llm_client = LLMClient(config.openai) - llm_client_coder = LLMClient(config.openai_coder) + llm_client = MultiAPIKeyChatOpenAI(config.openai) + llm_client_coder = MultiAPIKeyChatOpenAI(config.openai_coder) prompt_manager = PromptManager() neo4j_conf = config.neo4j_conf @@ -102,7 +91,7 @@ def main(): pre_input_question = '查找名称中包含"工程"的项目划分项,并返回单位。' try: - asyncio.run(dialog_manager.run_async(pre_input=pre_input_question)) + asyncio.run(dialog_manager.run_async(pre_input=pre_input_question)) finally: neo4j_driver.close() diff --git a/project_implementation.py b/project_implementation.py deleted file mode 100644 index 5877dd9..0000000 --- a/project_implementation.py +++ /dev/null @@ -1,3061 +0,0 @@ -from neo4j import GraphDatabase -from project import * -import atexit -from typing import Tuple, List, Dict, Any, Optional -import logging -from src.config import Config - -logger = logging.getLogger("project_implementation") -config = Config() - - -class ProjectToolkitNeo4j(ProjectToolkit): - """ - 基于Neo4j数据库的项目类实现 - """ - - def __init__(self, neo4j_driver): - logger.info("开始初始化Neo4j连接") - """ - 初始化Neo4j连接 - - Args: - neo4j_driver: Neo4j驱动实例,必须提供 - """ - if neo4j_driver is None: - raise ValueError("必须提供Neo4j驱动实例") - - super().__init__() - - # 保存驱动实例 - self.driver = neo4j_driver - self.external_driver = True # 标记为外部驱动,不在close时关闭 - self.session = self.driver.session() - - # 初始化其他必要的数据结构 - self.material_equipment_dict = {} # 材机字典,键为ID - self.fee_templates = {} # 取费表模板字典,键为ID - self.fee_schedules = {} # 费用表字典,键为ID - self.project_properties = {} # 工程属性字典 - logger.info("Neo4j连接初始化完成") - - def close(self): - logger.info("开始关闭数据库连接") - """ - 关闭数据库连接 - """ - if self.session: - self.session.close() - # 仅在非外部驱动的情况下关闭driver - if self.driver and not self.external_driver: - self.driver.close() - logger.info("数据库连接已关闭") - - def debug_path(self, path): - logger.info(f"开始调试路径: {path}") - path_parts = path.split("/") - print(f"调试路径: {path}") - - # 检查每一级路径是否存在 - for i in range(len(path_parts)): - partial_path = "/".join(path_parts[: i + 1]) - query = """ - MATCH (n) - WHERE n.name = $name - RETURN n.name as name - """ - result = self.session.run(query, name=path_parts[i]) - record = result.single() - exists = "存在" if record else "不存在" - print(f" 节点 '{path_parts[i]}' {exists}") - logger.info(f"路径 {path} 调试完成") - - # 通用节点查询方法 - def get_node_by_path(self, path, node_labels=None): - logger.info(f"开始通过路径 {path} 获取节点对象") - """ - 通过路径获取节点对象 - - Args: - path (str): 以'/'分隔的多级节点路径 - node_labels (list): 节点标签列表,用于过滤结果 - - Returns: - dict|None: 节点数据,如果路径不存在返回None - """ - if not path: - logger.warning("输入路径为空,无法获取节点对象") - return None - - # 分割路径为各个部分 - path_parts = path.split("/") - - # 构建查询 - if len(path_parts) == 1: - # 只有一级路径,直接查询 - if node_labels: - labels_str = ":" + "|:".join(node_labels) - query = f""" - MATCH (n{labels_str}) - WHERE n.name = $name - RETURN n LIMIT 1 - """ - else: - query = """ - MATCH (n) - WHERE n.name = $name - RETURN n LIMIT 1 - """ - params = {"name": path_parts[0]} - else: - # 多级路径,构建路径查询 - last_part = path_parts[-1] - if node_labels: - labels_str = ":" + "|".join(node_labels) - query = f""" - MATCH path = (root)-[*]->(target{labels_str}) - WHERE target.name = $last_part - RETURN target as n LIMIT 1 - """ - else: - query = """ - MATCH path = (root)-[*]->(target) - WHERE target.name = $last_part - RETURN target as n LIMIT 1 - """ - params = {"last_part": last_part} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - logger.warning(f"路径 {path} 不存在,未找到节点对象") - return None - - logger.info(f"成功通过路径 {path} 获取节点对象") - return record["n"] - except Exception as e: - logger.error(f"获取节点对象时出错: {e}") - print(f"获取节点对象时出错: {e}") - return None - - # 项目划分查询方法 - # 项目划分查询方法 - def get_division_item_by_path(self, path) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 通过路径获取项目划分对象 - - Args: - path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回的项目划分对象数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表,如果未找到节点,则包含父节点下所有ProjectDivisionItem节点 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 获取节点数据 - node_data = self.get_node_by_path(path, ["ProjectDivisionItem"]) - - if not node_data: - status = "error" - error = f"找不到路径: {path} 上的ProjectDivisionItem节点" - - # 提取父路径 - path_parts = path.split("/") - if len(path_parts) > 1: - # 去掉最后一个部分,得到父路径 - parent_path = "/".join(path_parts[:-1]) - parent_name = path_parts[-2] # 父节点名称 - - # 获取父节点 - parent_node = self.get_node_by_path(parent_path) - - if parent_node: - # 查询父节点下所有类型为ProjectDivisionItem的子节点 - query = """ - MATCH (p)-[*1..1]->(q:ProjectDivisionItem) - WHERE p.name = $parent_name - RETURN q.name as name - """ - params = {"parent_name": parent_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询父节点下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 创建项目划分对象并填充属性 - item = ProjectDivisionItem() - for key, value in node_data.items(): - if hasattr(item, key): - setattr(item, key, value) - - # 将对象的属性转换为字典 - for key, value in vars(item).items(): - if not key.startswith("_"): # 排除私有属性 - data[key] = value - - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - def get_division_node_by_parent_and_name( - self, parent_path, partial_name - ) -> Tuple[str, List[Dict[str, Any]], str, List[Any]]: - """ - 通过父节点路径和模糊节点名称获取项目划分对象,包括子节点 - - 执行两步查询: - 1. 找到对应路径的父节点 - 2. 在父节点下查找名称中包含模糊名称的节点 - - Args: - parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 - partial_name (str): 目标节点的模糊或不完整名称 - - Returns: - Tuple[str, List[Dict[str, Any]], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (List[Dict[str, Any]]): 成功时返回的数据列表 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - # 初始化返回结果 - status = "success" - data = [] - error = "" - helper_info = [] - - # 检查部分名称是否为空 - if not partial_name: - status = "error" - error = "节点名称不能为空" - return status, data, error, helper_info - - try: - # 第一步:找到父节点 - parent_node_data = self.get_node_by_path(parent_path) - - # 如果找不到父节点 - if not parent_node_data: - status = "error" - error = f"找不到父节点路径: {parent_path}" - - # 提取父路径的父节点 - path_parts = parent_path.split("/") - if len(path_parts) > 1: - # 去掉最后一个部分,得到父路径的父路径 - grandparent_path = "/".join(path_parts[:-1]) - grandparent_name = path_parts[-2] if len(path_parts) >= 2 else "" - - # 查询父路径的父节点下所有类型为ProjectDivisionItem的节点,不指定关系类型 - query = """ - MATCH (p)-[*1..1]->(q:ProjectDivisionItem) - WHERE p.name = $grandparent_name - RETURN q.name as name - """ - params = {"grandparent_name": grandparent_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - - # 如果没有找到任何节点,尝试更宽泛的查询 - if not helper_info: - broader_query = """ - MATCH (p {name: $grandparent_name})-[*1..2]->(q:ProjectDivisionItem) - RETURN q.name as name LIMIT 50 - """ - broader_result = self.session.run(broader_query, **params) - for record in broader_result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - print(f"查询辅助信息时出错: {str(e)}") - helper_info = [f"查询辅助信息时出错: {str(e)}"] - - return status, data, error, helper_info - - # 获取父节点名称 - parent_name = parent_node_data.get("name") - if not parent_name: - status = "error" - error = "父节点数据中没有name字段" - return status, data, error, helper_info - - parent_name = parent_node_data.get("name", "") - - # 第二步:改用父节点名称进行查询 - query = """ - MATCH (p {name: $parent_name})-[*1..1]-(n:ProjectDivisionItem) - WHERE toLower(n.name) CONTAINS toLower($partial_name) - RETURN n LIMIT 50 - """ - params = {"parent_name": parent_name, "partial_name": partial_name.strip()} - - # print(f"调试参数: parent_name='{parent_name}', partial_name='{partial_name}'") - result = self.session.run(query, **params) - records = list(result) - # print(f"调试返回: 找到{len(records)}条记录") - - # 处理查询结果 - items = [] - for record in records: - node_data = record["n"] - item = ProjectDivisionItem() - for key, value in node_data.items(): - if hasattr(item, key): - setattr(item, key, value) - items.append(vars(item)) - - # 如果没有找到匹配的节点 - if not items: - status = "error" - error = f"在父节点 '{parent_name}' 下找不到名称包含 '{partial_name}' 的节点" - - # 查询父节点下所有类型为ProjectDivisionItem的节点作为辅助信息,不指定关系类型 - helper_query = """ - MATCH (p)-[*1..1]->(q:ProjectDivisionItem) - WHERE p.id = $parent_id - RETURN q.name as name - """ - helper_params = {"parent_name": parent_name} - - try: - helper_result = self.session.run(helper_query, **helper_params) - for record in helper_result: - if record["name"]: - helper_info.append(record["name"]) - - # 如果没有找到任何节点,尝试更宽泛的查询 - if not helper_info: - broader_query = """ - MATCH (p)-[*1..2]->(q:ProjectDivisionItem) - WHERE p.id = $parent_id - RETURN q.name as name LIMIT 50 - """ - broader_result = self.session.run(broader_query, **helper_params) - for record in broader_result: - if record["name"]: - helper_info.append(record["name"]) - - # 如果仍然没有找到,尝试使用名称而不是ID - if not helper_info: - name_query = """ - MATCH (p {name: $parent_name})-[*1..2]->(q:ProjectDivisionItem) - RETURN q.name as name LIMIT 50 - """ - name_params = {"parent_name": parent_name} - name_result = self.session.run(name_query, **name_params) - for record in name_result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - print(f"查询辅助信息时出错: {str(e)}") - helper_info = [f"查询辅助信息时出错: {str(e)}"] - - return status, data, error, helper_info - - # 成功找到匹配节点 - data = items - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - def get_division_by_name(self, name_part) -> Tuple[str, List[Dict[str, Any]], str, List[Any]]: - """ - 直接查找节点类型为ProjectDivisionItem且name字段包含输入名称的节点 - - Args: - name_part (str): 节点名称的部分内容 - - Returns: - Tuple[str, List[Dict[str, Any]], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (List[Dict[str, Any]]): 成功时返回的数据列表 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - # 初始化返回结果 - status = "success" - data = [] - error = "" - helper_info = [] - - # 检查输入名称是否为空 - if not name_part or name_part.strip() == "": - status = "error" - error = "输入的名称部分不能为空" - return status, data, error, helper_info - - try: - # 直接查询所有类型为ProjectDivisionItem且name包含输入名称的节点 - query = """ - MATCH (n:ProjectDivisionItem) - WHERE toLower(n.name) CONTAINS toLower($name_part) - RETURN n LIMIT 50 - """ - params = {"name_part": name_part.strip()} - - result = self.session.run(query, parameters=params) - records = list(result) - - if not records: - status = "error" - error = f"找不到名称包含 '{name_part}' 的ProjectDivisionItem节点" - - # 提供一些可能相近的节点名称作为辅助信息 - broader_query = """ - MATCH (n:ProjectDivisionItem) - RETURN n.name AS name LIMIT 20 - """ - broader_result = self.session.run(broader_query) - for record in broader_result: - if record["name"]: - helper_info.append(record["name"]) - - return status, data, error, helper_info - - # 处理查询结果 - items = [] - for record in records: - node_data = record["n"] - item = ProjectDivisionItem() - for key, value in node_data.items(): - if hasattr(item, key): - setattr(item, key, value) - - # 获取节点的完整路径作为附加信息 - node_path_query = """ - MATCH path = (root)-[*]->(target:ProjectDivisionItem) - WHERE id(target) = $node_id - WITH [node in nodes(path) | node.name] AS path_names - RETURN path_names - """ - path_result = self.session.run(node_path_query, parameters={"node_id": node_data.id}) - path_record = path_result.single() - - node_dict = vars(item) - if path_record: - node_dict["完整路径"] = "/".join([name for name in path_record["path_names"] if name]) - - items.append(node_dict) - - data = items - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - # 工程量查询方法 - def get_quantities_by_paths(self, paths_str) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 获取指定项目路径下的工程量对象 - - Args: - paths_str (str): 以'/'分隔的多级节点路径 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: - - status: 'success'或'error' - - data: 成功时返回的节点数据字典,失败时为{} - - error: 错误信息,成功时为'' - - helper_info: 辅助信息列表(当目标节点不存在时返回父节点下的所有ProjectQuantity节点名称) - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - if not paths_str: - status = "error" - error = "路径不能为空" - return status, data, error, helper_info - - try: - # 使用通用方法获取节点,考虑所有可能的工程量类型 - node_data = self.get_node_by_path(paths_str, ["ProjectQuantity", "Quota", "MainMaterial", "Equipment"]) - - if node_data: - # 根据节点标签或类型属性创建对应类型的对象 - quantity = self._create_quantity_object(node_data) - - # 填充属性 - for key, value in node_data.items(): - if hasattr(quantity, key): - setattr(quantity, key, value) - - # 将对象转为字典 - data = vars(quantity) - return status, data, error, helper_info - - # 如果找不到节点,尝试获取父节点下的所有ProjectQuantity节点作为辅助信息 - path_parts = paths_str.split("/") - if len(path_parts) > 1: - parent_path = "/".join(path_parts[:-1]) - target_name = path_parts[-1] - - # 获取父节点 - parent_node_data = self.get_node_by_path(parent_path, ["ProjectDivisionItem"]) - - if parent_node_data: - # 查询父节点下的所有符合条件的节点 - query = """ - MATCH (p)-[*1..1]->(n) - WHERE p.name = $parent_name AND - any(label IN labels(n) WHERE label IN $allowed_labels) - RETURN n.name as name, labels(n) as labels - """ - params = { - "parent_name": parent_node_data.get("name", ""), - "allowed_labels": ["ProjectQuantity", "Quota", "MainMaterial", "Equipment"], - } - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append({record["name"]}) - except Exception as e: - print(f"查询辅助信息时出错: {str(e)}") - helper_info = [f"查询辅助信息时出错: {str(e)}"] - - status = "error" - error = f"找不到路径: {paths_str}" - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - def get_quantities_node_by_parent_and_code( - self, parent_path, quantity_type=None, code=None - ) -> Tuple[str, List[Dict[str, Any]], str, List[Any]]: - """ - 通过父节点路径和编码获取工程量对象(定额、主材或设备),包括子节点 - - 执行三步查询: - 1. 找到对应路径的父节点 - 2. 找到父节点下多级子节点中节点类型为参数中节点类型的所有节点 - 3. 在找到的节点中查找编码与传入编码匹配的节点并返回 - - Args: - parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 - quantity_type (str): 工程量类型('定额'、'主材'、'设备'或None表示所有类型) - code (str): 工程量编码,以'/'分隔的多个编码 - - Returns: - Tuple[str, List[Dict[str, Any]], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (List[Dict[str, Any]]): 成功时返回的数据列表 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - # 初始化返回结果 - status = "success" - data = [] - error = "" - helper_info = [] - - if not code: - status = "error" - error = "编码不能为空" - return status, data, error, helper_info - - # 验证类型参数是否有效 - valid_types = ["定额", "主材", "设备", None] - if quantity_type not in valid_types: - status = "error" - error = f"无效的工程量类型: '{quantity_type}'" - helper_info = valid_types - return status, data, error, helper_info - - try: - # 步骤1: 找到对应路径的父节点 - parent_node = self.get_node_by_path(parent_path) - if not parent_node: - status = "error" - error = f"找不到父节点路径: {parent_path}" - - # 尝试提供辅助信息 - 路径的各部分是否存在 - path_parts = parent_path.split("/") - existing_parts = [] - for i in range(len(path_parts)): - partial_path = "/".join(path_parts[: i + 1]) - if self.get_node_by_path(partial_path): - existing_parts.append(partial_path) - helper_info = existing_parts - return status, data, error, helper_info - - # 提取父节点名称用于后续查询 - parent_name = parent_node.get("name", "") - - # 根据工程量类型确定类型条件 - type_condition = "" - - if quantity_type == "定额": - type_condition = "(q:ProjectQuantity:Quota OR q.类型 = '0')" - elif quantity_type == "主材": - type_condition = "(q:ProjectQuantity:MainMaterial OR q.类型 = '1')" - elif quantity_type == "设备": - type_condition = "(q:ProjectQuantity:Equipment OR q.类型 = '5')" - else: - type_condition = "q:ProjectQuantity" - - # 步骤2: 查找父节点下所有的指定类型的子节点 - child_query = f""" - MATCH (p)-[*1..10]->(q) - WHERE p.name = $parent_name AND {type_condition} - RETURN q - """ - child_params = {"parent_name": parent_name} - - child_result = self.session.run(child_query, **child_params) - child_nodes = [record["q"] for record in child_result] - - if not child_nodes: - status = "error" - error = f"在父节点 '{parent_name}' 下找不到类型为 '{quantity_type}' 的节点" - - # 尝试提供辅助信息 - 父节点下有哪些节点名称 - helper_query = """ - MATCH (p)-[*1..10]->(q) - WHERE p.name = $parent_name - RETURN DISTINCT q.name as node_name - LIMIT 20 - """ - helper_result = self.session.run(helper_query, **child_params) - helper_info = [record["node_name"] for record in helper_result if record["node_name"]] - return status, data, error, helper_info - - # 步骤3: 查找编码匹配的节点 - code_conditions = [] - code_parts = code.split("/") - - for code_part in code_parts: - if code_part.strip(): - code_conditions.append(code_part.strip()) - - if not code_conditions: - status = "error" - error = "提供的编码为空" - return status, data, error, helper_info - - # 在 child_nodes 中直接查找编码匹配的节点 - matching_nodes = [] - - for node in child_nodes: - node_code = node.get("编码", "") - if any(code_part in str(node_code) for code_part in code_conditions): - matching_nodes.append(node) - - if not matching_nodes: - status = "error" - error = f"在父节点 '{parent_name}' 下找不到编码匹配的节点" - - # 尝试提供辅助信息 - 所有指定类型的子节点的编码 - helper_info = [node.get("编码") for node in child_nodes if node.get("编码")] - return status, data, error, helper_info - - # 处理匹配的节点,转换为字典格式 - result_data = [] - for node in matching_nodes: - quantity = self._create_quantity_object(node, quantity_type) - - for key, value in node.items(): - if hasattr(quantity, key): - setattr(quantity, key, value) - - attrs = {} - for key, value in vars(quantity).items(): - if not key.startswith("_"): # 排除私有属性 - attrs[key] = value - - result_data.append(attrs) - - data = result_data - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - def get_quantities_node_by_parent_and_name( - self, parent_path, partial_name, quantity_type=None - ) -> Tuple[str, List[Dict[str, Any]], str, List[Any]]: - """ - 通过父节点路径、模糊节点名称和类型获取工程量对象(主材或者设备),包括子节点 - - 执行三步查询: - 1. 找到对应路径的父节点 - 2. 找到父节点下多级子节点中节点类型为参数中节点类型的所有节点 - 3. 在找到的节点中找到名称中包含节点模糊名称的节点返回 - - Args: - parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 - partial_name (str): 目标节点的模糊或不完整名称 - quantity_type (str): 工程量类型('定额'、'主材'、'设备'或None表示所有类型) - - Returns: - Tuple[str, List[Dict[str, Any]], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (List[Dict[str, Any]]): 成功时返回的数据列表 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - # 初始化返回结果 - status = "success" - data = [] - error = "" - helper_info = [] - - if not partial_name: - status = "error" - error = "节点名称不能为空" - return status, data, error, helper_info - - # 验证类型参数是否有效 - valid_types = ["定额", "主材", "设备", None] - if quantity_type not in valid_types: - status = "error" - error = f"无效的工程量类型: '{quantity_type}'" - helper_info = valid_types - return status, data, error, helper_info - - try: - # 步骤1: 找到对应路径的父节点 - parent_node = self.get_node_by_path(parent_path) - if not parent_node: - status = "error" - error = f"找不到父节点路径: {parent_path}" - # 尝试提供辅助信息 - 路径的各部分是否存在 - path_parts = parent_path.split("/") - existing_parts = [] - for i in range(len(path_parts)): - partial_path = "/".join(path_parts[: i + 1]) - if self.get_node_by_path(partial_path): - existing_parts.append(partial_path) - helper_info = existing_parts - return status, data, error, helper_info - - # 从父节点中提取名称,用于后续查询 - parent_name = parent_node.get("name", "") - - # 根据工程量类型确定类型条件,不使用标签过滤 - type_condition = "" - - if quantity_type == "定额": - # 定额类型可能是 ProjectQuantity+Quota 或者 类型='0' - type_condition = "(q:ProjectQuantity:Quota OR q.类型 = '0')" - elif quantity_type == "主材": - # 主材类型可能是 ProjectQuantity+MainMaterial 或者 类型='1' - type_condition = "(q:ProjectQuantity:MainMaterial OR q.类型 = '1')" - elif quantity_type == "设备": - # 设备类型可能是 ProjectQuantity+Equipment 或者 类型='5' - type_condition = "(q:ProjectQuantity:Equipment OR q.类型 = '5')" - else: - # 如果没有指定类型,则查询所有ProjectQuantity节点 - type_condition = "q:ProjectQuantity" - - # 步骤2: 找到父节点下所有的子节点,类型为指定类型的节点 - # 使用父节点名称进行查询,不指定具体的关系类型 - child_query = f""" - MATCH (p)-[*1..10]->(q) - WHERE p.name = $parent_name AND {type_condition} - RETURN q - """ - child_params = {"parent_name": parent_name} - - child_result = self.session.run(child_query, **child_params) - child_nodes = [record["q"] for record in child_result] - - if not child_nodes: - # 如果没有找到节点,尝试直接使用父节点路径的最后一部分进行查询 - path_parts = parent_path.split("/") - last_part = path_parts[-1] if path_parts else "" - - fallback_query = f""" - MATCH (p)-[*1..10]->(q) - WHERE p.name CONTAINS $last_part AND {type_condition} - RETURN q LIMIT 100 - """ - fallback_params = {"last_part": last_part} - - fallback_result = self.session.run(fallback_query, **fallback_params) - child_nodes = [record["q"] for record in fallback_result] - - if not child_nodes: - status = "error" - error = f"在父节点 '{parent_name}' 下找不到类型为 '{quantity_type}' 的节点" - - # 尝试提供辅助信息 - 父节点下有哪些类型的节点 - helper_query = """ - MATCH (p)-[*1..10]->(q) - WHERE p.name = $parent_name - RETURN DISTINCT labels(q) as node_labels, q.类型 as node_type - LIMIT 20 - """ - helper_params = {"parent_name": parent_name} - - helper_result = self.session.run(helper_query, **helper_params) - helper_data = [] - for record in helper_result: - labels = record["node_labels"] if record["node_labels"] else [] - node_type = record["node_type"] if record["node_type"] else "未知" - helper_data.append(f"标签: {labels}, 类型: {node_type}") - - helper_info = helper_data - return status, data, error, helper_info - - # 步骤3: 在找到的节点中找到名称中包含节点模糊名称的节点 - matching_nodes = [] - available_nodes = [] # 用于存储所有可用节点的名称,作为辅助信息 - - for node in child_nodes: - node_name = node.get("name", "") - # 记录所有节点名称作为辅助信息 - if node_name: - available_nodes.append(node_name) - - if partial_name in str(node_name): - matching_nodes.append(node) - - if not matching_nodes: - # 如果没有找到匹配的节点,尝试直接查询 - direct_query = f""" - MATCH (q) - WHERE q.name CONTAINS $partial_name AND {type_condition} - RETURN q LIMIT 20 - """ - direct_params = {"partial_name": partial_name} - - direct_result = self.session.run(direct_query, **direct_params) - matching_nodes = [record["q"] for record in direct_result] - - if not matching_nodes: - status = "error" - error = ( - f"在父节点 '{parent_name}' 下找不到类型为 '{quantity_type}' 且名称包含 '{partial_name}' 的节点" - ) - # 提供辅助信息 - 该路径下所有可用的节点名称 - helper_info = available_nodes - return status, data, error, helper_info - - # 处理匹配的节点,将它们转换为对象 - result_data = [] - for matching_node in matching_nodes: - # 创建对应类型的对象 - quantity = self._create_quantity_object(matching_node, quantity_type) - - # 填充属性 - for key, value in matching_node.items(): - if hasattr(quantity, key): - setattr(quantity, key, value) - - # 将对象的属性转换为字典 - attrs = {} - for key, value in vars(quantity).items(): - if not key.startswith("_"): # 排除私有属性 - attrs[key] = value - - result_data.append(attrs) - - # 成功找到匹配节点 - data = result_data - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - # 辅助方法,用于根据节点数据创建对应类型的工程量对象 - def _create_quantity_object(self, node_data, quantity_type=None): - """ - 根据节点数据创建对应类型的工程量对象 - - Args: - node_data (dict): 节点数据 - quantity_type (str): 工程量类型('定额'、'主材'、'设备'或None) - - Returns: - ProjectQuantity: 创建的工程量对象 - """ - # 如果指定了类型,直接创建对应类型的对象 - if quantity_type == "定额": - return Ration() - elif quantity_type == "主材": - return Material() - elif quantity_type == "设备": - return Equipment() - - # 如果没有指定类型,尝试通过节点属性或标签判断 - if "类型" in node_data: - if node_data["类型"] == "0": - return Ration() - elif node_data["类型"] == "1": - return Material() - elif node_data["类型"] == "5": - return Equipment() - - # 通过标签判断 - labels = list(node_data.labels) if hasattr(node_data, "labels") else [] - if "Quota" in labels: - return Ration() - elif "MainMaterial" in labels: - return Material() - elif "Equipment" in labels: - return Equipment() - - # 默认返回基类对象 - return ProjectQuantity() - - # 材机查询方法实现 - def get_material_equipment_by_path(self, path: str) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 通过路径获取材机对象(MaterialOrEquipment 类型节点) - - Args: - path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回的节点属性数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 如果未找到目标节点,则包含父节点下所有 MaterialOrEquipment 节点名称 - - 否则为空 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 获取目标节点 - node_data = self.get_node_by_path(path) - - if not node_data: - status = "error" - error = f"找不到路径: {path} 上的 MaterialOrEquipment 节点" - - # 提取父路径 - path_parts = path.split("/") - if len(path_parts) > 1: - parent_path = "/".join(path_parts[:-1]) # 父节点路径 - parent_name = path_parts[-2] # 父节点名称 - - # 获取父节点 - parent_node = self.get_node_by_path(parent_path) - if parent_node: - # 查询父节点下所有类型为 MaterialOrEquipment 的子节点名称 - query = """ - MATCH (p)-[*1..1]->(m:MaterialOrEquipment) - WHERE p.name = $parent_name - RETURN m.name AS name - """ - params = {"parent_name": parent_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询父节点下的材机子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 将节点属性转换为字典并过滤掉私有字段 - for key, value in node_data.items(): - if not key.startswith("_"): - data[key] = value - - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - def get_material_equipment_by_parent_and_code(self, parent_path, code): - """ - 通过父节点路径和编码获取材机对象 - - Args: - parent_path (str): 父节点的部分路径,以'/'分隔的多级节点路径 - code (str): 目标节点的编码属性值 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回的节点属性数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 如果未找到目标节点,则包含父节点下所有 MaterialOrEquipment 节点编码 - """ - status = "success" - data = {} - error = "" - helper_info = [] - - try: - if not parent_path or not code: - status = "error" - error = "父节点路径或要查找的编码不能为空" - return status, data, error, helper_info - - # 获取父节点路径的最后一部分 - path_parts = parent_path.split("/") - last_part = path_parts[-1] - - # 构建Cypher查询,查找包含指定路径名称的节点,然后找到其子孙节点中编码匹配的MaterialOrEquipment节点 - # 使用任意类型的关系 [*0..10],不指定关系类型 - query = """ - MATCH (p)-[*0..10]->(m:MaterialOrEquipment) - WHERE p.name CONTAINS $parent_name AND m.编码 = $code - RETURN m LIMIT 5 - """ - params = {"parent_name": last_part, "code": code} - - result = self.session.run(query, **params) - matched_nodes = [] - - for record in result: - node = record["m"] - properties = dict(node.items()) - matched_nodes.append(properties) - - if not matched_nodes: - status = "error" - error = f"在路径包含 '{parent_path}' 的节点下没有找到编码为 '{code}' 的 MaterialOrEquipment 节点" - - # 查询相似路径下的MaterialOrEquipment节点的编码作为辅助信息 - helper_query = """ - MATCH (p)-[*0..10]->(m:MaterialOrEquipment) - WHERE p.name CONTAINS $parent_name - RETURN m.编码 AS code, m.name AS name - LIMIT 5 - """ - - try: - helper_result = self.session.run(helper_query, parent_name=last_part) - for record in helper_result: - if record["code"] and record["name"]: - helper_info.append(f"{record['code']} - {record['name']}") - except Exception as e: - helper_info = [f"查询相似编码失败: {str(e)}"] - - return status, data, error, helper_info - - # 成功找到,返回第一个节点的数据 - data = matched_nodes[0] - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - # 辅助方法,用于创建材机对象并填充属性 - def _create_material_object(self, node_data): - """ - 根据节点数据创建材机对象并填充属性 - - Args: - node_data (dict): 节点数据 - - Returns: - MaterialOrEquipment: 创建的材机对象 - """ - material = MaterialOrEquipment() - - # 填充属性 - for key, value in node_data.items(): - if hasattr(material, key): - setattr(material, key, value) - - return material - - # 取费表模板查询方法实现 - def get_fee_template_by_path(self, path: str) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 通过路径获取取费表模板节点 - - Args: - path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 - 例如:工程数据/取费表模板/余物清理/线路取费表(余物清理)/直接费 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回的节点属性数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 如果未找到目标节点,则包含父节点下所有 FeeCollection 节点名称 - - 否则为空 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 获取目标节点 - node_data = self.get_node_by_path(path) - - if not node_data: - status = "error" - error = f"找不到路径: {path} 上的节点" - - # 提取父路径 - path_parts = path.split("/") - if len(path_parts) > 1: - parent_path = "/".join(path_parts[:-1]) # 父节点路径 - parent_name = path_parts[-2] # 父节点名称 - - # 获取父节点 - parent_node = self.get_node_by_path(parent_path) - if parent_node: - # 查询父节点下所有类型为 FeeCollection 的子节点名称 - query = """ - MATCH (p)-[*1..1]->(f:FeeCollection) - WHERE p.name = $parent_name - RETURN f.name AS name - """ - params = {"parent_name": parent_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询父节点下的FeeCollection子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 将节点属性转换为字典并过滤掉私有字段 - for key, value in node_data.items(): - if not key.startswith("_"): - data[key] = value - - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - def get_fee_template_by_parent_and_name( - self, parent_path: str, node_name: str - ) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 通过父节点路径和节点名称获取取费表模板节点 - - Args: - parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 - 例如:工程数据/取费表模板/余物清理/线路取费表(余物清理) - node_name (str): 目标节点的名称,例如:直接费 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回的节点属性数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 如果未找到父节点,则包含父节点的父节点下所有节点名称 - - 如果未找到目标节点,则包含父节点下所有 FeeCollection 节点名称 - - 否则为空 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 第一段:查找父节点 - parent_node_data = self.get_node_by_path(parent_path) - - if not parent_node_data: - status = "error" - error = f"找不到父节点路径: {parent_path}" - - # 提取父节点的父路径 - parent_path_parts = parent_path.split("/") - if len(parent_path_parts) > 1: - grandparent_path = "/".join(parent_path_parts[:-1]) # 父节点的父路径 - grandparent_name = parent_path_parts[-2] # 父节点的父节点名称 - - # 获取父节点的父节点 - grandparent_node = self.get_node_by_path(grandparent_path) - if grandparent_node: - # 查询父节点的父节点下所有子节点名称 - query = """ - MATCH (gp)-[*1..1]->(n) - WHERE gp.name = $grandparent_name - RETURN n.name AS name - """ - params = {"grandparent_name": grandparent_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询父节点的父节点下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 第二段:在父节点下查找目标节点 - parent_node_name = parent_path.split("/")[-1] # 父节点名称 - - # 查询父节点下指定名称的节点 - query = """ - MATCH (p)-[*1..1]->(n) - WHERE p.name = $parent_name AND n.name = $node_name - RETURN n - """ - params = {"parent_name": parent_node_name, "node_name": node_name} - - try: - result = self.session.run(query, **params) - target_node = None - - for record in result: - target_node = record["n"] - break - - if not target_node: - status = "error" - error = f"在父节点 {parent_node_name} 下找不到名称为 {node_name} 的节点" - - # 查询父节点下所有类型为 FeeCollection 的子节点名称 - query = """ - MATCH (p)-[*1..1]->(f:FeeCollection) - WHERE p.name = $parent_name - RETURN f.name AS name - """ - params = {"parent_name": parent_node_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询父节点下的FeeCollection子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 将目标节点属性转换为字典并过滤掉私有字段 - for key, value in target_node.items(): - if not key.startswith("_"): - data[key] = value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询目标节点时出错: {str(e)}" - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - # 辅助方法,用于创建取费表模板对象并填充属性 - def _create_fee_template_object(self, node_data): - """ - 根据节点数据创建取费表模板对象并填充属性 - - Args: - node_data (dict): 节点数据 - - Returns: - FeeTableTemplateItem: 创建的取费表模板对象 - """ - template = FeeTableTemplateItem() - - # 填充属性 - for key, value in node_data.items(): - if hasattr(template, key): - setattr(template, key, value) - - # 更新缓存 - if hasattr(template, "OutlayID") and template.OutlayID: - self.fee_templates[template.OutlayID] = template - - return template - - # 费用表查询方法实现 - def get_fee_schedule_on_auxiliary_expense_table( - self, table_name: str, fee_name: str, fee_attribute: str - ) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 在辅助费用表中查找费用 - - Args: - table_name (str): 费用表名称 - fee_name (str): 要查找的费用名称(可能在多级子节点中) - fee_attribute (str): 费用值属性名 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 第一步失败:返回"工程数据"节点下所有子节点名称 - - 第二步失败:返回费用表节点下所有子节点名称(递归查找) - - 第三步失败:返回费用节点的所有可用属性名称 - - 否则为空 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 检查输入参数 - if not table_name or not fee_name or not fee_attribute: - status = "error" - error = "输入参数不能为空" - return status, data, error, helper_info - - # 第一步:查找父节点(费用表节点) - parent_path = f"工程数据/工程费用/{table_name}" - parent_node_data = self.get_node_by_path(parent_path) - - if not parent_node_data: - status = "error" - error = f"找不到费用表节点: {parent_path}" - - # 查询"工程数据/工程费用"节点下所有子节点名称 - base_parent_node = self.get_node_by_path("工程数据/工程费用") - if base_parent_node: - query = """ - MATCH (p)-[*1..1]->(n) - WHERE p.name = '工程费用' - RETURN n.name AS name - """ - - try: - result = self.session.run(query) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询工程费用下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 第二步:在费用表节点下查找费用节点(可能在多级子节点中) - fee_node = None - - # 递归查找费用节点,最多查找3级深度 - query = """ - MATCH (p)-[*1..3]->(f) - WHERE p.name = $table_name AND f.name = $fee_name - RETURN f LIMIT 1 - """ - params = {"table_name": table_name, "fee_name": fee_name} - - try: - result = self.session.run(query, **params) - all_records = result.data() - - if len(all_records) > 0: - fee_node = all_records[0]["f"] - - if not fee_node: - status = "error" - error = f"在费用表 {table_name} 下找不到费用节点: {fee_name}" - - # 查询费用表节点下所有子节点名称(递归查找) - query = """ - MATCH (p)-[*1..3]->(n) - WHERE p.name = $table_name - RETURN DISTINCT n.name AS name - ORDER BY n.name - """ - params = {"table_name": table_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询费用表下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询费用节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第三步:获取费用节点的属性值 - try: - if fee_node and hasattr(fee_node, "get"): - fee_value = fee_node.get(fee_attribute) - elif fee_node and isinstance(fee_node, dict): - fee_value = fee_node.get(fee_attribute) - else: - # 如果fee_node是Neo4j Node对象,尝试直接访问属性 - fee_value = ( - getattr(fee_node, fee_attribute, None) - if hasattr(fee_node, fee_attribute) - else fee_node.get(fee_attribute) if hasattr(fee_node, "get") else None - ) - - if fee_value is None: - status = "error" - error = f"费用节点 {fee_name} 中找不到属性: {fee_attribute}" - - # 返回费用节点的所有可用属性名称 - try: - if hasattr(fee_node, "keys"): - helper_info = list(fee_node.keys()) - elif isinstance(fee_node, dict): - helper_info = list(fee_node.keys()) - else: - # 对于Neo4j Node对象 - helper_info = list(fee_node.keys()) if hasattr(fee_node, "keys") else [] - - # 过滤掉私有属性 - helper_info = [attr for attr in helper_info if not attr.startswith("_")] - - except Exception as e: - helper_info = [f"获取费用节点属性列表时出错: {str(e)}"] - - return status, data, error, helper_info - - # 成功获取属性值,只返回属性值 - data = fee_value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"获取费用属性值时出错: {str(e)}" - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - def get_fee_schedule_on_other_expense_table( - self, table_name: str, fee_name: str, fee_attribute: str - ) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 在其它费用表中查找费用 - - Args: - table_name (str): 费用表名称 - fee_name (str): 要查找的费用名称(可能在多级子节点中) - fee_attribute (str): 费用值属性名 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 第一步失败:返回"工程数据"节点下所有子节点名称 - - 第二步失败:返回费用表节点下所有子节点名称(递归查找) - - 第三步失败:返回费用节点的所有可用属性名称 - - 否则为空 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 检查输入参数 - if not table_name or not fee_name or not fee_attribute: - status = "error" - error = "输入参数不能为空" - return status, data, error, helper_info - - # 第一步:查找父节点(费用表节点) - parent_path = f"工程数据/工程费用/{table_name}" - parent_node_data = self.get_node_by_path(parent_path) - - if not parent_node_data: - status = "error" - error = f"找不到费用表节点: {parent_path}" - - # 查询"工程数据/工程费用"节点下所有子节点名称 - base_parent_node = self.get_node_by_path("工程数据/工程费用") - if base_parent_node: - query = """ - MATCH (p)-[*1..1]->(n) - WHERE p.name = '工程费用' - RETURN n.name AS name - """ - - try: - result = self.session.run(query) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询工程费用下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 第二步:在费用表节点下查找费用节点(可能在多级子节点中) - fee_node = None - - # 递归查找费用节点,最多查找3级深度 - query = """ - MATCH (p)-[*1..3]->(f) - WHERE p.name = $table_name AND f.name = $fee_name - RETURN f LIMIT 1 - """ - params = {"table_name": table_name, "fee_name": fee_name} - - try: - result = self.session.run(query, **params) - all_records = result.data() - - if len(all_records) > 0: - fee_node = all_records[0]["f"] - - if not fee_node: - status = "error" - error = f"在费用表 {table_name} 下找不到费用节点: {fee_name}" - - # 查询费用表节点下所有子节点名称(递归查找) - query = """ - MATCH (p)-[*1..3]->(n) - WHERE p.name = $table_name - RETURN DISTINCT n.name AS name - ORDER BY n.name - """ - params = {"table_name": table_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询费用表下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询费用节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第三步:获取费用节点的属性值 - try: - if fee_node and hasattr(fee_node, "get"): - fee_value = fee_node.get(fee_attribute) - elif fee_node and isinstance(fee_node, dict): - fee_value = fee_node.get(fee_attribute) - else: - # 如果fee_node是Neo4j Node对象,尝试直接访问属性 - fee_value = ( - getattr(fee_node, fee_attribute, None) - if hasattr(fee_node, fee_attribute) - else fee_node.get(fee_attribute) if hasattr(fee_node, "get") else None - ) - - if fee_value is None: - status = "error" - error = f"费用节点 {fee_name} 中找不到属性: {fee_attribute}" - - # 返回费用节点的所有可用属性名称 - try: - if hasattr(fee_node, "keys"): - helper_info = list(fee_node.keys()) - elif isinstance(fee_node, dict): - helper_info = list(fee_node.keys()) - else: - # 对于Neo4j Node对象 - helper_info = list(fee_node.keys()) if hasattr(fee_node, "keys") else [] - - # 过滤掉私有属性 - helper_info = [attr for attr in helper_info if not attr.startswith("_")] - - except Exception as e: - helper_info = [f"获取费用节点属性列表时出错: {str(e)}"] - - return status, data, error, helper_info - - # 成功获取属性值,只返回属性值 - data = fee_value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"获取费用属性值时出错: {str(e)}" - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - def get_fee_schedule_on_land_acquisition_fee_table_table( - self, table_name: str, fee_name: str, fee_attribute: str - ) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 在土地征用费表中查找费用 - - Args: - table_name (str): 费用表名称 - fee_name (str): 要查找的费用名称(可能在多级子节点中) - fee_attribute (str): 费用值属性名 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 第一步失败:返回"工程数据"节点下所有子节点名称 - - 第二步失败:返回费用表节点下所有子节点名称(递归查找) - - 第三步失败:返回费用节点的所有可用属性名称 - - 否则为空 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 检查输入参数 - if not table_name or not fee_name or not fee_attribute: - status = "error" - error = "输入参数不能为空" - return status, data, error, helper_info - - # 第一步:查找父节点(费用表节点) - parent_path = f"工程数据/工程费用/{table_name}" - parent_node_data = self.get_node_by_path(parent_path) - - if not parent_node_data: - status = "error" - error = f"找不到费用表节点: {parent_path}" - - # 查询"工程数据/工程费用"节点下所有子节点名称 - base_parent_node = self.get_node_by_path("工程数据/工程费用") - if base_parent_node: - query = """ - MATCH (p)-[*1..1]->(n) - WHERE p.name = '工程费用' - RETURN n.name AS name - """ - - try: - result = self.session.run(query) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询工程费用下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 第二步:在费用表节点下查找费用节点(可能在多级子节点中) - fee_node = None - - # 递归查找费用节点,最多查找3级深度 - query = """ - MATCH (p)-[*1..3]->(f) - WHERE p.name = $table_name AND f.name = $fee_name - RETURN f LIMIT 1 - """ - params = {"table_name": table_name, "fee_name": fee_name} - - try: - result = self.session.run(query, **params) - all_records = result.data() - - if len(all_records) > 0: - fee_node = all_records[0]["f"] - - if not fee_node: - status = "error" - error = f"在费用表 {table_name} 下找不到费用节点: {fee_name}" - - # 查询费用表节点下所有子节点名称(递归查找) - query = """ - MATCH (p)-[*1..3]->(n) - WHERE p.name = $table_name - RETURN DISTINCT n.name AS name - ORDER BY n.name - """ - params = {"table_name": table_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询费用表下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询费用节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第三步:获取费用节点的属性值 - try: - if fee_node and hasattr(fee_node, "get"): - fee_value = fee_node.get(fee_attribute) - elif fee_node and isinstance(fee_node, dict): - fee_value = fee_node.get(fee_attribute) - else: - # 如果fee_node是Neo4j Node对象,尝试直接访问属性 - fee_value = ( - getattr(fee_node, fee_attribute, None) - if hasattr(fee_node, fee_attribute) - else fee_node.get(fee_attribute) if hasattr(fee_node, "get") else None - ) - - if fee_value is None: - status = "error" - error = f"费用节点 {fee_name} 中找不到属性: {fee_attribute}" - - # 返回费用节点的所有可用属性名称 - try: - if hasattr(fee_node, "keys"): - helper_info = list(fee_node.keys()) - elif isinstance(fee_node, dict): - helper_info = list(fee_node.keys()) - else: - # 对于Neo4j Node对象 - helper_info = list(fee_node.keys()) if hasattr(fee_node, "keys") else [] - - # 过滤掉私有属性 - helper_info = [attr for attr in helper_info if not attr.startswith("_")] - - except Exception as e: - helper_info = [f"获取费用节点属性列表时出错: {str(e)}"] - - return status, data, error, helper_info - - # 成功获取属性值,只返回属性值 - data = fee_value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"获取费用属性值时出错: {str(e)}" - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - def get_fee_schedule_on_installation_price_difference_table( - self, table_name: str, fee_name: str, fee_attribute: str - ) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 在安装价差表中查找费用 - - Args: - table_name (str): 费用表名称 - fee_name (str): 要查找的费用名称(可能在多级子节点中) - fee_attribute (str): 费用值属性名 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 第一步失败:返回"工程数据"节点下所有子节点名称 - - 第二步失败:返回费用表节点下所有子节点名称(递归查找) - - 第三步失败:返回费用节点的所有可用属性名称 - - 否则为空 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 检查输入参数 - if not table_name or not fee_name or not fee_attribute: - status = "error" - error = "输入参数不能为空" - return status, data, error, helper_info - - # 第一步:查找父节点(费用表节点) - parent_path = f"工程数据/工程费用/{table_name}" - parent_node_data = self.get_node_by_path(parent_path) - - if not parent_node_data: - status = "error" - error = f"找不到费用表节点: {parent_path}" - - # 查询"工程数据/工程费用"节点下所有子节点名称 - base_parent_node = self.get_node_by_path("工程数据/工程费用") - if base_parent_node: - query = """ - MATCH (p)-[*1..1]->(n) - WHERE p.name = '工程费用' - RETURN n.name AS name - """ - - try: - result = self.session.run(query) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询工程费用下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 第二步:在费用表节点下查找费用节点(可能在多级子节点中) - fee_node = None - - # 递归查找费用节点,最多查找3级深度 - query = """ - MATCH (p)-[*1..3]->(f) - WHERE p.name = $table_name AND f.name = $fee_name - RETURN f LIMIT 1 - """ - params = {"table_name": table_name, "fee_name": fee_name} - - try: - result = self.session.run(query, **params) - all_records = result.data() - - if len(all_records) > 0: - fee_node = all_records[0]["f"] - - if not fee_node: - status = "error" - error = f"在费用表 {table_name} 下找不到费用节点: {fee_name}" - - # 查询费用表节点下所有子节点名称(递归查找) - query = """ - MATCH (p)-[*1..3]->(n) - WHERE p.name = $table_name - RETURN DISTINCT n.name AS name - ORDER BY n.name - """ - params = {"table_name": table_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询费用表下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询费用节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第三步:获取费用节点的属性值 - try: - if fee_node and hasattr(fee_node, "get"): - fee_value = fee_node.get(fee_attribute) - elif fee_node and isinstance(fee_node, dict): - fee_value = fee_node.get(fee_attribute) - else: - # 如果fee_node是Neo4j Node对象,尝试直接访问属性 - fee_value = ( - getattr(fee_node, fee_attribute, None) - if hasattr(fee_node, fee_attribute) - else fee_node.get(fee_attribute) if hasattr(fee_node, "get") else None - ) - - if fee_value is None: - status = "error" - error = f"费用节点 {fee_name} 中找不到属性: {fee_attribute}" - - # 返回费用节点的所有可用属性名称 - try: - if hasattr(fee_node, "keys"): - helper_info = list(fee_node.keys()) - elif isinstance(fee_node, dict): - helper_info = list(fee_node.keys()) - else: - # 对于Neo4j Node对象 - helper_info = list(fee_node.keys()) if hasattr(fee_node, "keys") else [] - - # 过滤掉私有属性 - helper_info = [attr for attr in helper_info if not attr.startswith("_")] - - except Exception as e: - helper_info = [f"获取费用节点属性列表时出错: {str(e)}"] - - return status, data, error, helper_info - - # 成功获取属性值,只返回属性值 - data = fee_value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"获取费用属性值时出错: {str(e)}" - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - def get_fee_schedule_on_Engineering_Cost_table( - self, table_name: str, fee_name: str, fee_attribute: str - ) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 在工程费用表中查找费用 - - Args: - table_name (str): 费用表名称 - fee_name (str): 要查找的费用名称(可能在多级子节点中) - fee_attribute (str): 费用值属性名 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表: - - 第一步失败:返回"工程数据"节点下所有子节点名称 - - 第二步失败:返回费用表节点下所有子节点名称(递归查找) - - 第三步失败:返回费用节点的所有可用属性名称 - - 否则为空 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 检查输入参数 - if not table_name or not fee_name or not fee_attribute: - status = "error" - error = "输入参数不能为空" - return status, data, error, helper_info - - # 第一步:查找父节点(费用表节点) - parent_path = f"工程数据/工程费用/{table_name}" - parent_node_data = self.get_node_by_path(parent_path) - - if not parent_node_data: - status = "error" - error = f"找不到费用表节点: {parent_path}" - - # 查询"工程数据/工程费用"节点下所有子节点名称 - base_parent_node = self.get_node_by_path("工程数据/工程费用") - if base_parent_node: - query = """ - MATCH (p)-[*1..1]->(n) - WHERE p.name = '工程费用' - RETURN n.name AS name - """ - - try: - result = self.session.run(query) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询工程费用下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 第二步:在费用表节点下查找费用节点(可能在多级子节点中) - fee_node = None - - # 递归查找费用节点,最多查找3级深度 - query = """ - MATCH (p)-[*1..3]->(f) - WHERE p.name = $table_name AND f.name = $fee_name - RETURN f LIMIT 1 - """ - params = {"table_name": table_name, "fee_name": fee_name} - - try: - result = self.session.run(query, **params) - all_records = result.data() - - if len(all_records) > 0: - fee_node = all_records[0]["f"] - - if not fee_node: - status = "error" - error = f"在费用表 {table_name} 下找不到费用节点: {fee_name}" - - # 查询费用表节点下所有子节点名称(递归查找) - query = """ - MATCH (p)-[*1..3]->(n) - WHERE p.name = $table_name - RETURN DISTINCT n.name AS name - ORDER BY n.name - """ - params = {"table_name": table_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询费用表下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询费用节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第三步:获取费用节点的属性值 - try: - if fee_node and hasattr(fee_node, "get"): - fee_value = fee_node.get(fee_attribute) - elif fee_node and isinstance(fee_node, dict): - fee_value = fee_node.get(fee_attribute) - else: - # 如果fee_node是Neo4j Node对象,尝试直接访问属性 - fee_value = ( - getattr(fee_node, fee_attribute, None) - if hasattr(fee_node, fee_attribute) - else fee_node.get(fee_attribute) if hasattr(fee_node, "get") else None - ) - - if fee_value is None: - status = "error" - error = f"费用节点 {fee_name} 中找不到属性: {fee_attribute}" - - # 返回费用节点的所有可用属性名称 - try: - if hasattr(fee_node, "keys"): - helper_info = list(fee_node.keys()) - elif isinstance(fee_node, dict): - helper_info = list(fee_node.keys()) - else: - # 对于Neo4j Node对象 - helper_info = list(fee_node.keys()) if hasattr(fee_node, "keys") else [] - - # 过滤掉私有属性 - helper_info = [attr for attr in helper_info if not attr.startswith("_")] - - except Exception as e: - helper_info = [f"获取费用节点属性列表时出错: {str(e)}"] - - return status, data, error, helper_info - - # 成功获取属性值,只返回属性值 - data = fee_value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"获取费用属性值时出错: {str(e)}" - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - # 工程属性查询方法 - def get_project_property(self, property_name): - """ - 通过属性名称获取工程属性 - - Args: - property_name (str): 属性名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 构建查询,查找父节点类型为ProjectPropertySet下类型为ProjectProperty的节点 - query = """ - MATCH (parent:ProjectPropertySet)-[*1..1]->(property:ProjectProperty) - WHERE property.name = $property_name - RETURN property - LIMIT 1 - """ - params = {"property_name": property_name} - - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"找不到名称为 '{property_name}' 的工程属性节点" - - # 查询类似的节点名称作为辅助信息 - similar_query = """ - MATCH (parent:ProjectPropertySet)-[*1..1]->(property:ProjectProperty) - RETURN property.name AS name - LIMIT 5 - """ - - try: - similar_result = self.session.run(similar_query) - for similar_record in similar_result: - if similar_record["name"]: - helper_info.append(similar_record["name"]) - except Exception as e: - helper_info = [f"查询类似节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 获取节点属性 - property_node = record["property"] - - # 将节点所有属性添加到返回数据中 - for key, value in property_node.items(): - if not key.startswith("_"): - data[key] = value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询工程属性时出错: {str(e)}" - return status, data, error, helper_info - - # 项目划分查找取费表 - - def get_fee_table_by_project_division( - self, project_division_path, fee_name - ) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 通过项目划分路径和取费名称查找费用 - - Args: - project_division_path(str): 项目划分节点的路径 - fee_name (str): 取费名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 第一步:查找项目划分路径下的ProjectDivisionItem节点 - division_node = self.get_node_by_path(project_division_path, ["ProjectDivisionItem"]) - - if not division_node: - status = "error" - error = f"找不到路径: {project_division_path} 上的ProjectDivisionItem节点" - - # 提取父路径 - path_parts = project_division_path.split("/") - if len(path_parts) > 1: - parent_path = "/".join(path_parts[:-1]) - parent_name = path_parts[-2] - - # 获取父节点下所有ProjectDivisionItem节点名称作为辅助信息 - query = """ - MATCH (p)-[*1..1]->(q:ProjectDivisionItem) - WHERE p.name = $parent_name - RETURN q.name as name - """ - params = {"parent_name": parent_name} - - try: - result = self.session.run(query, **params) - for record in result: - if record["name"]: - helper_info.append(record["name"]) - except Exception as e: - helper_info = [f"查询父节点下的子节点时出错: {str(e)}"] - - return status, data, error, helper_info - - # 第二步:在项目划分节点的子节点中查找属性name为"费用预览集"且关系为USE的节点 - query = """ - MATCH (p:ProjectDivisionItem)-[r:USE]->(c:CostSet) - WHERE id(p) = $division_node_id AND c.name = "费用预览集" - RETURN c - LIMIT 1 - """ - params = {"division_node_id": division_node.id} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"在项目划分节点下找不到name为'费用预览集'且关系为USE的CostSet节点" - - # 查询项目划分节点下的所有子节点作为辅助信息 - helper_query = """ - MATCH (p:ProjectDivisionItem)-[r]->(c) - WHERE id(p) = $division_node_id - RETURN type(r) as relation_type, c.name as name, labels(c) as labels - LIMIT 5 - """ - helper_params = {"division_node_id": division_node.id} - helper_result = self.session.run(helper_query, **helper_params) - - for helper_record in helper_result: - relation_type = helper_record.get("relation_type", "未知关系") - name = helper_record.get("name", "未知名称") - labels = helper_record.get("labels", []) - helper_info.append(f"关系类型: {relation_type}, 节点名称: {name}, 节点标签: {labels}") - - return status, data, error, helper_info - - cost_set_node = record["c"] - - except Exception as e: - status = "error" - error = f"查询CostSet节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第三步:在CostSet节点的子节点中查找名称为fee_name的CostItem节点 - query = """ - MATCH (c:CostSet)-[*1..1]->(i:CostItem) - WHERE id(c) = $cost_set_id AND i.name = $fee_name - RETURN i - LIMIT 1 - """ - params = {"cost_set_id": cost_set_node.id, "fee_name": fee_name} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"在CostSet节点下找不到名称为 {fee_name} 的CostItem节点" - - # 查询该CostSet下所有CostItem节点名称作为辅助信息 - helper_query = """ - MATCH (c:CostSet)-[*1..1]->(i:CostItem) - WHERE id(c) = $cost_set_id - RETURN i.name AS name - LIMIT 5 - """ - helper_params = {"cost_set_id": cost_set_node.id} - helper_result = self.session.run(helper_query, **helper_params) - - for helper_record in helper_result: - if helper_record["name"]: - helper_info.append(helper_record["name"]) - - return status, data, error, helper_info - - cost_item_node = record["i"] - - # 将CostItem节点的所有属性添加到返回数据中 - for key, value in cost_item_node.items(): - if not key.startswith("_"): # 排除私有属性 - data[key] = value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询CostItem节点时出错: {str(e)}" - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - # 清单查找取费表 - def get_fee_table_by_list( - self, parent_path, list_code, list_unit, fee_name - ) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 通过清单名称和取费名称查找费用 - - Args: - parent_path (str): 父级路径 - list_code (str): 清单编号 - list_unit (str): 清单单位 - fee_name (str): 取费名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 第一步:查找父路径下类型为List的节点,且编码和单位匹配 - query = """ - MATCH (p)-[*0..10]->(l:List) - WHERE p.name CONTAINS $parent_name AND l.编码 = $list_code AND l.单位 = $list_unit - RETURN l - LIMIT 1 - """ - params = {"parent_name": parent_path.split("/")[-1], "list_code": list_code, "list_unit": list_unit} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"在路径 {parent_path} 下找不到编码为 {list_code} 且单位为 {list_unit} 的List节点" - - # 查询路径下的List节点作为辅助信息 - helper_query = """ - MATCH (p)-[*0..10]->(l:List) - WHERE p.name CONTAINS $parent_name - RETURN l.编码 AS code, l.单位 AS unit, l.name AS name - LIMIT 5 - """ - - helper_params = {"parent_name": parent_path.split("/")[-1]} - helper_result = self.session.run(helper_query, **helper_params) - - for helper_record in helper_result: - code = helper_record.get("code", "") - unit = helper_record.get("unit", "") - name = helper_record.get("name", "") - helper_info.append(f"{code} - {unit} - {name}") - - return status, data, error, helper_info - - list_node = record["l"] - - except Exception as e: - status = "error" - error = f"查询List节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第二步:在list节点的子节点中查找属性name为"费用预览集"且关系为USE的节点 - query = """ - MATCH (l:List)-[r:USE]->(c:CostSet) - WHERE id(l) = $list_node_id AND c.name = "费用预览集" - RETURN c - LIMIT 1 - """ - params = {"list_node_id": list_node.id} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"在List节点下找不到name为'费用预览集'且关系为USE的CostSet节点" - - # 查询List节点下的所有子节点作为辅助信息 - helper_query = """ - MATCH (l:List)-[r]->(c) - WHERE id(l) = $list_node_id - RETURN type(r) as relation_type, c.name as name, labels(c) as labels - LIMIT 5 - """ - helper_params = {"list_node_id": list_node.id} - helper_result = self.session.run(helper_query, **helper_params) - - for helper_record in helper_result: - relation_type = helper_record.get("relation_type", "未知关系") - name = helper_record.get("name", "未知名称") - labels = helper_record.get("labels", []) - helper_info.append(f"关系类型: {relation_type}, 节点名称: {name}, 节点标签: {labels}") - - return status, data, error, helper_info - - cost_set_node = record["c"] - - except Exception as e: - status = "error" - error = f"查询CostSet节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第三步:在CostSet节点的子节点中查找名称为fee_name的CostItem节点 - query = """ - MATCH (c:CostSet)-[*1..1]->(i:CostItem) - WHERE id(c) = $cost_set_id AND i.name = $fee_name - RETURN i - LIMIT 1 - """ - params = {"cost_set_id": cost_set_node.id, "fee_name": fee_name} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"在CostSet节点下找不到名称为 {fee_name} 的CostItem节点" - - # 查询该CostSet下所有CostItem节点名称作为辅助信息 - helper_query = """ - MATCH (c:CostSet)-[*1..1]->(i:CostItem) - WHERE id(c) = $cost_set_id - RETURN i.name AS name - LIMIT 5 - """ - helper_params = {"cost_set_id": cost_set_node.id} - helper_result = self.session.run(helper_query, **helper_params) - - for helper_record in helper_result: - if helper_record["name"]: - helper_info.append(helper_record["name"]) - - return status, data, error, helper_info - - cost_item_node = record["i"] - - # 将CostItem节点的所有属性添加到返回数据中 - for key, value in cost_item_node.items(): - if not key.startswith("_"): # 排除私有属性 - data[key] = value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询CostItem节点时出错: {str(e)}" - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - # 定额节点查找合价 - def get_fee_table_by_quoto_code( - self, parent_path, quantity_type, code, fee_name - ) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 通过父级路径、工程量类型、定额编码和取费名称查找费用 - - Args: - parent_path (str): 父级路径 - quantity_type (str): 工程量类型 - code (str): 定额编码 - fee_name (str): 取费名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 第一步:查找父路径下类型为Quota的节点,且编码匹配 - # 根据工程量类型构建节点类型条件 - node_type_condition = "" - if quantity_type == "定额": - node_type_condition = "(q:ProjectQuantity:Quota OR q.类型 = '0')" - else: - status = "error" - error = f"工程量类型必须为'定额'" - return status, data, error, helper_info - - query = """ - MATCH (p)-[*0..10]->(q) - WHERE p.name CONTAINS $parent_name AND q.编码 = $code AND {type_condition} - RETURN q - LIMIT 1 - """.format( - type_condition=node_type_condition - ) - - params = {"parent_name": parent_path.split("/")[-1], "code": code} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"在路径 {parent_path} 下找不到编码为 {code} 的Quota节点" - - # 查询路径下的Quota节点作为辅助信息 - helper_query = """ - MATCH (p)-[*0..10]->(q) - WHERE p.name CONTAINS $parent_name AND {type_condition} - RETURN q.编码 AS code, q.name AS name - LIMIT 5 - """.format( - type_condition=node_type_condition - ) - - helper_params = {"parent_name": parent_path.split("/")[-1]} - helper_result = self.session.run(helper_query, **helper_params) - - for helper_record in helper_result: - code_val = helper_record.get("code", "") - name = helper_record.get("name", "") - helper_info.append(f"{code_val} - {name}") - - return status, data, error, helper_info - - quota_node = record["q"] - - # 获取GUID - guid = quota_node.get("GUID") - if not guid: - status = "error" - error = f"Quota节点没有GUID属性" - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询Quota节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第二步:查找GUID与Quota的GUID匹配的CostSet节点 - query = """ - MATCH (c:CostSet) - WHERE c.name = $guid - RETURN c - LIMIT 1 - """ - params = {"guid": guid} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"找不到与GUID: {guid} 匹配的CostSet节点" - - # 查找一些CostSet节点名称作为辅助信息 - helper_query = """ - MATCH (c:CostSet) - RETURN c.name AS name - LIMIT 5 - """ - - helper_result = self.session.run(helper_query) - for helper_record in helper_result: - if helper_record["name"]: - helper_info.append(helper_record["name"]) - - return status, data, error, helper_info - - cost_set_node = record["c"] - - except Exception as e: - status = "error" - error = f"查询CostSet节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第三步:在CostSet节点的子节点中查找名称为fee_name的CostItem节点 - query = """ - MATCH (c:CostSet)-[*1..1]->(i:CostItem) - WHERE c.name = $guid AND i.name = $fee_name - RETURN i - LIMIT 1 - """ - params = {"guid": guid, "fee_name": fee_name} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"在CostSet节点 {guid} 下找不到名称为 {fee_name} 的CostItem节点" - - # 查询该CostSet下所有CostItem节点名称作为辅助信息 - helper_query = """ - MATCH (c:CostSet)-[*1..1]->(i:CostItem) - WHERE c.name = $guid - RETURN i.name AS name - LIMIT 5 - """ - - helper_params = {"guid": guid} - helper_result = self.session.run(helper_query, **helper_params) - - for helper_record in helper_result: - if helper_record["name"]: - helper_info.append(helper_record["name"]) - - return status, data, error, helper_info - - cost_item_node = record["i"] - - # 将CostItem节点的所有属性添加到返回数据中 - for key, value in cost_item_node.items(): - if not key.startswith("_"): # 排除私有属性 - data[key] = value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询CostItem节点时出错: {str(e)}" - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - def get_fee_table_by_quantities_name( - self, parent_path, quantity_type, quantity_name, fee_name - ) -> Tuple[str, Dict[str, Any], str, List[Any]]: - """ - 通过父级路径、工程量类型、工程量名称和取费名称查找费用 - - Args: - parent_path (str): 父级路径 - quantity_type (str): 工程量类型 - quantity_name (str): 工程量名称 - fee_name (str): 取费名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 第一步:根据工程量类型构建节点类型条件 - node_type_condition = "" - if quantity_type == "主材": - node_type_condition = "(q:ProjectQuantity:MainMaterial OR q.类型 = '1')" - elif quantity_type == "设备": - node_type_condition = "(q:ProjectQuantity:Equipment OR q.类型 = '5')" - else: - status = "error" - error = f"工程量类型必须为'主材'或'设备'" - helper_info = ["主材", "设备"] - return status, data, error, helper_info - - # 查找父路径下指定类型的节点,且名称匹配 - query = """ - MATCH (p)-[*0..10]->(q) - WHERE p.name CONTAINS $parent_name AND q.name CONTAINS $quantity_name AND {type_condition} - RETURN q - LIMIT 1 - """.format( - type_condition=node_type_condition - ) - - params = {"parent_name": parent_path.split("/")[-1], "quantity_name": quantity_name} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = ( - f"在路径 {parent_path} 下找不到类型为 {quantity_type} 且名称包含 {quantity_name} 的工程量节点" - ) - - # 查询路径下的工程量节点作为辅助信息 - helper_query = """ - MATCH (p)-[*0..10]->(q) - WHERE p.name CONTAINS $parent_name AND {type_condition} - RETURN q.name AS name - LIMIT 5 - """.format( - type_condition=node_type_condition - ) - - helper_params = {"parent_name": parent_path.split("/")[-1]} - helper_result = self.session.run(helper_query, **helper_params) - - for helper_record in helper_result: - name = helper_record.get("name", "") - helper_info.append(name) - - return status, data, error, helper_info - - quantity_node = record["q"] - - # 获取GUID - guid = quantity_node.get("GUID") - if not guid: - status = "error" - error = f"工程量节点没有GUID属性" - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询工程量节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第二步:查找GUID与工程量节点的GUID匹配的CostSet节点 - query = """ - MATCH (c:CostSet) - WHERE c.name = $guid - RETURN c - LIMIT 1 - """ - params = {"guid": guid} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"找不到与GUID: {guid} 匹配的CostSet节点" - - # 查找一些CostSet节点名称作为辅助信息 - helper_query = """ - MATCH (c:CostSet) - RETURN c.name AS name - LIMIT 5 - """ - - helper_result = self.session.run(helper_query) - for helper_record in helper_result: - if helper_record["name"]: - helper_info.append(helper_record["name"]) - - return status, data, error, helper_info - - cost_set_node = record["c"] - - except Exception as e: - status = "error" - error = f"查询CostSet节点时出错: {str(e)}" - return status, data, error, helper_info - - # 第三步:在CostSet节点的子节点中查找名称为fee_name的CostItem节点 - query = """ - MATCH (c:CostSet)-[*1..1]->(i:CostItem) - WHERE c.name = $guid AND i.name = $fee_name - RETURN i - LIMIT 1 - """ - params = {"guid": guid, "fee_name": fee_name} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"在CostSet节点 {guid} 下找不到名称为 {fee_name} 的CostItem节点" - - # 查询该CostSet下所有CostItem节点名称作为辅助信息 - helper_query = """ - MATCH (c:CostSet)-[*1..1]->(i:CostItem) - WHERE c.name = $guid - RETURN i.name AS name - LIMIT 5 - """ - - helper_params = {"guid": guid} - helper_result = self.session.run(helper_query, **helper_params) - - for helper_record in helper_result: - if helper_record["name"]: - helper_info.append(helper_record["name"]) - - return status, data, error, helper_info - - cost_item_node = record["i"] - - # 将CostItem节点的所有属性添加到返回数据中 - for key, value in cost_item_node.items(): - if not key.startswith("_"): # 排除私有属性 - data[key] = value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询CostItem节点时出错: {str(e)}" - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info - - # 材机节点查找市场价 - def get_fee_by_material_equipment_code(self, parent_path, material_equipment_code, fee_name): - """ - 通过父级路径、材机编码和取费名称查找费用 - - Args: - parent_path (str): 父级路径 - material_equipment_code (str): 材机编码 - fee_name (str): 取费名称 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - pass - - # 查找清单节点 - def get_fee_table_by_list_name(self, parent_path, list_code, unit): - """ - 通过父级路径、清单编号和单位查找清单 - - Args: - parent_path (str): 父级路径 - list_code (str): 清单编号 - unit (str): 单位 - - Returns: - Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 - - status (str): 状态,'success'或'error' - - data (Dict[str, Any]): 成功时返回包含属性值的数据 - - error (str): 错误时的错误信息 - - helper_info (List[Any]): 辅助信息列表 - """ - # 初始化返回结果 - status = "success" - data = {} - error = "" - helper_info = [] - - try: - # 查找父路径下类型为List的节点,且编码和单位匹配 - query = """ - MATCH (p)-[*0..10]->(l:List) - WHERE p.name CONTAINS $parent_name AND l.编码 = $list_code AND l.单位 = $unit - RETURN l - LIMIT 1 - """ - params = {"parent_name": parent_path.split("/")[-1], "list_code": list_code, "unit": unit} - - try: - result = self.session.run(query, **params) - record = result.single() - - if not record: - status = "error" - error = f"在路径 {parent_path} 下找不到编码为 {list_code} 且单位为 {unit} 的List节点" - - # 查询路径下的List节点作为辅助信息 - helper_query = """ - MATCH (p)-[*0..10]->(l:List) - WHERE p.name CONTAINS $parent_name - RETURN l.编码 AS code, l.单位 AS unit, l.name AS name - LIMIT 5 - """ - - helper_params = {"parent_name": parent_path.split("/")[-1]} - helper_result = self.session.run(helper_query, **helper_params) - - for helper_record in helper_result: - code = helper_record.get("code", "") - unit_val = helper_record.get("unit", "") - name = helper_record.get("name", "") - helper_info.append(f"{code} - {unit_val} - {name}") - - return status, data, error, helper_info - - list_node = record["l"] - - # 将节点的所有属性添加到返回数据中 - for key, value in list_node.items(): - if not key.startswith("_"): # 排除私有属性 - data[key] = value - - return status, data, error, helper_info - - except Exception as e: - status = "error" - error = f"查询List节点时出错: {str(e)}" - return status, data, error, helper_info - - except Exception as e: - import traceback - - error_details = traceback.format_exc() - print(f"查询出错: {error_details}") - - status = "error" - error = f"查询失败: {str(e)}" - return status, data, error, helper_info diff --git a/requirements.txt b/requirements.txt index 0d25c76..78d697e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,5 @@ langchain-experimental pyyaml neo4j langchain-neo4j -langgraph \ No newline at end of file +langgraph +chardet \ No newline at end of file diff --git a/src/__pycache__/code_executor.cpython-313.pyc b/src/__pycache__/code_executor.cpython-313.pyc new file mode 100644 index 0000000..6c90132 Binary files /dev/null and b/src/__pycache__/code_executor.cpython-313.pyc differ diff --git a/src/__pycache__/config.cpython-313.pyc b/src/__pycache__/config.cpython-313.pyc new file mode 100644 index 0000000..167a02e Binary files /dev/null and b/src/__pycache__/config.cpython-313.pyc differ diff --git a/src/__pycache__/dialog_manager.cpython-313.pyc b/src/__pycache__/dialog_manager.cpython-313.pyc new file mode 100644 index 0000000..fb5a341 Binary files /dev/null and b/src/__pycache__/dialog_manager.cpython-313.pyc differ diff --git a/src/__pycache__/document_loader.cpython-313.pyc b/src/__pycache__/document_loader.cpython-313.pyc new file mode 100644 index 0000000..cdf3413 Binary files /dev/null and b/src/__pycache__/document_loader.cpython-313.pyc differ diff --git a/src/__pycache__/embedding_client.cpython-313.pyc b/src/__pycache__/embedding_client.cpython-313.pyc new file mode 100644 index 0000000..dc91db2 Binary files /dev/null and b/src/__pycache__/embedding_client.cpython-313.pyc differ diff --git a/src/__pycache__/llm_client.cpython-313.pyc b/src/__pycache__/llm_client.cpython-313.pyc new file mode 100644 index 0000000..e8af3d0 Binary files /dev/null and b/src/__pycache__/llm_client.cpython-313.pyc differ diff --git a/src/__pycache__/multi_llm_client.cpython-313.pyc b/src/__pycache__/multi_llm_client.cpython-313.pyc new file mode 100644 index 0000000..5768dfa Binary files /dev/null and b/src/__pycache__/multi_llm_client.cpython-313.pyc differ diff --git a/src/__pycache__/neo4j_raw_retriever.cpython-313.pyc b/src/__pycache__/neo4j_raw_retriever.cpython-313.pyc new file mode 100644 index 0000000..0872a97 Binary files /dev/null and b/src/__pycache__/neo4j_raw_retriever.cpython-313.pyc differ diff --git a/src/__pycache__/neo4j_retriever.cpython-313.pyc b/src/__pycache__/neo4j_retriever.cpython-313.pyc new file mode 100644 index 0000000..69ea9cd Binary files /dev/null and b/src/__pycache__/neo4j_retriever.cpython-313.pyc differ diff --git a/src/__pycache__/project.cpython-313.pyc b/src/__pycache__/project.cpython-313.pyc new file mode 100644 index 0000000..78d2928 Binary files /dev/null and b/src/__pycache__/project.cpython-313.pyc differ diff --git a/src/__pycache__/project_implementation.cpython-313.pyc b/src/__pycache__/project_implementation.cpython-313.pyc new file mode 100644 index 0000000..460fb52 Binary files /dev/null and b/src/__pycache__/project_implementation.cpython-313.pyc differ diff --git a/src/__pycache__/prompt_manager.cpython-313.pyc b/src/__pycache__/prompt_manager.cpython-313.pyc new file mode 100644 index 0000000..dece458 Binary files /dev/null and b/src/__pycache__/prompt_manager.cpython-313.pyc differ diff --git a/src/__pycache__/prompt_templates.cpython-313.pyc b/src/__pycache__/prompt_templates.cpython-313.pyc new file mode 100644 index 0000000..c3d97ee Binary files /dev/null and b/src/__pycache__/prompt_templates.cpython-313.pyc differ diff --git a/src/__pycache__/user_interaction.cpython-313.pyc b/src/__pycache__/user_interaction.cpython-313.pyc new file mode 100644 index 0000000..f95aa03 Binary files /dev/null and b/src/__pycache__/user_interaction.cpython-313.pyc differ diff --git a/src/code_executor.py b/src/code_executor.py index de5e03e..0a48b5a 100644 --- a/src/code_executor.py +++ b/src/code_executor.py @@ -1,21 +1,39 @@ +# src/code_executor.py + +import os +import logging +from datetime import datetime import logging from langchain_core.output_parsers import StrOutputParser from langchain_experimental.utilities import PythonREPL from langchain_core.tools import Tool from langchain_experimental.tools import PythonREPLTool -from project import ProjectBuilder, ProjectToolkit +from src.project import ProjectBuilder, ProjectToolkit import sys import io import traceback -logger = logging.getLogger("BoweiAgent.CodeExecutor") +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) class CodeExecutor: - def __init__(self, prompts, llm_client, max_retries=3): + def __init__(self, prompts, llm_client, max_retries): self.llm_client = llm_client self.prompts = prompts - self.max_retries = max_retries + self.max_retries = max_retries if max_retries >= 1 else 1 self.output_parser = StrOutputParser() def generate_code(self, user_request: str, context: str = "", bowei_api_docs: str = "") -> str: @@ -27,7 +45,13 @@ class CodeExecutor: response = self.llm_client.invoke(prompt.to_messages()) code = self.output_parser.parse(response) logger.debug(f"生成的代码内容:\n{code}") - return code + + return { + "code": 20000, + "message": 'ok', + "status": True, + "data": code.content + } def fix_code(self, code: str, error: str) -> str: logger.warning(f"代码执行出错,开始修复。错误信息:{error}") @@ -35,11 +59,19 @@ class CodeExecutor: response = self.llm_client.invoke(prompt.to_messages()) fixed_code = self.output_parser.parse(response) logger.debug(f"修复后的代码内容:\n{fixed_code}") - return fixed_code - def execute_code(self, code_str): + return { + "code": 20000, + "message": 'ok', + "status": True, + "data": fixed_code.content + } + + def execute_code(self, code_str) -> dict: """封装代码执行逻辑""" - logger.debug(f"开始执行代码: {code_str}") + logger.debug(f"开始执行代码:\n {code_str}") + + old_stdout = None try: namespace = { "project": __import__("project"), @@ -56,65 +88,101 @@ class CodeExecutor: if "project_get_calculate_function" not in namespace: raise ValueError("代码中未定义project_get_calculate_function函数") - result_tuple = namespace["project_get_calculate_function"]() + result_dict = namespace["project_get_calculate_function"]() sys.stdout = old_stdout output = redirected_output.getvalue().strip() - if not isinstance(result_tuple, tuple) or len(result_tuple) != 4: - raise ValueError("函数应返回包含4个元素的元组(status, data, error, helper_info)") + if not isinstance(result_dict, dict) or len(result_dict) != 4: + raise ValueError("函数应返回包含4个元素的字典(status, data, error, helper_info)") - status, data, error, helper_info = result_tuple - - logger.info(f"执行结果: status={status}, data={data}, error={error}") - - return { - "status": status, - "data": data, - "error": error, - "helper_info": helper_info, - "output": output, - } + logger.debug(f"执行结果: {result_dict}") + return result_dict except Exception as e: # 确保恢复stdout sys.stdout = old_stdout logger.error(f"执行代码时出错: {e}") logger.error(traceback.format_exc()) - return { - "status": "error", - "error": str(e), - "helper_info": [], - "traceback": traceback.format_exc(), + "code": 50000, + "message": str(e), + "status": False, + "data": [] } - def generate_and_run_code(self, user_request: str, context: str = "", bowei_api_docs: str = "") -> str: - code = self.generate_code(user_request, context, bowei_api_docs) - logger.info("开始执行生成的代码") - + def generate_and_run_code(self, user_request: str, context: str = "", bowei_api_docs: str = "") -> dict: + code = "" pre_code = "" error_msg = "" prev_happend_error = False + + result = self.generate_code(user_request, context, bowei_api_docs) + if isinstance(result, dict) and result.get('status', False): + code = result['data'] + elif isinstance(result, dict): + error_msg = result.get("message", "返回结果中没有错误信息") + logger.error(error_msg) + return { + "code": 50000, + "message": error_msg, + "status": False, + "data": code + } + else: + error_msg = "返回结果格式未知" + logger.error(error_msg) + return { + "code": 50000, + "message": error_msg, + "status": False, + "data": code + } + + logger.info("开始执行生成的代码") for attempt in range(self.max_retries): try: if prev_happend_error: logger.error(f"代码执行失败,尝试第 {attempt+1} 次修复。错误信息:{error_msg}") - code = self.fix_code(pre_code, error_msg) - - import re - - pre_code = re.sub(r"^```python\s*|\s*```$", "", code.content, flags=re.MULTILINE) - result = self.execute_code(pre_code) - if result["status"] == "success": - logger.info(f"代码执行成功,结果: {result['data']}") - return result["data"] - else: - error_msg = result.get("error", "未知错误") - prev_happend_error = True + result = self.fix_code(pre_code, error_msg) + if isinstance(result, dict) and result.get('status', False): + code = result['data'] + elif isinstance(result, dict): + error_msg = result.get("message", "返回结果中没有错误信息") + raise ValueError(error_msg) + else: + error_msg = "返回结果格式未知" + raise ValueError(error_msg) except Exception as e: - error_msg = str(e) + error_msg = f"生成修复代码时发生异常: {str(e)}" prev_happend_error = True - logger.error(f"代码执行失败,超过最大重试次数 {self.max_retries}") - return f"代码执行失败,超过最大重试次数 {self.max_retries}。\n最后一次错误信息:\n{error_msg}" + try: + import re + pre_code = re.sub(r"^```python\s*|\s*```$", "", code, flags=re.MULTILINE) + except Exception as e: + error_msg = f"解析生成代码格式时发生异常: {str(e)}" + prev_happend_error = True + + try: + result = self.execute_code(pre_code) + if isinstance(result, dict) and result.get('status', False): + logger.info(f"代码执行成功,结果: {result['data']}") + return result + elif isinstance(result, dict): + error_msg = result.get("message", "返回结果中没有错误信息") + else: + error_msg = "返回结果格式未知" + prev_happend_error = True + except Exception as e: + error_msg = f"执行代码时发生异常: {str(e)}" + prev_happend_error = True + + error_msg = f"代码执行失败,最后一次错误信息: {error_msg}" + logger.error(error_msg) + return { + "code": 50000, + "message": error_msg, + "status": False, + "data": [] + } diff --git a/src/config.py b/src/config.py index 64ed94d..8dec8f9 100644 --- a/src/config.py +++ b/src/config.py @@ -1,4 +1,24 @@ +# src/config.py + import yaml +import os +import logging +from datetime import datetime + +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) class Config: def __init__(self, path="config.yaml"): @@ -35,3 +55,7 @@ class Config: @property def langsmith(self): return self._config.get("langsmith", {}) + + @property + def max_retries(self): + return self._config.get("max_retries", 3) diff --git a/src/dialog_manager.py b/src/dialog_manager.py index 052ee2e..a49a6c8 100644 --- a/src/dialog_manager.py +++ b/src/dialog_manager.py @@ -1,10 +1,26 @@ # src/dialog_manager.py +import os +import logging +from datetime import datetime import logging from langchain.schema import SystemMessage, HumanMessage import asyncio -logger = logging.getLogger("BoweiAgent.DialogManager") +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) class QuestionProcessor: def __init__(self, llm_client, business_structure, prompts): @@ -112,6 +128,18 @@ class DialogManager: rewritten_list.append((rewritten, doc.page_content)) return rewritten_list + def understand_user_question(self, user_input: str): + """ + 同步调用 understand_user_question_stream 方法 + :param user_input: 用户输入的问题 + :return: 改写后的问题列表 + """ + try: + return asyncio.run(self.understand_user_question_stream(user_input)) + except Exception as e: + logger.error(f"执行 understand_user_question 时发生错误: {str(e)}") + return [] + async def run_async(self, pre_input: str = None): logger.info("启动对话管理器,等待用户输入") print("欢迎使用博微造价工程数据访问系统,输入 exit 退出。") @@ -174,3 +202,27 @@ class DialogManager: ) return result + + def generated_code(self, selected_rewritten, selected_knowledge): + """ + 生成代码 + :param selected_rewritten: 选中的重写后的请求 + :param selected_knowledge: 选中的知识 + :return: 生成的代码 + """ + result = self.code_executor.generate_code( + selected_rewritten, + context=selected_knowledge, + bowei_api_docs=self.bowei_api_docs + ) + + return result + + def execute_code(self, code): + """ + 执行代码并返回结果 + :param code: 代码 + :return: 代码执行结果 + """ + result = self.code_executor.execute_code(code) + return result \ No newline at end of file diff --git a/src/document_loader.py b/src/document_loader.py index 24d3c31..64729eb 100644 --- a/src/document_loader.py +++ b/src/document_loader.py @@ -1,3 +1,24 @@ +# src/document_loader.py + +import os +import logging +from datetime import datetime + +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) + def load_file(path: str) -> str: try: with open(path, "r", encoding="utf-8") as f: diff --git a/src/embedding_client.py b/src/embedding_client.py index 9200f7f..82f361a 100644 --- a/src/embedding_client.py +++ b/src/embedding_client.py @@ -1,6 +1,25 @@ +# src/embedding_client.py + import os +import logging +from datetime import datetime from langchain_openai import OpenAIEmbeddings +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) + class EmbeddingClient: def __init__(self, embedding_config: dict): api_key = embedding_config.get("api_key") diff --git a/src/llm_client.py b/src/llm_client.py index 3408f8a..6b83d25 100644 --- a/src/llm_client.py +++ b/src/llm_client.py @@ -1,8 +1,27 @@ # src/llm_client.py +import os +import logging +from datetime import datetime import os import getpass from langchain_openai import ChatOpenAI +from langchain_core.rate_limiters import InMemoryRateLimiter + +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) class LLMClient: def __init__(self, openai_config: dict): @@ -22,8 +41,14 @@ class LLMClient: model_name = openai_config.get("model_name", "gpt-4o-mini") + # 初始化限速器:每秒最多0.1次请求(即每10秒1次) + rate_limiter = InMemoryRateLimiter( + requests_per_second=13, + check_every_n_seconds=10, + max_bucket_size=10, + ) # 开启流式 - self.llm = ChatOpenAI(model_name=model_name, temperature=0, streaming=True) + self.llm = ChatOpenAI(model_name=model_name, temperature=0, streaming=True, rate_limiter=rate_limiter) def invoke(self, messages): # 同步调用,返回完整响应 diff --git a/src/multi_llm_client.py b/src/multi_llm_client.py new file mode 100644 index 0000000..9db1ac7 --- /dev/null +++ b/src/multi_llm_client.py @@ -0,0 +1,73 @@ +# src/multi_llm_client.py + +import os +import logging +from datetime import datetime +import os +import getpass +import itertools +from langchain_openai import ChatOpenAI +from langchain_core.rate_limiters import InMemoryRateLimiter + +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) + +class MultiAPIKeyChatOpenAI: + def __init__(self, openai_config: dict): + api_keys = openai_config.get("api_keys", []) + if not api_keys: + api_key = openai_config.get("api_key") + if not api_key: + api_key = os.environ.get("OPENAI_API_KEY") + api_keys = [api_key] + + api_base = openai_config.get("api_base") + api_type = openai_config.get("api_type", "openai") + model_name = openai_config.get("model_name", "gpt-4o-mini") + + # 设置环境变量(可选,根据需要) + if api_base: + os.environ["OPENAI_API_BASE"] = api_base + os.environ["OPENAI_API_TYPE"] = api_type + + # 初始化限速器 + rate_limiter = InMemoryRateLimiter( + requests_per_second=13, + check_every_n_seconds=10, + max_bucket_size=10, + ) + + # 创建多个 ChatOpenAI 实例,每个使用不同的 API Key + self.llms = [ + ChatOpenAI( + api_key=key, + model_name=model_name, + temperature=0, + streaming=True, + rate_limiter=rate_limiter, + ) + for key in api_keys + ] + + # 轮询器,用于循环调用不同的 llm 实例 + self._llm_cycle = itertools.cycle(self.llms) + + def invoke(self, messages): + llm = next(self._llm_cycle) + return llm.invoke(messages) + + def stream(self, messages): + llm = next(self._llm_cycle) + return llm.astream(messages) diff --git a/src/neo4j_raw_retriever.py b/src/neo4j_raw_retriever.py index 3bc0e7b..bdced7f 100644 --- a/src/neo4j_raw_retriever.py +++ b/src/neo4j_raw_retriever.py @@ -1,11 +1,26 @@ # src/neo4j_raw_retriever.py +import os +import logging +from datetime import datetime from typing import List from langchain.schema import Document from neo4j import GraphDatabase -import logging -logger = logging.getLogger("BoweiAgent.Neo4jRawRetriever") +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) class Neo4jRawRetriever: def __init__(self, neo4j_conf: dict): diff --git a/src/neo4j_retriever.py b/src/neo4j_retriever.py index 9e7fd5d..e43418d 100644 --- a/src/neo4j_retriever.py +++ b/src/neo4j_retriever.py @@ -1,6 +1,26 @@ +# src/neo4j_retriever.py + +import os +import logging +from datetime import datetime from langchain_neo4j import Neo4jVector from langchain_openai import OpenAIEmbeddings +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) + class Neo4jKnowledgeRetriever: def __init__(self, neo4j_conf: dict, embedding_client): neo4j_uri = neo4j_conf.get("uri") diff --git a/src/project.py b/src/project.py new file mode 100644 index 0000000..66eaaf0 --- /dev/null +++ b/src/project.py @@ -0,0 +1,728 @@ +""" +软件知识图谱类定义 +根据Ontology_Layer.txt文件中的知识图谱信息创建 +""" + +from abc import ABC, abstractmethod +import json + + +class ProjectToolkit(ABC): + """ + 项目类(抽象基类) + 描述: 代表整个项目结构的顶层容器 + """ + + def __init__(self): + self.project_division_set = ProjectDivisionItem() # 项目划分集对象 + + # 项目划分查询方法 + + @abstractmethod + def get_division_by_name(self, name): + """ + 通过名称获取项目划分对象 + + Args: + name_part (str): 项目划分节点名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (List[Dict[str, Any]]): 成功时返回的数据列表,失败时为空列表 + """ + pass + + @abstractmethod + def get_division_item_by_path(self, path): + """ + 通过路径获取项目划分对象 + + Args: + path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Dict[str, Any]): 成功时返回的项目划分对象数据,失败时为空字典 + """ + pass + + @abstractmethod + def get_division_node_by_parent_and_name(self, parent_path, partial_name): + """ + 通过父节点路径和模糊节点名称获取项目划分对象,包括子节点 + + Args: + parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 + partial_name (str): 目标节点的模糊或不完整名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (List[Dict[str, Any]]): 成功时返回的数据列表,失败时为空列表 + """ + pass + + # 工程量查询方法 + @abstractmethod + def get_quantities_by_paths(self, paths_str): + """ + 获取指定项目路径下的工程量对象 + + Args: + paths_str (str): 以'/'分隔的多级节点路径 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Dict[str, Any]): 成功时返回的节点数据字典,失败时为空字典 {} + """ + pass + + @abstractmethod + def get_quantities_node_by_parent_and_code(self, parent_path, quantity_type=None, code=None): + """ + 通过父节点路径和编码获取工程量对象(定额、主材或设备),包括子节点 + + Args: + parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 + quantity_type (str): 工程量类型('定额'、'主材'、'设备'或None表示所有类型) + code (str): 工程量编码,以'/'分隔的多个编码 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[List[Dict[str, Any]], Dict]): 成功时返回的数据列表或字典,失败时为空列表 [] + """ + pass + + @abstractmethod + def get_quantities_node_by_parent_and_name(self, parent_path, partial_name, quantity_type=None): + """ + 通过父节点路径、模糊节点名称和类型获取工程量对象(主材或者设备),包括子节点 + + Args: + parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 + partial_name (str): 目标节点的模糊或不完整名称 + quantity_type (str): 工程量类型('定额'、'主材'、'设备') + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[List[Dict[str, Any]], Dict]): 成功时返回的数据列表,失败时为空列表 [] + """ + pass + + # 材机查询方法 + @abstractmethod + def get_material_equipment_by_path(self, paths_str): + """ + 通过路径获取材机对象(MaterialOrEquipment 类型节点) + + Args: + path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} + """ + pass + + @abstractmethod + def get_material_equipment_by_parent_and_code(self, parent_path, code): + """ + 通过父节点路径和编码获取材机对象 + + Args: + parent_path (str): 父节点的部分路径,以'/'分隔的多级节点路径 + code (str): 目标节点的编码属性值 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} + """ + pass + + # 取费查询方法 + @abstractmethod + def get_fee_template_by_path(self, paths_str): + """ + 通过路径获取取费表模板节点 + + Args: + path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 + 例如:工程数据/取费表模板/余物清理/线路取费表(余物清理)/直接费 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} + """ + pass + + @abstractmethod + def get_fee_template_by_parent_and_name(self, parent_path, partial_name): + """ + 通过父节点路径和节点名称获取取费表模板节点 + + Args: + parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 + 例如:工程数据/取费表模板/余物清理/线路取费表(余物清理) + node_name (str): 目标节点的名称,例如:直接费 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} + """ + pass + + # 费用表查询方法 + @abstractmethod + def get_fee_schedule_on_auxiliary_expense_table(self, table_name, fee_name, fee: str): + """ + 在辅助费用表中查找费用 + + Args: + table_name (str): 费用表名称 + fee_name (str): 要查找的费用名称(可能在多级子节点中) + fee_attribute (str): 费用值属性名 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} + """ + pass + + @abstractmethod + def get_fee_schedule_on_other_expense_table(self, table_name, fee_name, fee): + """ + 在其它费用表中查找费用 + + Args: + table_name (str): 费用表名称 + fee_name (str): 要查找的费用名称(可能在多级子节点中) + fee_attribute (str): 费用值属性名 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} + """ + pass + + @abstractmethod + def get_fee_schedule_on_land_acquisition_fee_table_table(self, table_name, fee_name, fee): + """ + 在其中:场地征用费用表中查找费用 + + Args: + table_name (str): 费用表名称 + fee_name (str): 要查找的费用名称(可能在多级子节点中) + fee_attribute (str): 费用值属性名 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} + """ + pass + + @abstractmethod + def get_fee_schedule_on_installation_price_difference_table(self, table_name, fee_name, fee): + """ + 在安装价差费用表中查找费用 + + Args: + table_name (str): 费用表名称 + fee_name (str): 要查找的费用名称(可能在多级子节点中) + fee_attribute (str): 费用值属性名 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} + """ + pass + + @abstractmethod + def get_fee_schedule_on_Engineering_Cost_table(self, table_name, fee_name, fee): + """ + 在工程费用表中查找费用 + + Args: + table_name (str): 费用表名称 + fee_name (str): 要查找的费用名称(可能在多级子节点中) + fee_attribute (str): 费用值属性名 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} + """ + pass + + # 工程属性查询方法 + @abstractmethod + def get_project_property(self, property_name): + """ + 通过属性名称获取工程属性 + + Args: + property_name (str): 属性名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 项目划分查找取费表 + @abstractmethod + def get_fee_table_by_project_division(self, project_division_path, fee_name): + """ + 通过项目划分路径和取费名称查找费用 + + Args: + project_division_path (str): 项目划分节点的路径 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 清单查找取费表 + @abstractmethod + def get_fee_table_by_list(self, parent_path, list_code, list_unit, fee_name): + """ + 通过清单名称和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + list_code (str): 清单编号 + list_unit (str): 清单单位 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 定额节点查找合价 + @abstractmethod + def get_fee_table_by_quoto_code(self, parent_path, quantity_type, code, fee_name): + """ + 通过父级路径、工程量类型、定额编码和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + quantity_type (str): 工程量类型 + code (str): 定额编码 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 工程量节点查找合价 + @abstractmethod + def get_fee_table_by_quantities_name(self, parent_path, quantity_type, quantity_name, fee_name): + """ + 通过父级路径、工程量类型、工程量名称和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + quantity_type (str): 工程量类型 + quantity_name (str): 工程量名称 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 材机节点查找市场价 + @abstractmethod + def get_fee_by_material_equipment_code(self, parent_path, material_equipment_code, fee_name): + """ + 通过父级路径、材机编码和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + material_equipment_code (str): 材机编码 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + # 查找清单节点 + @abstractmethod + def get_fee_table_by_list_name(self, parent_path, list_code, unit): + """ + 通过父级路径、清单编号和单位查找清单 + + Args: + parent_path (str): 父级路径 + list_code (str): 清单编号 + unit (str): 单位 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + pass + + +class ProjectDivisionSet: + """ + 项目划分项 + 描述: 代表项目结构中的层级条目,具有自身的属性,并且可以包含ProjectDivisionTree(项目划分树) + + """ + + def __init__(self): + self.name = None # xsd:string + + +class ProjectDivisionTree: + """ + 项目划分项 + 描述: 代表项目结构中的层级条目,具有自身的属性,并且可以包含ProjectDivisionItem(项目划分项) + """ + + def __init__(self): + self.name = None # xsd:string + + +class ProjectDivisionItem: + """ + 项目划分项 + 描述: 代表项目结构中的层级条目,具有自身的属性,并且可以包含子项目划分项或详细工作项 + JSON对应: ProjectDivisionSet数组中的对象,或ProjectDivisionItem的children数组中type为"项目划分"的对象 + """ + + def __init__(self): + self.GUID = None # xsd:string + self.id = None # xsd:string + self.name = None # xsd:string + self.代码 = None # xsd:string (可选) + self.费率 = None # xsd:string + self.单位 = None # xsd:string (可选) + self.取费表id = None # xsd:string + self.颜色标记 = None # xsd:string + self.取费表 = None # xsd:string + self.合价含税 = None # xsd:string (可选) + self.type = None # xsd:string + self.专业类型 = None # xsd:string + self.资源库列表 = None # xsd:list (可选) + self.notCheck = None # xsd:string (可选) + + +class ProjectQuantity: + """ + 工程量 + 描述: 代表项目划分项(ProjectDivisionItem)下的具体工作单元或物料项,是定额、主材、设备的父类型 + """ + + def __init__(self): + self.id = None # xsd:string + self.类型 = None # xsd:string ("0"为定额,"1"为主材,"5"为设备) + self.name = None # xsd:string + self.编码 = None # xsd:string + self.单位 = None # xsd:string + self.数量 = None # xsd:string + self.资源库名称 = None # xsd:string + self.投标数量 = None # xsd:string (可选) + self.投标单价 = None # xsd:string (可选) + self.特征段 = None # xsd:string (可选) + self.关联父级量 = None # xsd:string (可选) + self.颜色标记 = None # xsd:string (可选) + self.单价不含税 = None + self.cost_set = None # xsd:CostSet + + +class Ration(ProjectQuantity): + """ + 定额 + 描述: 代表一种标准的工程量条目,通常包含详细的工、料、机消耗标准 + """ + + def __init__(self): + super().__init__() + self.计算式 = None # xsd:string + self.中标计算式 = None # xsd:string + self.人工费 = None # xsd:string + self.机械费 = None # xsd:string + self.甲供材料费不含税 = None # xsd:string + self.材料费 = None # xsd:string + self.定额系数 = None # xsd:string + self.人工系数 = None # xsd:string + self.材料系数 = None # xsd:string + self.机械系数 = None # xsd:string + self.定额范围 = None # xsd:string + self.定额章节名称 = None # xsd:string + self.费用类型 = None # xsd:string + self.甲供材料费含税 = None # xsd:string + self.投标合价 = None # xsd:string + self.其中甲供材料费 = None # xsd:string + self.合价不含税 = None # xsd:string + self.基价 = None # xsd:string + self.所属定额库 = None # xsd:string + + def __str__(self): + """返回定额的字符串表示""" + attrs = {k: v for k, v in self.__dict__.items() if not k.startswith("_")} + return json.dumps(attrs, ensure_ascii=False, indent=2) + + +class Material(ProjectQuantity): + """ + 主材 + 描述: 代表工程中使用的主要材料 + """ + + def __init__(self): + super().__init__() + self.规格型号 = None # xsd:string + self.损耗率 = None # xsd:string + self.供货方 = None # xsd:string + self.集中配送 = None # xsd:string (可选) + self.单重 = None # xsd:string (可选) + self.市场价不含税 = None # xsd:string + self.市场价含税 = None # xsd:string + self.单价含税 = None # xsd:string + self.结算市场价不含税 = None # xsd:string (可选) + self.结算市场价含税 = None # xsd:string (可选) + self.基准价不含税 = None # xsd:string (可选) + self.基准价含税 = None # xsd:string (可选) + self.费用类型 = None # xsd:string + self.增值税率 = None # xsd:string (可选) + self.合价含税 = None # xsd:string + self.合价不含税 = None # xsd:string + self.线重 = None # xsd:string (可选) + self.制造长度 = None # xsd:string (可选) + self.截面积 = None # xsd:string (可选) + + def __str__(self): + """返回材料的字符串表示""" + attrs = {k: v for k, v in self.__dict__.items() if not k.startswith("_")} + return json.dumps(attrs, ensure_ascii=False, indent=2) + + +class Equipment(ProjectQuantity): + """ + 设备 + 描述: 代表工程中安装或使用的设备 + """ + + def __init__(self): + super().__init__() + self.规格型号 = None # xsd:string + self.供货方 = None # xsd:string + self.运杂费率 = None # xsd:string (可选) + self.单价含税 = None # xsd:string + self.设备类型 = None # xsd:string (可选) + self.增值税率 = None # xsd:string (可选) + self.合价含税 = None # xsd:string + self.合价不含税 = None # xsd:string + + +class MaterialOrEquipment: + """ + 材机 + 描述: 代表DetailedWorkItem中所列出的具体材料、人工或机械设备及其详细信息 + """ + + def __init__(self): + self.id = None # xsd:string + self.编码 = None # xsd:string + self.名称 = None # xsd:string + self.单位 = None # xsd:string + self.类型 = None # xsd:string + self.供货方 = None # xsd:string + self.预算价不含税 = None # xsd:string + self.市场价不含税 = None # xsd:string + self.预算价含税 = None # xsd:string + self.市场价含税 = None # xsd:string + self.结算预算价不含税 = None # xsd:string + self.结算市场价不含税 = None # xsd:string + self.结算预算价含税 = None # xsd:string + self.结算市场价含税 = None # xsd:string + self.暂估价 = None # xsd:string + self.拆分 = None # xsd:string + self.全口径市场价不含税 = None # xsd:string + self.全口径市场价含税 = None # xsd:string + self.商品砼 = None # xsd:string + self.数量 = None # xsd:string + self.是否未计价 = None # xsd:string + + +class FeeTableTemplateItem: + """ + 取费表模板项 + 描述: + """ + + def __init__(self): + self.name = None # xsd:string + self.OutlayID = None # xsd:string + self.type = None # xsd:string + self.profession = None # xsd:string + + +class FeeCollection: + """ + 取费 + 描述: + """ + + def __init__(self): + self.name = None # xsd:string + self.serialNumber = None # xsd:string + self.code = None # xsd:string + self.base = None # xsd:string + self.rate = None # xsd:string + + +class FeeScheduleItem: + """ + 费用表项 + 描述: + """ + + def __init__(self): + self.name = None # xsd:string + + +class Fee: + """ + 取费 + 描述: + """ + + def __init__(self): + self.name = None # xsd:string + self.serialNumber = None # xsd:string + self.code = None # xsd:string + self.rate = None # xsd:string + self.amount = None # xsd:string + self.输出 = None # xsd:string (可选) + self.取费基数 = None # xsd:string (可选) + self.编制依据 = None # xsd:string (可选) + self.编码 = None # xsd:string (可选) + self.备注 = None # xsd:string (可选) + self.表一显示 = None # xsd:string (可选) + self.报表输出 = None # xsd:string (可选) + self.建安合计费 = None # xsd:string (可选) + self.合计费 = None # xsd:string (可选) + self.占总计 = None # xsd:string (可选) + self.建筑费 = None # xsd:string (可选) + self.安装费 = None # xsd:string (可选) + self.设备费 = None # xsd:string (可选) + self.其他费 = None # xsd:string (可选) + self.施工费 = None # xsd:string (可选) + self.单位投资 = None # xsd:string (可选) + +class ProjectBuilder: + # 存储注册的工具类 + _registry = None + _config = {} + + """项目工具工厂类""" + + def __init__(self): + pass + + @classmethod + def register(cls, toolkit_class: type, config: dict): + """ + 注册工具类到工厂 + + 参数: + toolkit_class: 继承自ProjectToolkit的具体工具类 + """ + if not issubclass(toolkit_class, ProjectToolkit): + raise TypeError(f"{toolkit_class.__name__} 必须继承自 ProjectToolkit") + + cls._config = config + cls._registry = toolkit_class + + @classmethod + def build(cls) -> ProjectToolkit: + """ + 创建工具实例 + + 参数: + + 返回: + 实例化的工具对象 + """ + if cls._registry is None: + raise KeyError(f"未注册的类,请先注册类") + + + return cls._registry(cls._config) diff --git a/src/project_implementation.py b/src/project_implementation.py new file mode 100644 index 0000000..d06af78 --- /dev/null +++ b/src/project_implementation.py @@ -0,0 +1,3035 @@ +from neo4j import GraphDatabase +from src.project import * +import atexit +from typing import Tuple, List, Dict, Any, Optional +import logging +from src.config import Config + +logger = logging.getLogger("project_implementation") +config = Config() + + +class ProjectToolkitNeo4j(ProjectToolkit): + """ + 基于Neo4j数据库的项目类实现 + """ + + def __init__(self, neo4j_driver): + logger.info("开始初始化Neo4j连接") + """ + 初始化Neo4j连接 + + Args: + neo4j_driver: Neo4j驱动实例,必须提供 + """ + if neo4j_driver is None: + raise ValueError("必须提供Neo4j驱动实例") + + super().__init__() + + # 保存驱动实例 + self.driver = neo4j_driver + self.external_driver = True # 标记为外部驱动,不在close时关闭 + self.session = self.driver.session() + + # 初始化其他必要的数据结构 + self.material_equipment_dict = {} # 材机字典,键为ID + self.fee_templates = {} # 取费表模板字典,键为ID + self.fee_schedules = {} # 费用表字典,键为ID + self.project_properties = {} # 工程属性字典 + logger.info("Neo4j连接初始化完成") + + def close(self): + logger.info("开始关闭数据库连接") + """ + 关闭数据库连接 + """ + if self.session: + self.session.close() + # 仅在非外部驱动的情况下关闭driver + if self.driver and not self.external_driver: + self.driver.close() + logger.info("数据库连接已关闭") + + def debug_path(self, path): + path_parts = path.split("/") + print(f"调试路径: {path}") + + # 检查每一级路径是否存在 + for i in range(len(path_parts)): + partial_path = "/".join(path_parts[: i + 1]) + query = """ + MATCH (n) + WHERE n.name = $name + RETURN n.name as name + """ + result = self.session.run(query, name=path_parts[i]) + record = result.single() + exists = "存在" if record else "不存在" + print(f" 节点 '{path_parts[i]}' {exists}") + + # 通用节点查询方法 + def get_node_by_path(self, path, node_labels=None): + """ + 通过路径获取节点对象 + + Args: + path (str): 以'/'分隔的多级节点路径 + node_labels (list): 节点标签列表,用于过滤结果 + + Returns: + dict|None: 节点数据,如果路径不存在返回None + """ + if not path: + return None + + # 分割路径为各个部分 + path_parts = path.split("/") + + # 构建查询 + if len(path_parts) == 1: + # 只有一级路径,直接查询 + if node_labels: + labels_str = ":" + "|:".join(node_labels) + query = f""" + MATCH (n{labels_str}) + WHERE n.name = $name + RETURN n LIMIT 1 + """ + else: + query = """ + MATCH (n) + WHERE n.name = $name + RETURN n LIMIT 1 + """ + params = {"name": path_parts[0]} + else: + # 多级路径,构建路径查询 + last_part = path_parts[-1] + if node_labels: + labels_str = ":" + "|".join(node_labels) + query = f""" + MATCH path = (root)-[*]->(target{labels_str}) + WHERE target.name = $last_part + RETURN target as n LIMIT 1 + """ + else: + query = """ + MATCH path = (root)-[*]->(target) + WHERE target.name = $last_part + RETURN target as n LIMIT 1 + """ + params = {"last_part": last_part} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + return None + + return record["n"] + except Exception as e: + print(f"获取节点对象时出错: {e}") + return None + + # 项目划分查询方法 + def get_division_item_by_path(self, path) -> dict: + """ + 通过路径获取项目划分对象 + + Args: + path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Dict[str, Any]): 成功时返回的项目划分对象数据,失败时为空字典 + """ + # 初始化返回结果 + code = 200 + message = "Ok" + status_flag = True + data = {} + + helper_info = [] + error = "" + + try: + # 获取节点数据 + node_data = self.get_node_by_path(path, ["ProjectDivisionItem"]) + + if not node_data: + code = 201 + status_flag = False + error = f"找不到路径: {path} 上的ProjectDivisionItem节点" + + # 提取父路径 + path_parts = path.split("/") + if len(path_parts) > 1: + parent_path = "/".join(path_parts[:-1]) + parent_name = path_parts[-2] # 父节点名称 + + # 获取父节点 + parent_node = self.get_node_by_path(parent_path) + + if parent_node: + # 查询父节点下所有类型为ProjectDivisionItem的子节点 + query = """ + MATCH (p)-[*1..1]->(q:ProjectDivisionItem) + WHERE p.name = $parent_name + RETURN q.name as name + """ + params = {"parent_name": parent_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询父节点下的子节点时出错: {str(e)}"] + + # 拼接 message + message = f"错误信息:{error}; 辅助信息: {helper_info}" + + else: + # 创建项目划分对象并填充属性 + item = ProjectDivisionItem() + for key, value in node_data.items(): + if hasattr(item, key): + setattr(item, key, value) + + # 将对象的属性转换为字典 + for key, value in vars(item).items(): + if not key.startswith("_"): # 排除私有属性 + data[key] = value + + except Exception as e: + import traceback + + error_details = traceback.format_exc() + print(f"查询出错: {error_details}") + + code = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 最终统一返回格式包装成列表 + return {"code": code, "message": message, "status": status_flag, "data": data} + + def get_division_node_by_parent_and_name(self, parent_path, partial_name) -> dict: + """ + 通过父节点路径和模糊节点名称获取项目划分对象,包括子节点 + + Args: + parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 + partial_name (str): 目标节点的模糊或不完整名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (List[Dict[str, Any]]): 成功时返回的数据列表,失败时为空列表 + """ + code = 200 + message = "Ok" + status_flag = True + data = [] + + helper_info = [] + error = "" + + if not partial_name: + code = 201 + status_flag = False + message = "节点名称不能为空" + else: + try: + # 第一步:找到父节点 + parent_node_data = self.get_node_by_path(parent_path) + + if not parent_node_data: + code = 201 + status_flag = False + error = f"找不到父节点路径: {parent_path}" + + path_parts = parent_path.split("/") + if len(path_parts) > 1: + grandparent_path = "/".join(path_parts[:-1]) + grandparent_name = path_parts[-2] + + query = """ + MATCH (p)-[*1..1]->(q:ProjectDivisionItem) + WHERE p.name = $grandparent_name + RETURN q.name as name + """ + params = {"grandparent_name": grandparent_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + + if not helper_info: + broader_query = """ + MATCH (p {name: $grandparent_name})-[*1..2]->(q:ProjectDivisionItem) + RETURN q.name as name LIMIT 50 + """ + broader_result = self.session.run(broader_query, **params) + for record in broader_result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询辅助信息时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息: {helper_info}" + else: + parent_name = parent_node_data.get("name") + if not parent_name: + code = 201 + status_flag = False + message = "父节点数据中没有name字段" + else: + # 第二步:查询匹配的子节点 + query = """ + MATCH (p {name: $parent_name})-[*1..1]-(n:ProjectDivisionItem) + WHERE toLower(n.name) CONTAINS toLower($partial_name) + RETURN n LIMIT 50 + """ + params = {"parent_name": parent_name, "partial_name": partial_name.strip()} + + result = self.session.run(query, **params) + records = list(result) + + items = [] + for record in records: + node_data = record["n"] + item = ProjectDivisionItem() + for key, value in node_data.items(): + if hasattr(item, key): + setattr(item, key, value) + items.append(vars(item)) + + if not items: + code = 201 + status_flag = False + error = f"在父节点路径'{parent_path}' 下找不到名称包含 '{partial_name}' 的节点" + + helper_query = """ + MATCH (p)-[*1..1]->(q:ProjectDivisionItem) + WHERE p.name = $parent_name + RETURN q.name as name + """ + helper_params = {"parent_name": parent_name} + + try: + helper_result = self.session.run(helper_query, **helper_params) + for record in helper_result: + if record["name"]: + helper_info.append(record["name"]) + + if not helper_info: + broader_query = """ + MATCH (p)-[*1..2]->(q:ProjectDivisionItem) + WHERE p.name = $parent_name + RETURN q.name as name LIMIT 50 + """ + broader_result = self.session.run(broader_query, **helper_params) + for record in broader_result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询辅助信息时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息: {helper_info}" + else: + data = items + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 最终统一返回格式包装成列表 + return {"code": code, "message": message, "status": status_flag, "data": data} + + def get_division_by_name(self, name_part) -> dict: + """ + 通过名称获取项目划分对象 + + Args: + name_part (str): 项目划分节点名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (List[Dict[str, Any]]): 成功时返回的数据列表,失败时为空列表 + """ + code = 200 + message = "Ok" + status_flag = True + data = [] + + helper_info = [] + error = "" + + if not name_part or name_part.strip() == "": + code = 201 + status_flag = False + message = "输入的名称部分不能为空" + else: + try: + # 直接查询所有类型为ProjectDivisionItem且name包含输入名称的节点 + query = """ + MATCH (n:ProjectDivisionItem) + WHERE toLower(n.name) CONTAINS toLower($name_part) + RETURN n LIMIT 50 + """ + params = {"name_part": name_part.strip()} + + result = self.session.run(query, parameters=params) + records = list(result) + + if not records: + code = 201 + status_flag = False + error = f"找不到名称包含 '{name_part}' 的ProjectDivisionItem节点" + + # 提供一些可能相近的节点名称作为辅助信息 + broader_query = """ + MATCH (n:ProjectDivisionItem) + RETURN n.name AS name LIMIT 20 + """ + + try: + broader_result = self.session.run(broader_query) + for record in broader_result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询辅助信息时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息: {helper_info}" + else: + items = [] + for record in records: + node_data = record["n"] + item = ProjectDivisionItem() + for key, value in node_data.items(): + if hasattr(item, key): + setattr(item, key, value) + + # 获取节点的完整路径作为附加信息 + node_path_query = """ + MATCH path = (root)-[*]->(target:ProjectDivisionItem) + WHERE id(target) = $node_id + WITH [node in nodes(path) | node.name] AS path_names + RETURN path_names + """ + path_result = self.session.run(node_path_query, parameters={"node_id": node_data.id}) + path_record = path_result.single() + + node_dict = vars(item) + if path_record: + node_dict["完整路径"] = "/".join([name for name in path_record["path_names"] if name]) + + items.append(node_dict) + + data = items + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 最终统一返回格式包装成列表 + return {"code": code, "message": message, "status": status_flag, "data": data} + + # 工程量查询方法 + def get_quantities_by_paths(self, paths_str) -> dict: + """ + 获取指定项目路径下的工程量对象 + + Args: + paths_str (str): 以'/'分隔的多级节点路径 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Dict[str, Any]): 成功时返回的节点数据字典,失败时为空字典 {} + """ + code = 200 + message = "Ok" + status_flag = True + data = {} + + helper_info = [] + error = "" + + if not paths_str: + code = 201 + status_flag = False + message = "路径不能为空" + else: + try: + # 使用通用方法获取节点,考虑所有可能的工程量类型 + node_data = self.get_node_by_path(paths_str, ["ProjectQuantity", "Quota", "MainMaterial", "Equipment"]) + + if node_data: + # 根据节点标签或类型属性创建对应类型的对象 + quantity = self._create_quantity_object(node_data) + + # 填充属性 + for key, value in node_data.items(): + if hasattr(quantity, key): + setattr(quantity, key, value) + + # 将对象转为字典 + data = vars(quantity) + else: + code = 201 + status_flag = False + error = f"找不到路径: {paths_str}" + + path_parts = paths_str.split("/") + if len(path_parts) > 1: + parent_path = "/".join(path_parts[:-1]) + target_name = path_parts[-1] + + # 获取父节点 + parent_node_data = self.get_node_by_path(parent_path, ["ProjectDivisionItem"]) + + if parent_node_data: + # 查询父节点下的所有符合条件的节点 + query = """ + MATCH (p)-[*1..1]->(n) + WHERE p.name = $parent_name AND + any(label IN labels(n) WHERE label IN $allowed_labels) + RETURN n.name as name, labels(n) as labels + """ + params = { + "parent_name": parent_node_data.get("name", ""), + "allowed_labels": ["ProjectQuantity", "Quota", "MainMaterial", "Equipment"], + } + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询辅助信息时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息: {helper_info}" + data = {} + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code = 201 + status_flag = False + message = f"查询失败: {str(e)}" + data = {} + + # 最终统一返回格式包装成列表 + return {"code": code, "message": message, "status": status_flag, "data": data} + + def get_quantities_node_by_parent_and_code(self, parent_path, quantity_type=None, code=None) -> dict: + """ + 通过父节点路径和编码获取工程量对象(定额、主材或设备),包括子节点 + + 执行三步查询: + 1. 找到对应路径的父节点 + 2. 找到父节点下多级子节点中节点类型为参数中节点类型的所有节点 + 3. 在找到的节点中查找编码与传入编码匹配的节点并返回 + + Args: + parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 + quantity_type (str): 工程量类型('定额'、'主材'、'设备'或None表示所有类型) + code (str): 工程量编码,以'/'分隔的多个编码 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[List[Dict[str, Any]], Dict]): 成功时返回的数据列表或字典,失败时为空列表 [] + """ + code_status = 200 + message = "Ok" + status_flag = True + data = [] + helper_info = [] + error = "" + + # 参数检查 + if not code or code.strip() == "": + code_status = 201 + status_flag = False + message = "编码不能为空" + + valid_types = ["定额", "主材", "设备", None] + if quantity_type not in valid_types: + code_status = 201 + status_flag = False + message = f"无效的工程量类型: '{quantity_type}';有效类型为 {valid_types}" + + elif code_status == 200: + try: + # 步骤1: 获取父节点 + parent_node = self.get_node_by_path(parent_path) + if not parent_node: + code_status = 201 + status_flag = False + error = f"找不到父节点路径: {parent_path}" + + # 提供路径中存在的部分作为辅助信息 + path_parts = parent_path.split("/") + existing_parts = [] + for i in range(len(path_parts)): + partial_path = "/".join(path_parts[: i + 1]) + if self.get_node_by_path(partial_path): + existing_parts.append(partial_path) + helper_info = existing_parts + + message = f"错误信息:{error}; 辅助信息: {helper_info}" + + else: + parent_name = parent_node.get("name", "") + + # 构建类型条件 + type_condition = "" + if quantity_type == "定额": + type_condition = "(q:ProjectQuantity:Quota OR q.类型 = '0')" + elif quantity_type == "主材": + type_condition = "(q:ProjectQuantity:MainMaterial OR q.类型 = '1')" + elif quantity_type == "设备": + type_condition = "(q:ProjectQuantity:Equipment OR q.类型 = '5')" + else: + type_condition = "q:ProjectQuantity" + + # 步骤2: 查找父节点下的所有指定类型的子节点 + child_query = f""" + MATCH (p)-[*1..10]->(q) + WHERE p.name = $parent_name AND {type_condition} + RETURN q + """ + child_params = {"parent_name": parent_name} + + child_result = self.session.run(child_query, **child_params) + child_nodes = [record["q"] for record in child_result] + + if not child_nodes: + code_status = 201 + status_flag = False + error = f"在父节点路径 '{parent_path}' 下找不到类型为 '{quantity_type}' 的节点" + + # 尝试提供父节点下的子节点名称作为辅助信息 + helper_query = """ + MATCH (p)-[*1..10]->(q) + WHERE p.name = $parent_name + RETURN DISTINCT q.name as node_name + LIMIT 20 + """ + helper_result = self.session.run(helper_query, **child_params) + helper_info = [record["node_name"] for record in helper_result if record["node_name"]] + message = f"错误信息:{error}; 辅助信息: {helper_info}" + + else: + # 步骤3: 过滤编码匹配的节点 + code_conditions = [cp.strip() for cp in code.split("/") if cp.strip()] + if not code_conditions: + code_status = 201 + status_flag = False + message = "提供的编码为空" + else: + matching_nodes = [] + for node in child_nodes: + node_code = node.get("编码") + if node_code and str(node_code) in code_conditions: + matching_nodes.append(node) + + if not matching_nodes: + code_status = 201 + status_flag = False + error = f"在父节点路径'{parent_path}' 下找不到编码'{code}'匹配的节点" + + # 返回所有找到的子节点编码作为辅助信息 + helper_info = [node.get("编码") for node in child_nodes if node.get("编码")] + message = f"错误信息:{error}; 辅助信息: {helper_info}" + else: + result_data = [] + for node in matching_nodes: + quantity = self._create_quantity_object(node, quantity_type) + + for key, value in node.items(): + if hasattr(quantity, key): + setattr(quantity, key, value) + + attrs = {} + for key, value in vars(quantity).items(): + if not key.startswith("_"): # 排除私有属性 + attrs[key] = value + + result_data.append(attrs) + + data = result_data + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + data = [] + + # 最终统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + def get_quantities_node_by_parent_and_name(self, parent_path, quantity_type, partial_name) -> dict: + """ + 通过父节点路径、模糊节点名称和类型获取工程量对象(主材或者设备),包括子节点 + + 执行三步查询: + 1. 找到对应路径的父节点 + 2. 找到父节点下多级子节点中节点类型为参数中节点类型的所有节点 + 3. 在找到的节点中找到名称中包含节点模糊名称的节点返回 + + Args: + parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 + partial_name (str): 目标节点的模糊或不完整名称 + quantity_type (str): 工程量类型('定额'、'主材'、'设备') + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[List[Dict[str, Any]], Dict]): 成功时返回的数据列表,失败时为空列表 [] + """ + code_status = 200 + message = "Ok" + status_flag = True + data = [] + helper_info = [] + error = "" + + if not partial_name or partial_name.strip() == "": + code_status = 201 + status_flag = False + message = "节点名称不能为空" + + valid_types = ["定额", "主材", "设备"] + if quantity_type not in valid_types: + code_status = 201 + status_flag = False + message = f"错误信息:无效的工程量类型'{quantity_type}';辅助信息:有效类型为 {valid_types}" + + elif code_status == 200: + try: + # 步骤1: 获取父节点 + parent_node = self.get_node_by_path(parent_path) + if not parent_node: + code_status = 201 + status_flag = False + error = f"找不到父节点路径: {parent_path}" + + # 提供路径中存在的部分作为辅助信息 + path_parts = parent_path.split("/") + existing_parts = [] + for i in range(len(path_parts)): + partial_path = "/".join(path_parts[: i + 1]) + if self.get_node_by_path(partial_path): + existing_parts.append(partial_path) + helper_info = existing_parts + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + parent_name = parent_node.get("name", "") + + # 构建类型条件 + type_condition = "" + if quantity_type == "定额": + type_condition = "(q:ProjectQuantity:Quota OR q.类型 = '0')" + elif quantity_type == "主材": + type_condition = "(q:ProjectQuantity:MainMaterial OR q.类型 = '1')" + elif quantity_type == "设备": + type_condition = "(q:ProjectQuantity:Equipment OR q.类型 = '5')" + + # 步骤2: 查找父节点下的所有指定类型的子节点 + child_query = f""" + MATCH (p)-[*1..10]->(q) + WHERE p.name = $parent_name AND {type_condition} + RETURN q + """ + child_params = {"parent_name": parent_name} + + child_result = self.session.run(child_query, **child_params) + child_nodes = [record["q"] for record in child_result] + + if not child_nodes: + # 尝试使用路径最后一部分进行模糊匹配 + path_parts = parent_path.split("/") + last_part = path_parts[-1] if path_parts else "" + + fallback_query = f""" + MATCH (p)-[*1..10]->(q) + WHERE p.name CONTAINS $last_part AND {type_condition} + RETURN q LIMIT 100 + """ + fallback_params = {"last_part": last_part} + + fallback_result = self.session.run(fallback_query, **fallback_params) + child_nodes = [record["q"] for record in fallback_result] + + if not child_nodes: + code_status = 201 + status_flag = False + error = f"在父节点 '{parent_name}' 下找不到类型为 '{quantity_type}' 的节点" + + # 尝试提供辅助信息 - 父节点下有哪些类型的节点 + helper_query = """ + MATCH (p)-[*1..10]->(q) + WHERE p.name = $parent_name + RETURN DISTINCT labels(q) as node_labels, q.类型 as node_type + LIMIT 20 + """ + helper_params = {"parent_name": parent_name} + + helper_result = self.session.run(helper_query, **helper_params) + helper_data = [] + for record in helper_result: + labels = record["node_labels"] if record["node_labels"] else [] + node_type = record["node_type"] if record["node_type"] else "未知" + helper_data.append(f"标签: {labels}, 类型: {node_type}") + + helper_info = helper_data + message = f"错误信息:{error}; 辅助信息:{helper_data}" + + else: + # 步骤3: 模糊匹配节点名称 + matching_nodes = [] + available_names = [] + + for node in child_nodes: + node_name = node.get("name", "") + if node_name: + available_names.append(node_name) + + if partial_name in str(node_name): + matching_nodes.append(node) + + if not matching_nodes: + direct_query = f""" + MATCH (q) + WHERE q.name CONTAINS $partial_name AND {type_condition} + RETURN q LIMIT 20 + """ + direct_params = {"partial_name": partial_name} + + direct_result = self.session.run(direct_query, **direct_params) + matching_nodes = [record["q"] for record in direct_result] + + if not matching_nodes: + code_status = 201 + status_flag = False + message = f"错误信息:在父节点路径'{parent_path}' 下找不到名称包含 '{partial_name}' 的节点;辅助信息:{available_names}" + + else: + result_data = [] + for node in matching_nodes: + quantity = self._create_quantity_object(node, quantity_type) + + for key, value in node.items(): + if hasattr(quantity, key): + setattr(quantity, key, value) + + attrs = {} + for key, value in vars(quantity).items(): + if not key.startswith("_"): # 排除私有属性 + attrs[key] = value + + result_data.append(attrs) + + data = result_data + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 最终统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + # 辅助方法,用于根据节点数据创建对应类型的工程量对象 + def _create_quantity_object(self, node_data, quantity_type=None): + """ + 根据节点数据创建对应类型的工程量对象 + + Args: + node_data (dict): 节点数据 + quantity_type (str): 工程量类型('定额'、'主材'、'设备'或None) + + Returns: + ProjectQuantity: 创建的工程量对象 + """ + # 如果指定了类型,直接创建对应类型的对象 + if quantity_type == "定额": + return Ration() + elif quantity_type == "主材": + return Material() + elif quantity_type == "设备": + return Equipment() + + # 如果没有指定类型,尝试通过节点属性或标签判断 + if "类型" in node_data: + if node_data["类型"] == "0": + return Ration() + elif node_data["类型"] == "1": + return Material() + elif node_data["类型"] == "5": + return Equipment() + + # 通过标签判断 + labels = list(node_data.labels) if hasattr(node_data, "labels") else [] + if "Quota" in labels: + return Ration() + elif "MainMaterial" in labels: + return Material() + elif "Equipment" in labels: + return Equipment() + + # 默认返回基类对象 + return ProjectQuantity() + + # 材机查询方法实现 + def get_material_equipment_by_path(self, path: str) -> dict: + """ + 通过路径获取材机对象(MaterialOrEquipment 类型节点) + + Args: + path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} + """ + code = 200 + message = "Ok" + status_flag = True + data: dict = {} + helper_info = [] + + # 获取目标节点 + node_data = self.get_node_by_path(path) + + if not node_data: + code = 201 + status_flag = False + error = f"找不到路径: {path} 上的 MaterialOrEquipment 节点" + + # 提取父路径 + path_parts = path.split("/") + if len(path_parts) > 1: + parent_path = "/".join(path_parts[:-1]) # 父节点路径 + parent_name = path_parts[-2] # 父节点名称 + + # 获取父节点 + parent_node = self.get_node_by_path(parent_path) + if parent_node: + # 查询父节点下所有类型为 MaterialOrEquipment 的子节点名称 + query = """ + MATCH (p)-[*1..1]->(m:MaterialOrEquipment) + WHERE p.name = $parent_name + RETURN m.name AS name + """ + params = {"parent_name": parent_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询父节点下的材机子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 将节点属性转换为字典并过滤掉私有字段 + for key, value in node_data.items(): + if not key.startswith("_"): + data[key] = value + + # 统一返回格式包装成列表 + return {"code": code, "message": message, "status": status_flag, "data": data} + + def get_material_equipment_by_parent_and_code(self, parent_path, code) -> dict: + """ + 通过父节点路径和编码获取材机对象 + + Args: + parent_path (str): 父节点的部分路径,以'/'分隔的多级节点路径 + code (str): 目标节点的编码属性值 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + if not parent_path or not code: + code_status = 201 + status_flag = False + message = "父节点路径或要查找的编码不能为空" + + else: + try: + # 获取父路径最后一部分用于模糊匹配 + path_parts = parent_path.split("/") + last_part = path_parts[-1] + + # 查询父路径下所有MaterialOrEquipment节点,编码匹配给定code + query = """ + MATCH (p)-[*0..10]->(m:MaterialOrEquipment) + WHERE p.name CONTAINS $parent_name AND m.编码 = $code + RETURN m LIMIT 5 + """ + params = {"parent_name": last_part, "code": code} + + result = self.session.run(query, **params) + matched_nodes = [] + + for record in result: + node = record["m"] + properties = dict(node.items()) + matched_nodes.append(properties) + + if not matched_nodes: + code_status = 201 + status_flag = False + error = f"在路径包含 '{parent_path}' 的节点下没有找到编码为 '{code}' 的 MaterialOrEquipment 节点" + + # 尝试查询父节点下所有MaterialOrEquipment的编码作为辅助信息 + helper_query = """ + MATCH (p)-[*0..10]->(m:MaterialOrEquipment) + WHERE p.name CONTAINS $parent_name + RETURN m.编码 AS code, m.name AS name + LIMIT 5 + """ + + try: + helper_result = self.session.run(helper_query, parent_name=last_part) + for record in helper_result: + if record["code"] and record["name"]: + helper_info.append(f"{record['code']} - {record['name']}") + except Exception as e: + helper_info = [f"查询相似编码失败: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 成功找到,返回第一个节点的数据 + data = matched_nodes[0] + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + # 辅助方法,用于创建材机对象并填充属性 + def _create_material_object(self, node_data): + """ + 根据节点数据创建材机对象并填充属性 + + Args: + node_data (dict): 节点数据 + + Returns: + MaterialOrEquipment: 创建的材机对象 + """ + material = MaterialOrEquipment() + + # 填充属性 + for key, value in node_data.items(): + if hasattr(material, key): + setattr(material, key, value) + + return material + + # 取费表模板查询方法实现 + def get_fee_template_by_path(self, path: str) -> dict: + """ + 通过路径获取取费表模板节点 + + Args: + path (str): 项目划分节点的路径,以'/'分隔的多级节点路径 + 例如:工程数据/取费表模板/余物清理/线路取费表(余物清理)/直接费 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 获取目标节点 + node_data = self.get_node_by_path(path) + + if not node_data: + code_status = 201 + status_flag = False + error = f"找不到路径: {path} 上的 FeeCollection 节点" + + # 提取父路径 + path_parts = path.split("/") + if len(path_parts) > 1: + parent_path = "/".join(path_parts[:-1]) # 父节点路径 + parent_name = path_parts[-2] # 父节点名称 + + # 获取父节点 + parent_node = self.get_node_by_path(parent_path) + if parent_node: + # 查询父节点下所有类型为 FeeCollection 的子节点名称 + query = """ + MATCH (p)-[*1..1]->(f:FeeCollection) + WHERE p.name = $parent_name + RETURN f.name AS name + """ + params = {"parent_name": parent_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询父节点下的 FeeCollection 子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 将节点属性转换为字典并过滤掉私有字段 + for key, value in node_data.items(): + if not key.startswith("_"): + data[key] = value + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + def get_fee_template_by_parent_and_name(self, parent_path: str, node_name: str) -> dict: + """ + 通过父节点路径和节点名称获取取费表模板节点 + + Args: + parent_path (str): 父节点的路径,以'/'分隔的多级节点路径 + 例如:工程数据/取费表模板/余物清理/线路取费表(余物清理) + node_name (str): 目标节点的名称,例如:直接费 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List]): 成功时返回的节点属性数据字典,失败时为空字典 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 第一段:查找父节点 + parent_node_data = self.get_node_by_path(parent_path) + + if not parent_node_data: + code_status = 201 + status_flag = False + error = f"找不到父节点路径: {parent_path}" + + # 提取父节点的父路径 + parent_path_parts = parent_path.split("/") + if len(parent_path_parts) > 1: + grandparent_path = "/".join(parent_path_parts[:-1]) # 父节点的父路径 + grandparent_name = parent_path_parts[-2] # 父节点的父节点名称 + + # 获取父节点的父节点 + grandparent_node = self.get_node_by_path(grandparent_path) + if grandparent_node: + # 查询父节点的父节点下所有子节点名称 + query = """ + MATCH (gp)-[*1..1]->(n) + WHERE gp.name = $grandparent_name + RETURN n.name AS name + """ + params = {"grandparent_name": grandparent_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询父节点的父节点下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第二段:在父节点下查找目标节点 + parent_node_name = parent_path.split("/")[-1] # 父节点名称 + + # 查询父节点下指定名称的节点 + query = """ + MATCH (p)-[*1..1]->(n) + WHERE p.name = $parent_name AND n.name = $node_name + RETURN n + """ + params = {"parent_name": parent_node_name, "node_name": node_name} + + try: + result = self.session.run(query, **params) + target_node = None + + for record in result: + target_node = record["n"] + break + + if not target_node: + code_status = 201 + status_flag = False + error = f"在父节点 {parent_node_name} 下找不到名称为 {node_name} 的节点" + + # 查询父节点下所有类型为 FeeCollection 的子节点名称 + query = """ + MATCH (p)-[*1..1]->(f:FeeCollection) + WHERE p.name = $parent_name + RETURN f.name AS name + """ + params = {"parent_name": parent_node_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询父节点下的 FeeCollection 子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 将目标节点属性转换为字典并过滤掉私有字段 + for key, value in target_node.items(): + if not key.startswith("_"): + data[key] = value + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询目标节点时出错: {str(e)}" + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + # 辅助方法,用于创建取费表模板对象并填充属性 + def _create_fee_template_object(self, node_data): + """ + 根据节点数据创建取费表模板对象并填充属性 + + Args: + node_data (dict): 节点数据 + + Returns: + FeeTableTemplateItem: 创建的取费表模板对象 + """ + template = FeeTableTemplateItem() + + # 填充属性 + for key, value in node_data.items(): + if hasattr(template, key): + setattr(template, key, value) + + # 更新缓存 + if hasattr(template, "OutlayID") and template.OutlayID: + self.fee_templates[template.OutlayID] = template + + return template + + # 费用表查询方法实现 + def get_fee_schedule_on_auxiliary_expense_table(self, table_name: str, fee_name: str, fee_attribute: str) -> dict: + """ + 在辅助费用表中查找费用 + + Args: + table_name (str): 费用表名称 + fee_name (str): 要查找的费用名称(可能在多级子节点中) + fee_attribute (str): 费用值属性名 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 检查输入参数 + if not table_name or not fee_name or not fee_attribute: + code_status = 201 + status_flag = False + message = "输入参数不能为空" + + else: + # 第一步:查找父节点(费用表节点) + parent_path = f"工程/工程费用/{table_name}" + parent_node_data = self.get_node_by_path(parent_path) + + if not parent_node_data: + code_status = 201 + status_flag = False + error = f"找不到费用表节点: {parent_path}" + + # 查询"工程数据/工程费用"节点下所有子节点名称 + base_parent_node = self.get_node_by_path("工程/工程费用") + if base_parent_node: + query = """ + MATCH (p)-[*1..1]->(n) + WHERE p.name = '工程费用' + RETURN n.name AS name + """ + + try: + result = self.session.run(query) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询工程费用下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第二步:在费用表节点下查找费用节点(可能在多级子节点中) + fee_node = None + + # 递归查找费用节点,最多查找3级深度 + query = """ + MATCH (p)-[*1..3]->(f) + WHERE p.name = $table_name AND f.name = $fee_name + RETURN f LIMIT 1 + """ + params = {"table_name": table_name, "fee_name": fee_name} + + try: + result = self.session.run(query, **params) + all_records = result.data() + + if len(all_records) > 0: + fee_node = all_records[0]["f"] + + if not fee_node: + code_status = 201 + status_flag = False + error = f"在费用表 {table_name} 下找不到费用节点: {fee_name}" + + # 查询费用表节点下所有子节点名称(递归查找) + query = """ + MATCH (p)-[*1..3]->(n) + WHERE p.name = $table_name + RETURN DISTINCT n.name AS name + ORDER BY n.name + """ + params = {"table_name": table_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询费用表下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第三步:获取费用节点的属性值 + try: + if fee_node and hasattr(fee_node, "get"): + fee_value = fee_node.get(fee_attribute) + elif fee_node and isinstance(fee_node, dict): + fee_value = fee_node.get(fee_attribute) + else: + # 如果fee_node是Neo4j Node对象,尝试直接访问属性 + fee_value = ( + getattr(fee_node, fee_attribute, None) + if hasattr(fee_node, fee_attribute) + else fee_node.get(fee_attribute) if hasattr(fee_node, "get") else None + ) + + if fee_value is None: + code_status = 201 + status_flag = False + error = f"费用节点 {fee_name} 中找不到属性: {fee_attribute}" + + # 返回费用节点的所有可用属性名称 + try: + if hasattr(fee_node, "keys"): + helper_info = list(fee_node.keys()) + elif isinstance(fee_node, dict): + helper_info = list(fee_node.keys()) + else: + # 对于Neo4j Node对象 + helper_info = list(fee_node.keys()) if hasattr(fee_node, "keys") else [] + + # 过滤掉私有属性 + helper_info = [attr for attr in helper_info if not attr.startswith("_")] + + except Exception as e: + helper_info = [f"获取费用节点属性列表时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 成功获取属性值 + data = fee_value + + except Exception as e: + code_status = 201 + status_flag = False + message = f"获取费用属性值时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询费用节点时出错: {str(e)}" + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + def get_fee_schedule_on_other_expense_table(self, table_name: str, fee_name: str, fee_attribute: str) -> dict: + """ + 在其它费用表中查找费用 + + Args: + table_name (str): 费用表名称 + fee_name (str): 要查找的费用名称(可能在多级子节点中) + fee_attribute (str): 费用值属性名 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 检查输入参数 + if not table_name or not fee_name or not fee_attribute: + code_status = 201 + status_flag = False + message = "输入参数不能为空" + + else: + # 第一步:查找父节点(费用表节点) + parent_path = f"工程/工程费用/{table_name}" + parent_node_data = self.get_node_by_path(parent_path) + + if not parent_node_data: + code_status = 201 + status_flag = False + error = f"找不到费用表节点: {parent_path}" + + # 查询"工程数据/工程费用"节点下所有子节点名称 + base_parent_node = self.get_node_by_path("工程/工程费用") + if base_parent_node: + query = """ + MATCH (p)-[*1..1]->(n) + WHERE p.name = '工程费用' + RETURN n.name AS name + """ + + try: + result = self.session.run(query) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询工程费用下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第二步:在费用表节点下查找费用节点(可能在多级子节点中) + fee_node = None + + # 递归查找费用节点,最多查找3级深度 + query = """ + MATCH (p)-[*1..3]->(f) + WHERE p.name = $table_name AND f.name = $fee_name + RETURN f LIMIT 1 + """ + params = {"table_name": table_name, "fee_name": fee_name} + + try: + result = self.session.run(query, **params) + all_records = result.data() + + if len(all_records) > 0: + fee_node = all_records[0]["f"] + + if not fee_node: + code_status = 201 + status_flag = False + error = f"在费用表 {table_name} 下找不到费用节点: {fee_name}" + + # 查询费用表节点下所有子节点名称(递归查找) + query = """ + MATCH (p)-[*1..3]->(n) + WHERE p.name = $table_name + RETURN DISTINCT n.name AS name + ORDER BY n.name + """ + params = {"table_name": table_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询费用表下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第三步:获取费用节点的属性值 + try: + if fee_node and hasattr(fee_node, "get"): + fee_value = fee_node.get(fee_attribute) + elif fee_node and isinstance(fee_node, dict): + fee_value = fee_node.get(fee_attribute) + else: + # 如果fee_node是Neo4j Node对象,尝试直接访问属性 + fee_value = ( + getattr(fee_node, fee_attribute, None) + if hasattr(fee_node, fee_attribute) + else fee_node.get(fee_attribute) if hasattr(fee_node, "get") else None + ) + + if fee_value is None: + code_status = 201 + status_flag = False + error = f"费用节点 {fee_name} 中找不到属性: {fee_attribute}" + + # 返回费用节点的所有可用属性名称 + try: + if hasattr(fee_node, "keys"): + helper_info = list(fee_node.keys()) + elif isinstance(fee_node, dict): + helper_info = list(fee_node.keys()) + else: + # 对于Neo4j Node对象 + helper_info = list(fee_node.keys()) if hasattr(fee_node, "keys") else [] + + # 过滤掉私有属性 + helper_info = [attr for attr in helper_info if not attr.startswith("_")] + + except Exception as e: + helper_info = [f"获取费用节点属性列表时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 成功获取属性值 + data = fee_value + + except Exception as e: + code_status = 201 + status_flag = False + message = f"获取费用属性值时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询费用节点时出错: {str(e)}" + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + def get_fee_schedule_on_land_acquisition_fee_table_table( + self, table_name: str, fee_name: str, fee_attribute: str + ) -> dict: + """ + 在其中:场地征用费用表中查找费用 + + Args: + table_name (str): 费用表名称 + fee_name (str): 要查找的费用名称(可能在多级子节点中) + fee_attribute (str): 费用值属性名 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 检查输入参数 + if not table_name or not fee_name or not fee_attribute: + code_status = 201 + status_flag = False + message = "输入参数不能为空" + + else: + # 第一步:查找父节点(费用表节点) + parent_path = f"工程/工程费用/{table_name}" + parent_node_data = self.get_node_by_path(parent_path) + + if not parent_node_data: + code_status = 201 + status_flag = False + error = f"找不到费用表节点: {parent_path}" + + # 查询"工程数据/工程费用"节点下所有子节点名称 + base_parent_node = self.get_node_by_path("工程/工程费用") + if base_parent_node: + query = """ + MATCH (p)-[*1..1]->(n) + WHERE p.name = '工程费用' + RETURN n.name AS name + """ + + try: + result = self.session.run(query) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询工程费用下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第二步:在费用表节点下查找费用节点(可能在多级子节点中) + fee_node = None + + # 递归查找费用节点,最多查找3级深度 + query = """ + MATCH (p)-[*1..3]->(f) + WHERE p.name = $table_name AND f.name = $fee_name + RETURN f LIMIT 1 + """ + params = {"table_name": table_name, "fee_name": fee_name} + + try: + result = self.session.run(query, **params) + all_records = result.data() + + if len(all_records) > 0: + fee_node = all_records[0]["f"] + + if not fee_node: + code_status = 201 + status_flag = False + error = f"在费用表 {table_name} 下找不到费用节点: {fee_name}" + + # 查询费用表节点下所有子节点名称(递归查找) + query = """ + MATCH (p)-[*1..3]->(n) + WHERE p.name = $table_name + RETURN DISTINCT n.name AS name + ORDER BY n.name + """ + params = {"table_name": table_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询费用表下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第三步:获取费用节点的属性值 + try: + if fee_node and hasattr(fee_node, "get"): + fee_value = fee_node.get(fee_attribute) + elif fee_node and isinstance(fee_node, dict): + fee_value = fee_node.get(fee_attribute) + else: + # 如果fee_node是Neo4j Node对象,尝试直接访问属性 + fee_value = ( + getattr(fee_node, fee_attribute, None) + if hasattr(fee_node, fee_attribute) + else fee_node.get(fee_attribute) if hasattr(fee_node, "get") else None + ) + + if fee_value is None: + code_status = 201 + status_flag = False + error = f"费用节点 {fee_name} 中找不到属性: {fee_attribute}" + + # 返回费用节点的所有可用属性名称 + try: + if hasattr(fee_node, "keys"): + helper_info = list(fee_node.keys()) + elif isinstance(fee_node, dict): + helper_info = list(fee_node.keys()) + else: + # 对于Neo4j Node对象 + helper_info = list(fee_node.keys()) if hasattr(fee_node, "keys") else [] + + # 过滤掉私有属性 + helper_info = [attr for attr in helper_info if not attr.startswith("_")] + + except Exception as e: + helper_info = [f"获取费用节点属性列表时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 成功获取属性值 + data = fee_value + + except Exception as e: + code_status = 201 + status_flag = False + message = f"获取费用属性值时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询费用节点时出错: {str(e)}" + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + def get_fee_schedule_on_installation_price_difference_table( + self, table_name: str, fee_name: str, fee_attribute: str + ) -> dict: + """ + 在安装价差费用表中查找费用 + + Args: + table_name (str): 费用表名称 + fee_name (str): 要查找的费用名称(可能在多级子节点中) + fee_attribute (str): 费用值属性名 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 检查输入参数 + if not table_name or not fee_name or not fee_attribute: + code_status = 201 + status_flag = False + message = "输入参数不能为空" + + else: + # 第一步:查找父节点(费用表节点) + parent_path = f"工程/工程费用/{table_name}" + parent_node_data = self.get_node_by_path(parent_path) + + if not parent_node_data: + code_status = 201 + status_flag = False + error = f"找不到费用表节点: {parent_path}" + + # 查询"工程数据/工程费用"节点下所有子节点名称 + base_parent_node = self.get_node_by_path("工程/工程费用") + if base_parent_node: + query = """ + MATCH (p)-[*1..1]->(n) + WHERE p.name = '工程费用' + RETURN n.name AS name + """ + + try: + result = self.session.run(query) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询工程费用下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第二步:在费用表节点下查找费用节点(可能在多级子节点中) + fee_node = None + + # 递归查找费用节点,最多查找3级深度 + query = """ + MATCH (p)-[*1..3]->(f) + WHERE p.name = $table_name AND f.name = $fee_name + RETURN f LIMIT 1 + """ + params = {"table_name": table_name, "fee_name": fee_name} + + try: + result = self.session.run(query, **params) + all_records = result.data() + + if len(all_records) > 0: + fee_node = all_records[0]["f"] + + if not fee_node: + code_status = 201 + status_flag = False + error = f"在费用表 {table_name} 下找不到费用节点: {fee_name}" + + # 查询费用表节点下所有子节点名称(递归查找) + query = """ + MATCH (p)-[*1..3]->(n) + WHERE p.name = $table_name + RETURN DISTINCT n.name AS name + ORDER BY n.name + """ + params = {"table_name": table_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询费用表下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第三步:获取费用节点的属性值 + try: + if fee_node and hasattr(fee_node, "get"): + fee_value = fee_node.get(fee_attribute) + elif fee_node and isinstance(fee_node, dict): + fee_value = fee_node.get(fee_attribute) + else: + # 如果fee_node是Neo4j Node对象,尝试直接访问属性 + fee_value = ( + getattr(fee_node, fee_attribute, None) + if hasattr(fee_node, fee_attribute) + else fee_node.get(fee_attribute) if hasattr(fee_node, "get") else None + ) + + if fee_value is None: + code_status = 201 + status_flag = False + error = f"费用节点 {fee_name} 中找不到属性: {fee_attribute}" + + # 返回费用节点的所有可用属性名称 + try: + if hasattr(fee_node, "keys"): + helper_info = list(fee_node.keys()) + elif isinstance(fee_node, dict): + helper_info = list(fee_node.keys()) + else: + # 对于Neo4j Node对象 + helper_info = list(fee_node.keys()) if hasattr(fee_node, "keys") else [] + + # 过滤掉私有属性 + helper_info = [attr for attr in helper_info if not attr.startswith("_")] + + except Exception as e: + helper_info = [f"获取费用节点属性列表时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 成功获取属性值 + data = fee_value + + except Exception as e: + code_status = 201 + status_flag = False + message = f"获取费用属性值时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询费用节点时出错: {str(e)}" + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + def get_fee_schedule_on_Engineering_Cost_table(self, table_name: str, fee_name: str, fee_attribute: str) -> dict: + """ + 在工程费用表中查找费用 + + Args: + table_name (str): 费用表名称 + fee_name (str): 要查找的费用名称(可能在多级子节点中) + fee_attribute (str): 费用值属性名 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性值(可能是 str/int/float 等),失败时返回 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 检查输入参数 + if not table_name or not fee_name or not fee_attribute: + code_status = 201 + status_flag = False + message = "输入参数不能为空" + + else: + # 第一步:查找父节点(费用表节点) + parent_path = f"工程/工程费用/{table_name}" + parent_node_data = self.get_node_by_path(parent_path) + + if not parent_node_data: + code_status = 201 + status_flag = False + error = f"找不到费用表节点: {parent_path}" + + # 查询"工程数据/工程费用"节点下所有子节点名称 + base_parent_node = self.get_node_by_path("工程/工程费用") + if base_parent_node: + query = """ + MATCH (p)-[*1..1]->(n) + WHERE p.name = '工程费用' + RETURN n.name AS name + """ + + try: + result = self.session.run(query) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询工程费用下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第二步:在费用表节点下查找费用节点(可能在多级子节点中) + fee_node = None + + # 递归查找费用节点,最多查找3级深度 + query = """ + MATCH (p)-[*1..3]->(f) + WHERE p.name = $table_name AND f.name = $fee_name + RETURN f LIMIT 1 + """ + params = {"table_name": table_name, "fee_name": fee_name} + + try: + result = self.session.run(query, **params) + all_records = result.data() + + if len(all_records) > 0: + fee_node = all_records[0]["f"] + + if not fee_node: + code_status = 201 + status_flag = False + error = f"在费用表 {table_name} 下找不到费用节点: {fee_name}" + + # 查询费用表节点下所有子节点名称(递归查找) + query = """ + MATCH (p)-[*1..3]->(n) + WHERE p.name = $table_name + RETURN DISTINCT n.name AS name + ORDER BY n.name + """ + params = {"table_name": table_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询费用表下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第三步:获取费用节点的属性值 + try: + if fee_node and hasattr(fee_node, "get"): + fee_value = fee_node.get(fee_attribute) + elif fee_node and isinstance(fee_node, dict): + fee_value = fee_node.get(fee_attribute) + else: + # 如果fee_node是Neo4j Node对象,尝试直接访问属性 + fee_value = ( + getattr(fee_node, fee_attribute, None) + if hasattr(fee_node, fee_attribute) + else fee_node.get(fee_attribute) if hasattr(fee_node, "get") else None + ) + + if fee_value is None: + code_status = 201 + status_flag = False + error = f"费用节点 {fee_name} 中找不到属性: {fee_attribute}" + + # 返回费用节点的所有可用属性名称 + try: + if hasattr(fee_node, "keys"): + helper_info = list(fee_node.keys()) + elif isinstance(fee_node, dict): + helper_info = list(fee_node.keys()) + else: + # 对于Neo4j Node对象 + helper_info = list(fee_node.keys()) if hasattr(fee_node, "keys") else [] + + # 过滤掉私有属性 + helper_info = [attr for attr in helper_info if not attr.startswith("_")] + + except Exception as e: + helper_info = [f"获取费用节点属性列表时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 成功获取属性值 + data = fee_value + + except Exception as e: + code_status = 201 + status_flag = False + message = f"获取费用属性值时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询费用节点时出错: {str(e)}" + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + # 工程属性查询方法 + def get_project_property(self, property_name: str) -> dict: + """ + 通过属性名称获取工程属性 + + Args: + property_name (str): 属性名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 构建查询,查找父节点类型为ProjectPropertySet下类型为ProjectProperty的节点 + query = """ + MATCH (parent:ProjectPropertySet)-[*1..1]->(property:ProjectProperty) + WHERE property.name = $property_name + RETURN property + LIMIT 1 + """ + params = {"property_name": property_name} + + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"找不到名称为 '{property_name}' 的工程属性节点" + + # 查询类似的节点名称作为辅助信息 + similar_query = """ + MATCH (parent:ProjectPropertySet)-[*1..1]->(property:ProjectProperty) + RETURN property.name AS name + LIMIT 5 + """ + + try: + similar_result = self.session.run(similar_query) + for similar_record in similar_result: + if similar_record["name"]: + helper_info.append(similar_record["name"]) + except Exception as e: + helper_info = [f"查询类似节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 获取节点属性 + property_node = record["property"] + + # 将节点所有属性添加到返回数据中(排除私有属性) + for key, value in property_node.items(): + if not key.startswith("_"): + data[key] = value + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询工程属性时出错: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + # 项目划分查找取费表 + def get_fee_table_by_project_division(self, project_division_path: str, fee_name: str) -> dict: + """ + 通过项目划分路径和取费名称查找费用 + + Args: + project_division_path (str): 项目划分节点的路径 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 第一步:查找项目划分路径下的ProjectDivisionItem节点 + division_node = self.get_node_by_path(project_division_path, ["ProjectDivisionItem"]) + + if not division_node: + code_status = 201 + status_flag = False + error = f"找不到路径: {project_division_path} 上的ProjectDivisionItem节点" + + # 提取父路径 + path_parts = project_division_path.split("/") + if len(path_parts) > 1: + parent_path = "/".join(path_parts[:-1]) + parent_name = path_parts[-2] + + # 获取父节点下所有ProjectDivisionItem节点名称作为辅助信息 + query = """ + MATCH (p)-[*1..1]->(q:ProjectDivisionItem) + WHERE p.name = $parent_name + RETURN q.name as name + """ + params = {"parent_name": parent_name} + + try: + result = self.session.run(query, **params) + for record in result: + if record["name"]: + helper_info.append(record["name"]) + except Exception as e: + helper_info = [f"查询父节点下的子节点时出错: {str(e)}"] + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + # 第二步:在项目划分节点的子节点中查找属性name为"费用预览集"且关系为USE的节点 + query = """ + MATCH (p:ProjectDivisionItem)-[r:USE]->(c:CostSet) + WHERE id(p) = $division_node_id AND c.name = "费用预览集" + RETURN c + LIMIT 1 + """ + params = {"division_node_id": division_node.id} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"在项目划分节点下找不到name为'费用预览集'且关系为USE的CostSet节点" + + # 查询项目划分节点下的所有子节点作为辅助信息 + helper_query = """ + MATCH (p:ProjectDivisionItem)-[r]->(c) + WHERE id(p) = $division_node_id + RETURN type(r) as relation_type, c.name as name, labels(c) as labels + LIMIT 5 + """ + helper_params = {"division_node_id": division_node.id} + helper_result = self.session.run(helper_query, **helper_params) + + for helper_record in helper_result: + relation_type = helper_record.get("relation_type", "未知关系") + name = helper_record.get("name", "未知名称") + labels = helper_record.get("labels", []) + helper_info.append(f"关系类型: {relation_type}, 节点名称: {name}, 节点标签: {labels}") + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + cost_set_node = record["c"] + + # 第三步:在CostSet节点的子节点中查找名称为fee_name的CostItem节点 + query = """ + MATCH (c:CostSet)-[*1..1]->(i:CostItem) + WHERE id(c) = $cost_set_id AND i.name = $fee_name + RETURN i + LIMIT 1 + """ + params = {"cost_set_id": cost_set_node.id, "fee_name": fee_name} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"在CostSet节点下找不到名称为 {fee_name} 的CostItem节点" + + # 查询该CostSet下所有CostItem节点名称作为辅助信息 + helper_query = """ + MATCH (c:CostSet)-[*1..1]->(i:CostItem) + WHERE id(c) = $cost_set_id + RETURN i.name AS name + LIMIT 5 + """ + helper_params = {"cost_set_id": cost_set_node.id} + helper_result = self.session.run(helper_query, **helper_params) + + for helper_record in helper_result: + if helper_record["name"]: + helper_info.append(helper_record["name"]) + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + cost_item_node = record["i"] + + # 将CostItem节点的所有属性添加到返回数据中 + for key, value in cost_item_node.items(): + if not key.startswith("_"): # 排除私有属性 + data[key] = value + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询CostItem节点时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询CostSet节点时出错: {str(e)}" + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + # 清单查找取费表 + def get_fee_table_by_list(self, parent_path: str, list_code: str, list_unit: str, fee_name: str) -> dict: + """ + 通过清单名称和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + list_code (str): 清单编号 + list_unit (str): 清单单位 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 第一步:查找父路径下类型为List的节点,且编码和单位匹配 + query = """ + MATCH (p)-[*0..10]->(l:List) + WHERE p.name CONTAINS $parent_name AND l.编码 = $list_code AND l.单位 = $list_unit + RETURN l + LIMIT 1 + """ + params = {"parent_name": parent_path.split("/")[-1], "list_code": list_code, "list_unit": list_unit} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"在路径 {parent_path} 下找不到编码为 {list_code} 且单位为 {list_unit} 的List节点" + + # 查询路径下的List节点作为辅助信息 + helper_query = """ + MATCH (p)-[*0..10]->(l:List) + WHERE p.name CONTAINS $parent_name + RETURN l.编码 AS code, l.单位 AS unit, l.name AS name + LIMIT 5 + """ + + helper_params = {"parent_name": parent_path.split("/")[-1]} + helper_result = self.session.run(helper_query, **helper_params) + + for helper_record in helper_result: + code = helper_record.get("code", "") + unit = helper_record.get("unit", "") + name = helper_record.get("name", "") + helper_info.append(f"{code} - {unit} - {name}") + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + list_node = record["l"] + + # 第二步:在list节点的子节点中查找属性name为"费用预览集"且关系为USE的节点 + query = """ + MATCH (l:List)-[r:USE]->(c:CostSet) + WHERE id(l) = $list_node_id AND c.name = "费用预览集" + RETURN c + LIMIT 1 + """ + params = {"list_node_id": list_node.id} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"在List节点下找不到name为'费用预览集'且关系为USE的CostSet节点" + + # 查询List节点下的所有子节点作为辅助信息 + helper_query = """ + MATCH (l:List)-[r]->(c) + WHERE id(l) = $list_node_id + RETURN type(r) as relation_type, c.name as name, labels(c) as labels + LIMIT 5 + """ + helper_params = {"list_node_id": list_node.id} + helper_result = self.session.run(helper_query, **helper_params) + + for helper_record in helper_result: + relation_type = helper_record.get("relation_type", "未知关系") + name = helper_record.get("name", "未知名称") + labels = helper_record.get("labels", []) + helper_info.append(f"关系类型: {relation_type}, 节点名称: {name}, 节点标签: {labels}") + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + cost_set_node = record["c"] + + # 第三步:在CostSet节点的子节点中查找名称为fee_name的CostItem节点 + query = """ + MATCH (c:CostSet)-[*1..1]->(i:CostItem) + WHERE id(c) = $cost_set_id AND i.name = $fee_name + RETURN i + LIMIT 1 + """ + params = {"cost_set_id": cost_set_node.id, "fee_name": fee_name} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"在CostSet节点下找不到名称为 {fee_name} 的CostItem节点" + + # 查询该CostSet下所有CostItem节点名称作为辅助信息 + helper_query = """ + MATCH (c:CostSet)-[*1..1]->(i:CostItem) + WHERE id(c) = $cost_set_id + RETURN i.name AS name + LIMIT 5 + """ + helper_params = {"cost_set_id": cost_set_node.id} + helper_result = self.session.run(helper_query, **helper_params) + + for helper_record in helper_result: + if helper_record["name"]: + helper_info.append(helper_record["name"]) + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + cost_item_node = record["i"] + + # 将CostItem节点的所有属性添加到返回数据中 + for key, value in cost_item_node.items(): + if not key.startswith("_"): # 排除私有属性 + data[key] = value + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询CostItem节点时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询CostSet节点时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询List节点时出错: {str(e)}" + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + # 定额节点查找合价 + def get_fee_table_by_quoto_code(self, parent_path: str, quantity_type: str, code: str, fee_name: str) -> dict: + """ + 通过父级路径、工程量类型、定额编码和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + quantity_type (str): 工程量类型 + code (str): 定额编码 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 第一步:校验工程量类型是否为“定额” + if quantity_type != "定额": + code_status = 201 + status_flag = False + message = f"工程量类型必须为'定额'" + return {"code": code_status, "message": message, "status": status_flag, "data": {}} + + # 构建节点类型条件 + node_type_condition = "(q:ProjectQuantity:Quota OR q.类型 = '0')" + + # 查询匹配的 Quota 节点 + query = """ + MATCH (p)-[*0..10]->(q) + WHERE p.name CONTAINS $parent_name AND q.编码 = $code AND {type_condition} + RETURN q + LIMIT 1 + """.format( + type_condition=node_type_condition + ) + + params = {"parent_name": parent_path.split("/")[-1], "code": code} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"在路径 {parent_path} 下找不到编码为 {code} 的Quota节点" + + # 查询路径下的Quota节点作为辅助信息 + helper_query = """ + MATCH (p)-[*0..10]->(q) + WHERE p.name CONTAINS $parent_name AND {type_condition} + RETURN q.编码 AS code, q.name AS name + LIMIT 5 + """.format( + type_condition=node_type_condition + ) + + helper_params = {"parent_name": parent_path.split("/")[-1]} + helper_result = self.session.run(helper_query, **helper_params) + + for helper_record in helper_result: + code_val = helper_record.get("code", "") + name = helper_record.get("name", "") + helper_info.append(f"{code_val} - {name}") + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + quota_node = record["q"] + + # 获取GUID + guid = quota_node.get("GUID") + if not guid: + code_status = 201 + status_flag = False + message = f"Quota节点没有GUID属性" + return {"code": code_status, "message": message, "status": status_flag, "data": {}} + + # 第二步:查找与GUID匹配的CostSet节点 + query = """ + MATCH (c:CostSet) + WHERE c.name = $guid + RETURN c + LIMIT 1 + """ + params = {"guid": guid} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"找不到与GUID: {guid} 匹配的CostSet节点" + + # 查询部分CostSet节点名称作为辅助信息 + helper_query = """ + MATCH (c:CostSet) + RETURN c.name AS name + LIMIT 5 + """ + + helper_result = self.session.run(helper_query) + for helper_record in helper_result: + if helper_record["name"]: + helper_info.append(helper_record["name"]) + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + cost_set_node = record["c"] + + # 第三步:查找CostItem节点 + query = """ + MATCH (c:CostSet)-[*1..1]->(i:CostItem) + WHERE c.name = $guid AND i.name = $fee_name + RETURN i + LIMIT 1 + """ + params = {"guid": guid, "fee_name": fee_name} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"在CostSet节点 {guid} 下找不到名称为 {fee_name} 的CostItem节点" + + # 查询该CostSet下所有CostItem节点名称作为辅助信息 + helper_query = """ + MATCH (c:CostSet)-[*1..1]->(i:CostItem) + WHERE c.name = $guid + RETURN i.name AS name + LIMIT 5 + """ + + helper_params = {"guid": guid} + helper_result = self.session.run(helper_query, **helper_params) + + for helper_record in helper_result: + if helper_record["name"]: + helper_info.append(helper_record["name"]) + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + cost_item_node = record["i"] + + # 将CostItem节点的所有属性添加到返回数据中 + for key, value in cost_item_node.items(): + if not key.startswith("_"): # 排除私有属性 + data[key] = value + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询CostItem节点时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询CostSet节点时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询Quota节点时出错: {str(e)}" + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + def get_fee_table_by_quantities_name( + self, parent_path: str, quantity_type: str, quantity_name: str, fee_name: str + ) -> dict: + """ + 通过父级路径、工程量类型、工程量名称和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + quantity_type (str): 工程量类型 + quantity_name (str): 工程量名称 + fee_name (str): 取费名称 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 第一步:校验工程量类型是否为“主材”或“设备” + node_type_condition = "" + if quantity_type == "主材": + node_type_condition = "(q:ProjectQuantity:MainMaterial OR q.类型 = '1')" + elif quantity_type == "设备": + node_type_condition = "(q:ProjectQuantity:Equipment OR q.类型 = '5')" + else: + code_status = 201 + status_flag = False + message = f"工程量类型必须为'主材'或'设备'; 可选类型: ['主材', '设备']" + return {"code": code_status, "message": message, "status": status_flag, "data": {}} + + # 查询匹配的工程量节点 + query = """ + MATCH (p)-[*0..10]->(q) + WHERE p.name CONTAINS $parent_name AND q.name CONTAINS $quantity_name AND {type_condition} + RETURN q + LIMIT 1 + """.format( + type_condition=node_type_condition + ) + + params = {"parent_name": parent_path.split("/")[-1], "quantity_name": quantity_name} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = ( + f"在路径 {parent_path} 下找不到类型为 {quantity_type} 且名称包含 {quantity_name} 的工程量节点" + ) + + # 查询路径下的工程量节点作为辅助信息 + helper_query = """ + MATCH (p)-[*0..10]->(q) + WHERE p.name CONTAINS $parent_name AND {type_condition} + RETURN q.name AS name + LIMIT 5 + """.format( + type_condition=node_type_condition + ) + + helper_params = {"parent_name": parent_path.split("/")[-1]} + helper_result = self.session.run(helper_query, **helper_params) + + for helper_record in helper_result: + name = helper_record.get("name", "") + helper_info.append(name) + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + quantity_node = record["q"] + + # 获取GUID + guid = quantity_node.get("GUID") + if not guid: + code_status = 201 + status_flag = False + message = f"工程量节点没有GUID属性" + return {"code": code_status, "message": message, "status": status_flag, "data": {}} + + # 第二步:查找与GUID匹配的CostSet节点 + query = """ + MATCH (c:CostSet) + WHERE c.name = $guid + RETURN c + LIMIT 1 + """ + params = {"guid": guid} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"找不到与GUID: {guid} 匹配的CostSet节点" + + # 查询部分CostSet节点名称作为辅助信息 + helper_query = """ + MATCH (c:CostSet) + RETURN c.name AS name + LIMIT 5 + """ + + helper_result = self.session.run(helper_query) + + for helper_record in helper_result: + if helper_record["name"]: + helper_info.append(helper_record["name"]) + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + cost_set_node = record["c"] + + # 第三步:查找CostItem节点 + query = """ + MATCH (c:CostSet)-[*1..1]->(i:CostItem) + WHERE c.name = $guid AND i.name = $fee_name + RETURN i + LIMIT 1 + """ + params = {"guid": guid, "fee_name": fee_name} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"在CostSet节点 {guid} 下找不到名称为 {fee_name} 的CostItem节点" + + # 查询该CostSet下所有CostItem节点名称作为辅助信息 + helper_query = """ + MATCH (c:CostSet)-[*1..1]->(i:CostItem) + WHERE c.name = $guid + RETURN i.name AS name + LIMIT 5 + """ + + helper_params = {"guid": guid} + helper_result = self.session.run(helper_query, **helper_params) + + for helper_record in helper_result: + name = helper_record.get("name", "") + helper_info.append(name) + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + cost_item_node = record["i"] + + # 将CostItem节点的所有属性添加到返回数据中 + for key, value in cost_item_node.items(): + if not key.startswith("_"): # 排除私有属性 + data[key] = value + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询CostItem节点时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询CostSet节点时出错: {str(e)}" + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询工程量节点时出错: {str(e)}" + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} + + # 材机节点查找市场价 + def get_fee_by_material_equipment_code(self, parent_path, material_equipment_code, fee_name): + """ + 通过父级路径、材机编码和取费名称查找费用 + + Args: + parent_path (str): 父级路径 + material_equipment_code (str): 材机编码 + fee_name (str): 取费名称 + + Returns: + Tuple[str, Dict[str, Any], str, List[Any]]: 包含状态、数据、错误信息和辅助信息的元组 + - status (str): 状态,'success'或'error' + - data (Dict[str, Any]): 成功时返回包含属性值的数据 + - error (str): 错误时的错误信息 + - helper_info (List[Any]): 辅助信息列表 + """ + pass + + # 查找清单节点 + def get_fee_table_by_list_name(self, parent_path: str, list_code: str, unit: str) -> dict: + """ + 通过父级路径、清单编号和单位查找清单 + + Args: + parent_path (str): 父级路径 + list_code (str): 清单编号 + unit (str): 单位 + + Returns: + dict: 返回字典,字段包括: + - code (int): 状态码,固定为 200(成功)或 201(失败) + - message (str): 成功时为 "Ok",失败时包含错误信息和辅助信息 + - status (bool): 成功为 True,失败为 False + - data (Union[Dict, List, Any]): 成功时返回属性数据字典,失败时返回空字典 {} + """ + code_status = 200 + message = "Ok" + status_flag = True + data = {} + helper_info = [] + + try: + # 查询父路径下编码和单位匹配的List节点 + query = """ + MATCH (p)-[*0..10]->(l:List) + WHERE p.name CONTAINS $parent_name AND l.编码 = $list_code AND l.单位 = $unit + RETURN l + LIMIT 1 + """ + params = {"parent_name": parent_path.split("/")[-1], "list_code": list_code, "unit": unit} + + try: + result = self.session.run(query, **params) + record = result.single() + + if not record: + code_status = 201 + status_flag = False + error = f"在路径 {parent_path} 下找不到编码为 {list_code} 且单位为 {unit} 的List节点" + + # 查询路径下的List节点作为辅助信息 + helper_query = """ + MATCH (p)-[*0..10]->(l:List) + WHERE p.name CONTAINS $parent_name + RETURN l.编码 AS code, l.单位 AS unit, l.name AS name + LIMIT 5 + """ + + helper_params = {"parent_name": parent_path.split("/")[-1]} + helper_result = self.session.run(helper_query, **helper_params) + + for helper_record in helper_result: + code = helper_record.get("code", "") + unit_val = helper_record.get("unit", "") + name = helper_record.get("name", "") + helper_info.append(f"{code} - {unit_val} - {name}") + + message = f"错误信息:{error}; 辅助信息:{helper_info}" + + else: + list_node = record["l"] + + # 将List节点的所有属性添加到返回数据中 + for key, value in list_node.items(): + if not key.startswith("_"): # 排除私有属性 + data[key] = value + + except Exception as e: + code_status = 201 + status_flag = False + message = f"查询List节点时出错: {str(e)}" + + except Exception as e: + import traceback + + print(f"查询出错: {traceback.format_exc()}") + code_status = 201 + status_flag = False + message = f"查询失败: {str(e)}" + + # 统一返回格式包装成列表 + return {"code": code_status, "message": message, "status": status_flag, "data": data} diff --git a/src/prompt_manager.py b/src/prompt_manager.py index 50918b0..f046a68 100644 --- a/src/prompt_manager.py +++ b/src/prompt_manager.py @@ -1,5 +1,8 @@ # src/prompt_manager.py +import os +import logging +from datetime import datetime from dataclasses import dataclass from langchain.prompts import ChatPromptTemplate from langchain.schema import SystemMessage, HumanMessage @@ -60,14 +63,23 @@ class PromptManager: # 输出格式(必须严格遵循) def project_get_calculate_function(): project = ProjectBuilder.build() - status, data, error, helper_info = project.[SELECTED_METHOD]([PARAMETERS]) - return status, data, error, helper_info + result_dict = project.[SELECTED_METHOD]([PARAMETERS]) + status = result_dict.get('status', False) + message = result_dict.get('message', '') + code = result_dict.get('data', '') + data = result_dict.get('data', []) + if status: + return result_dict + else: + return result_dict # 执行规则 - 参数必须从用户问题或上下文信息中提取 -- 输出代码中必须以def project_get_calculate_function() -> Tuple[bool, Any, Optional[str], Dict[str, Any]]函数作为入口函数 +- 输出代码中必须以def project_get_calculate_function() -> dict函数作为入口函数 - 必须确保生成的代码可以直接执行,代码要注意进行各类错误检查,出错采用抛出异常方式,说明详细信息 - 禁止添加任何注释或解释 +- ProjectToolkit 类中涉及项目划分的函数已考虑在其及其子孙项目划分下查找,所以无需生成递归子项目划分的代码 +- 如果文本中包含范围编码格式则需要进行编码展开,如'YX2-1~7'展开为‘YX2-1/YX2-2/YX2-3/YX2-4/YX2-5/YX2-6/YX2-7’ """ ) @@ -89,6 +101,7 @@ def project_get_calculate_function(): 4. 修复后的代码应该完整,可以直接执行,并且能够返回查询结果 注意: +- 如果文本中包含范围编码格式则需要进行编码展开,如'YX2-1~7'展开为‘YX2-1/YX2-2/YX2-3/YX2-4/YX2-5/YX2-6/YX2-7’ - 必须只输出最终的Python代码,不要添加任何解释、注释、推理过程或自然语言描述。 - 不要以“以下是修正后的代码”、“修改如下”等语句开头。 - 不要输出任何其他无关的内容。 @@ -131,8 +144,187 @@ def project_get_calculate_function(): {user_input} 改写规则: -识别目标层级: 从用户输入中解析层级路径,例如字符串“安装/架空输电线路本体工程”映射为:根节点(name: '安装') -[:CHILD_OF]-> 子节点(name: '架空输电线路本体工程')。知识图谱节点标签包括ProjectDivisionItem、ProjectQuantity、Fee、FeeCollection等。 -识别目标对象:仅从业务结构中识别用户问题中需要获取的核心对象类型(如 ProjectDivisionItem、ProjectQuantity、Fee、FeeCollection 等)。对象类型必须精确映射到结构中的节点标签(例如,使用 ProjectDivisionItem 而非“项目划分项”)。 +识别目标层级: 从用户输入中解析层级路径,例如字符串“安装/架空输电线路本体工程”映射为:根节点(name: '安装') -[:CHILD_OF]-> 子节点(name: '架空输电线路本体工程')。 +识别目标对象:仅从业务结构中识别如下类型:ProjectDivisionItem、ProjectAttributeSet、FeeSchedule、FeeItem的核心对象。对象类型必须精确映射到结构中的节点标签(例如,使用 ProjectDivisionItem 而非“项目划分项”)。 +提取查询条件:从用户输入中解析关键条件(如名称、量、类型、值、层级等),条件应基于对象属性(如 name、quantity、type),注意区分查找子串和相等的区别。如果条件涉及层级路径(如路径中包含特定部分),需提取路径部分作为条件(例如,用户提到“架空输电线路”时,解析为路径匹配)。 +如果用户指定层级(如“叶节点”),需在条件中体现(例如,添加 WHERE item.isLeaf = true)。 +忽略任何计算、转换或后处理要求(如“乘以1000”),只关注获取原始数据对象或属性。 +构建Cypher查询:生成一个Cypher查询语句,格式为: + +MATCH 子句:匹配目标对象节点,并应用条件。如果涉及层级路径,使用路径匹配(如 MATCH path = (item1:ProjectDivisionItem)-[:CHILD_OF*]->(item2:ProjectDivisionItem) WHERE item1.name = '安装' AND item2.name = '架空输电线路本体工程')。变量仅用于目标节点和必要路径节点。 +WHERE 子句:包含提取的条件(使用变量或具体值)。 +RETURN 子句:必须返回对象(如 RETURN item),不能包含对象属性、函数(如乘法、SUM)。 +LIMIT 子句: 最多返回5条。 +使用业务术语在节点标签和属性中(例如,ProjectDivisionItem 而不是“项目”)。 +查询应简洁,只获取数据,不执行计算。 +输出格式:直接输出最终Cypher查询语句,不添加解释或额外文本。 + +**示例**: +用户问题:查找一下名称中包含工程的项目划分 +Cypher查询语句:MATCH (item:ProjectDivisionItem)\nWHERE item.name CONTAINS '工程'\nRETURN item\nLIMIT 5 +""") + + return CodeExecutorPrompts( + understand_prompt=understand_prompt, + code_gen_prompt=code_gen_prompt, + code_fix_prompt=code_fix_prompt, + rewrite_prompt_template=rewrite_prompt_template, + cypher_conversion_prompt=cypher_conversion_prompt, + ) + +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) + +@dataclass +class CodeExecutorPrompts: + understand_prompt: ChatPromptTemplate + code_gen_prompt: ChatPromptTemplate + code_fix_prompt: ChatPromptTemplate + rewrite_prompt_template: ChatPromptTemplate + cypher_conversion_prompt: ChatPromptTemplate # 新增Cypher转换提示模板 + + +class PromptManager: + def __init__(self): + self.prompts = self._init_prompts() + + def _init_prompts(self) -> CodeExecutorPrompts: + understand_prompt = ChatPromptTemplate.from_template( + """ +你是一名电力造价业务专家,请基于以下示意工程文件业务结构,将用户自然语言问题改写成专业查询语句: + +**示意工程文件业务结构**: +{business_structure} + +**改写规则**: +1. **定位目标对象**:仅从示意工程文件业务结构中识别核心对象(如 `ProjectDivisionTree`→项目划分树、`FeeScheduleItem`→费用表)。 +2. **提取条件**:从用户输入中解析关键条件(如名称、量、类型),用【】标注变量。 +3. **构建专业语句**:格式为:`在[目标对象]中查找【条件】的项。` + - 使用业务术语(如“项目划分项”而非“项目”)。 + - 条件需明确属性(如【名称】、【量】、【类型】)。 +4. **精确映射结构**:若用户查询层级(如“叶节点”),需在条件中体现。 + +**用户输入**:{user_input} +**改写输出**:(仅输出改写后的语句) +""" + ) + + code_gen_prompt = ChatPromptTemplate.from_template( + """ +你是一个专业的Python工程师。我会给你一个用户问题,你需要将其转换为对应的Python代码 + +用户问题: +{user_request} + +上下文信息: +{context} + +工程数据访问库: +{bowei_api_docs} + +# 工作流程 +1. 从用户问题中提取关键信息(节点路径、节点类型、节点名称等) +2. 根据"用户问题"和"上下文信息"选择最匹配的"工程数据访问库"中的函数和对象属性 +3. 生成可直接执行的完全满足用户输入问题要求功能效果的Python函数代码 + +# 输出格式(必须严格遵循) +def project_get_calculate_function(): + project = ProjectBuilder.build() + result_dict = project.[SELECTED_METHOD]([PARAMETERS]) + status = result_dict.get('status', False) + message = result_dict.get('message', '') + code = result_dict.get('data', '') + data = result_dict.get('data', []) + if status: + return result_dict + else: + return result_dict + +# 执行规则 +- 参数必须从用户问题或上下文信息中提取 +- 输出代码中必须以def project_get_calculate_function() -> dict函数作为入口函数 +- 必须确保生成的代码可以直接执行,代码要注意进行各类错误检查,出错采用抛出异常方式,说明详细信息 +- 禁止添加任何注释或解释 +- ProjectToolkit 类中涉及项目划分的函数已考虑在其及其子孙项目划分下查找,所以无需生成递归子项目划分的代码 +- 如果文本中包含范围编码格式则需要进行编码展开,如'YX2-1~7'展开为‘YX2-1/YX2-2/YX2-3/YX2-4/YX2-5/YX2-6/YX2-7’ +""" + ) + + code_fix_prompt = ChatPromptTemplate.from_template( + """ + +你是一个专业的Python工程师。我会给你一段错误python代码和错误信息,你需要帮我修复这段出错的代码 + +已执行代码: +{code} + +代码执行报错信息: +{error} + +你的任务是: +1. 根据"已执行代码"和"代码执行报错信息"来对“已执行代码”和函数调用参数进行修改,修复执行错误 +2. 如果错误信息中是代码的逻辑出现错误,那么就需要对代码本身整体结构进行修改 +3. 如果是代码中参数出现问题了,那么就需要结合错误信息中的帮助信息(helper_info)来对代码总的参数进行修改 +4. 修复后的代码应该完整,可以直接执行,并且能够返回查询结果 + +注意: +- 如果文本中包含范围编码格式则需要进行编码展开,如'YX2-1~7'展开为‘YX2-1/YX2-2/YX2-3/YX2-4/YX2-5/YX2-6/YX2-7’ +- 必须只输出最终的Python代码,不要添加任何解释、注释、推理过程或自然语言描述。 +- 不要以“以下是修正后的代码”、“修改如下”等语句开头。 +- 不要输出任何其他无关的内容。 +- 输出格式必须完全符合指定的函数模板。 +- 如果无法根据已有信息进行修改,请原样返回原始代码。 +- 禁止在代码前加上```python字样 +- 禁止在代码后加上```字样 + +请输出你修补后的代码: +""") + + rewrite_prompt_template = ChatPromptTemplate.from_template( + """ +您是一个AI查询改写助手。基于给定的原始查询和上下文知识,生成一个精确的改写查询。步骤: +1. 从上下文知识的`labels`提取对象类型,翻译为中文。 +2. 从`properties`选择对象标识:优先用`path`值,若无则用`name`值。 +3. 智能映射原始查询的属性名称: + - 如果属性名称是上下文属性的缩写、省略或同义词,映射到实际属性名称(如“人工费”可能映射到“费率”或“合价含税”)。 + - 如果无法映射,保留原始名称。 +4. 保留原始查询的额外操作(如计算指令)。 +5. 输出格式:“获取[对象标识][对象类型]的[属性]属性,[额外操作]”。 + +示例参考: +- 输入:原始问题="查找名称中包含“工程”的项目划分项,并返回其人工费乘以1000的值。", 上下文知识=... +- 输出="获取[安装/架空输电线路本体工程/基础工程/基础工程材料工地运输]项目划分项的人工费,并乘以1000的值" + +现在,处理以下输入: +- 原始问题:{user_input} +- 上下文知识:{context} +""") + + cypher_conversion_prompt = ChatPromptTemplate.from_template( + """ +你是一名电力造价业务专家,负责将用户自然语言问题中需要访问的对象识别出来,并生成针对该对象的NEO4J知识图谱的Cypher查询语句,获取该对象的全部信息。知识图谱基于从文件“获取[安装/架空输电线路本体工程]项目划分项的单位.”中读取的层级关联结构构建。该文件包含用反斜杠分割的多个字符串(如“安装/架空输电线路本体工程”),每个字符串表示一个完整的层级路径,路径部分用斜杠分隔,对应于知识图谱中ProjectDivisionItem节点的层级关系。路径映射规则:每个路径部分(如“安装”)是一个ProjectDivisionItem节点,父子关系通过关系类型`:CHILD_OF`连接,形成从根节点到叶节点的层级结构。 + +示例业务结构: +{business_structure} + +用户问题: +{user_input} + +改写规则: +识别目标层级: 从用户输入中解析层级路径,例如字符串“安装/架空输电线路本体工程”映射为:根节点(name: '安装') -[:CHILD_OF]-> 子节点(name: '架空输电线路本体工程')。 +识别目标对象:仅从业务结构中识别如下类型:ProjectDivisionItem、ProjectAttributeSet、FeeSchedule、FeeItem的核心对象。对象类型必须精确映射到结构中的节点标签(例如,使用 ProjectDivisionItem 而非“项目划分项”)。 提取查询条件:从用户输入中解析关键条件(如名称、量、类型、值、层级等),条件应基于对象属性(如 name、quantity、type),注意区分查找子串和相等的区别。如果条件涉及层级路径(如路径中包含特定部分),需提取路径部分作为条件(例如,用户提到“架空输电线路”时,解析为路径匹配)。 如果用户指定层级(如“叶节点”),需在条件中体现(例如,添加 WHERE item.isLeaf = true)。 忽略任何计算、转换或后处理要求(如“乘以1000”),只关注获取原始数据对象或属性。 diff --git a/src/user_interaction.py b/src/user_interaction.py new file mode 100644 index 0000000..e6da9eb --- /dev/null +++ b/src/user_interaction.py @@ -0,0 +1,87 @@ +# src/user_interaction.py + +import os +import logging +from datetime import datetime +from langchain_core.output_parsers import JsonOutputParser +from langchain_core.prompts import PromptTemplate +from langchain.prompts import ChatPromptTemplate +from langchain_openai import ChatOpenAI +from pydantic import BaseModel, Field +from typing import List, Dict, Any +import asyncio + +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) + +class BusinessObject(BaseModel): + name: str = Field(description="对象的名称") + constraints: Dict[str, Any] = Field(description="对象约束条件") + +class UserInteraction: + def __init__(self, llm: ChatOpenAI, business_structure: str): + self.llm = llm + self.business_structure = business_structure + self.prompt_template = ChatPromptTemplate.from_template(""" +请基于提供的"示例业务结构",分析用户输入问题。严格识别用户输入中提到的所有业务对象(对象必须来源于业务结构,不能是属性)。输出一个JSON数组,每个元素是一个对象,包含键"name"和"constraints": +- "name": 对象的名称,优先使用用户输入中指定的属性值(如项目划分名称、费用项名称等);如果未指定具体名称,则使用对象类型(如"ProjectDivisionItem")。 +- "constraints": 一个对象,包含: + - "type": 业务结构中的对象类型(如ProjectDivisionItem、ProjectQuantity)。 + - 其他属性:用户输入中明确指定的属性条件(如"path"、"name"、"类型"、"编码"等),使用业务结构中的属性名(英文或中文,需一致)。 +注意: +- 对象只能来源于业务结构(如EngineeringData的子对象),勿将属性(如"数量"、"编码")识别为对象。 +- 勿执行查询、过滤或汇总操作;只识别对象及其约束。 +- 对于集合性描述(如"所有【定额】"),输出一个对象代表该集合,在"constraints"中指定条件。 +- 输出仅基于用户输入,不推断额外信息。 + +示例业务结构(供参考): +{business_structure} + +示例输入:从项目划分【架空输电线路本体工程/辅助工程】的费用集中查找名称为【'合计'】费用 +示例输出: +[ + {{ + "name": "辅助工程", + "constraints": {{ + "type": "ProjectDivisionItem", + "path": "架空输电线路本体工程/辅助工程", + "name": "辅助工程" + }} + }}, + {{ + "name": "合计", + "constraints": {{ + "parent": "辅助工程", + "type": "CostItem", + "name": "合计" + }} + }} +] + +用户输入:{query} +""") + self.parser = JsonOutputParser(pydantic_object=List[BusinessObject]) + + def understand(self, user_input: str) -> List[BusinessObject]: + prompt_text = self.prompt_template.format_prompt(query=user_input, business_structure = self.business_structure) + messages = prompt_text.to_messages() + response = self.llm.invoke(messages) + return self.parser.parse(response.text()) + + async def aunderstand(self, user_input: str) -> List[BusinessObject]: + prompt_text = self.prompt_template.format_prompt(query=user_input) + messages = prompt_text.to_messages() + response = await self.llm.ainvoke(messages) + return self.parser.parse(response.text()) diff --git a/tests/code.jsonl b/tests/code.jsonl new file mode 100644 index 0000000..918ee93 --- /dev/null +++ b/tests/code.jsonl @@ -0,0 +1,46 @@ +{"name": "杆塔总基数", "query": "从【架空输电线路本体工程/基础工程】及其子孙项目划分中查找编码中包含【YX2-1~7】的所有【定额】的【数量】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n path = '架空输电线路本体工程/基础工程'\n quantity_type = '定额'\n code = 'YX2-1/YX2-2/YX2-3/YX2-4/YX2-5/YX2-6/YX2-7'\n result_dict = project.get_quantities_node_by_parent_and_code(path, quantity_type, code)\n status = result_dict.get('status', False)\n if not status:\n return result_dict\n data = result_dict.get('data', [])\n total_quantity = 0.0\n for item in data:\n if isinstance(item, dict) and '数量' in item:\n try:\n total_quantity += float(item['数量'])\n except (ValueError, TypeError):\n continue\n return {'code': 200, 'message': 'Ok', 'status': True, 'data': total_quantity}"} +{"name": "角钢塔_塔材量", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢】的所有【主材】的【数量】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_quantities_node_by_parent_and_name(\n parent_path=\"架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立\",\n partial_name=\"角钢\",\n quantity_type=\"主材\"\n )\n status = result_dict.get('status', False)\n if not status:\n return result_dict\n \n data = result_dict.get('data', [])\n total_quantity = 0.0\n \n for item in data:\n if isinstance(item, dict) and item.get('类型') == '主材' and '角钢' in item.get('name', ''):\n try:\n quantity = float(item.get('数量', 0))\n total_quantity += quantity\n except (ValueError, TypeError):\n continue\n \n return {\n 'code': 200,\n 'message': 'Ok',\n 'status': True,\n 'data': total_quantity\n }"} +{"name": "角钢塔_其中:高强钢塔材量", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢、高强】的所有【主材】的【数量】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n path = \"架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立\"\n result = project.get_quantities_node_by_parent_and_name(path, \"角钢、高强\", \"主材\")\n if not result.get('status', False):\n return result\n \n total_quantity = 0.0\n for item in result.get('data', []):\n if isinstance(item, dict) and item.get('类型') == '主材' and '数量' in item:\n try:\n total_quantity += float(item['数量'])\n except (ValueError, TypeError):\n continue\n \n return {\n 'code': 200,\n 'message': 'Ok',\n 'status': True,\n 'data': total_quantity\n }"} +{"name": "角钢塔_塔材装材费_元", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢】的所有【主材】的【单价】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n \n parent_path = \"架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立\"\n quantity_type = \"主材\"\n partial_name = \"角钢\"\n \n result_dict = project.get_quantities_node_by_parent_and_name(parent_path, partial_name, quantity_type)\n status = result_dict.get('status', False)\n data = result_dict.get('data', [])\n \n if not status:\n return {'code': 201, 'message': '查询失败: ' + result_dict.get('message', ''), 'status': False, 'data': []}\n \n total_price = 0.0\n for item in data:\n if isinstance(item, Material) and '单价含税' in item.__dict__:\n try:\n price = float(item.单价含税)\n total_price += price\n except (ValueError, TypeError):\n continue\n \n return {'code': 200, 'message': 'Ok', 'status': True, 'data': total_price}"} +{"name": "角钢塔_其中:高强钢塔材费用_元", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢、高强】的所有【主材】的【单价】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n \n parent_path = \"架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立\"\n quantity_type = \"主材\"\n partial_name = \"角钢、高强\"\n \n result_dict = project.get_quantities_node_by_parent_and_name(parent_path, partial_name, quantity_type)\n status = result_dict.get('status', False)\n data = result_dict.get('data', [])\n \n if not status:\n return {'code': 201, 'message': '查询失败: ' + result_dict.get('message', ''), 'status': False, 'data': []}\n \n total_price = 0.0\n for item in data:\n if isinstance(item, dict) and '单价含税' in item:\n try:\n price = float(item['单价含税'])\n total_price += price\n except (ValueError, TypeError):\n continue\n \n return {'code': 200, 'message': 'Ok', 'status': True, 'data': total_price}"} +{"name": "钢管塔_塔材量", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管塔】的所有【主材】的【数量】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_quantities_node_by_parent_and_name(\n parent_path=\"架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立\",\n partial_name=\"钢管塔\",\n quantity_type=\"主材\"\n )\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n data = result_dict.get('data', [])\n \n if not status:\n return {'code': 201, 'message': message, 'status': False, 'data': 0}\n \n total_quantity = 0\n for item in data:\n if isinstance(item, dict) and item.get('类型') == '主材' and '钢管塔' in item.get('name', ''):\n try:\n quantity = float(item.get('数量', 0))\n total_quantity += quantity\n except (ValueError, TypeError):\n continue\n \n return {'code': 200, 'message': 'Ok', 'status': True, 'data': total_quantity}"} +{"name": "钢管塔_钢管价格_元", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管塔】的所有【主材】的【单价】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n parent_path = \"架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立\"\n result_dict = project.get_quantities_node_by_parent_and_name(parent_path, \"钢管塔\", \"主材\")\n status = result_dict.get('status', False)\n data = result_dict.get('data', [])\n if not status:\n return result_dict\n \n total_price = 0.0\n for item in data:\n if isinstance(item, Material) and \"钢管塔\" in item.name:\n try:\n price = float(item.单价含税) if item.单价含税 else 0.0\n total_price += price\n except (ValueError, AttributeError):\n continue\n \n return {\n 'code': 200,\n 'message': 'Ok',\n 'status': True,\n 'data': total_price\n }"} +{"name": "钢管杆_塔材量", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管杆】的所有【主材】的【数量】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n path = \"架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立\"\n result_dict = project.get_quantities_node_by_parent_and_name(path, \"钢管杆\", \"主材\")\n status = result_dict.get('status', False)\n data = result_dict.get('data', [])\n if not status:\n return result_dict\n \n total_quantity = 0.0\n for item in data:\n if isinstance(item, Material) and \"钢管杆\" in item.name:\n try:\n quantity = float(item.数量) if item.数量 else 0.0\n total_quantity += quantity\n except (ValueError, TypeError):\n continue\n \n return {\n 'code': 200,\n 'message': 'Ok',\n 'status': True,\n 'data': total_quantity\n }"} +{"name": "钢管杆_钢管价格_元", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管杆】的所有【主材】的【单价】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result = project.get_division_node_by_parent_and_name(\n parent_path=\"架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立\",\n partial_name=\"钢管杆\"\n )\n if not result.get('status', False):\n return result\n \n total_price = 0.0\n for division in result.get('data', []):\n materials_result = project.get_quantities_node_by_parent_and_name(\n parent_path=division['constraints']['path'],\n partial_name=\"主材\",\n quantity_type=\"主材\"\n )\n if not materials_result.get('status', False):\n continue\n \n for material in materials_result.get('data', []):\n if \"钢管杆\" in material.get('name', ''):\n price = float(material.get('单价含税', 0)) if material.get('单价含税') else 0.0\n total_price += price\n \n return {\n 'code': 200,\n 'message': 'Ok',\n 'status': True,\n 'data': total_price\n }"} +{"name": "导线及线材_分裂数", "query": "从【架空输电线路本体工程/架线工程】及其子孙项目划分中查找编码中包含【['YX5-67', 'YX5-68', 'YX5-69', 'YX5-78', 'YX5-79', 'YX5-59', 'YX5-60', 'YX5-61', 'YX5-62', 'YX5-63', 'YX5-64', 'YX5-65', 'YX5-66', 'YX5-74', 'YX5-75', 'YX5-76', 'YX5-77', 'YX5-52', 'YX5-53', 'YX5-54', 'YX5-55', 'YX5-56', 'YX5-57', 'YX5-58', 'YX5-70', 'YX5-71', 'YX5-72', 'YX5-73', 'YX5-14', 'YX5-15', 'YX5-16', 'YX5-17', 'YX5-43', 'YX5-44', 'YX5-45', 'YX5-46', 'YX5-47', 'YX5-48', 'YX5-49', 'YX5-50', 'YX5-51', 'YX5-10', 'YX5-11', 'YX5-12', 'YX5-13', 'YX5-38', 'YX5-39', 'YX5-40', 'YX5-41', 'YX5-42', 'YX5-8', 'YX5-9']】的所有【定额】的【参数】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n target_codes = ['YX5-67', 'YX5-68', 'YX5-69', 'YX5-78', 'YX5-79', 'YX5-59', 'YX5-60', 'YX5-61', 'YX5-62', 'YX5-63', 'YX5-64', 'YX5-65', 'YX5-66', 'YX5-74', 'YX5-75', 'YX5-76', 'YX5-77', 'YX5-52', 'YX5-53', 'YX5-54', 'YX5-55', 'YX5-56', 'YX5-57', 'YX5-58', 'YX5-70', 'YX5-71', 'YX5-72', 'YX5-73', 'YX5-14', 'YX5-15', 'YX5-16', 'YX5-17', 'YX5-43', 'YX5-44', 'YX5-45', 'YX5-46', 'YX5-47', 'YX5-48', 'YX5-49', 'YX5-50', 'YX5-51', 'YX5-10', 'YX5-11', 'YX5-12', 'YX5-13', 'YX5-38', 'YX5-39', 'YX5-40', 'YX5-41', 'YX5-42', 'YX5-8', 'YX5-9']\n parent_path = '架空输电线路本体工程/架线工程'\n quantity_type = '定额'\n total_parameter = 0.0\n \n for code in target_codes:\n result_dict = project.get_quantities_node_by_parent_and_code(parent_path, quantity_type, code)\n status = result_dict.get('status', False)\n if not status:\n continue\n data = result_dict.get('data', [])\n if isinstance(data, list):\n for item in data:\n if isinstance(item, dict) and '参数' in item:\n try:\n total_parameter += float(item['参数'])\n except (ValueError, TypeError):\n pass\n elif isinstance(data, dict) and '参数' in data:\n try:\n total_parameter += float(data['参数'])\n except (ValueError, TypeError):\n pass\n \n return {\n 'code': 200,\n 'message': 'Ok',\n 'status': True,\n 'data': total_parameter\n }"} +{"name": "导线及线材_其中:节能导线量", "query": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】及其子孙项目划分中查找名称中包含【高导电率】的所有【主材】的【数量】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n total_quantity = 0.0\n \n paths = [\n \"架空输电线路本体工程/架线工程/导地线架设\",\n \"架空输电线路本体工程/架线工程/导地线跨越架设\"\n ]\n \n for path in paths:\n result = project.get_quantities_node_by_parent_and_name(\n parent_path=path,\n partial_name=\"高导电率\",\n quantity_type=\"主材\"\n )\n \n if not result.get('status', False):\n continue\n \n materials = result.get('data', [])\n if not isinstance(materials, list):\n materials = [materials]\n \n for material in materials:\n if not isinstance(material, dict):\n continue\n if '数量' in material:\n try:\n total_quantity += float(material['数量'])\n except (ValueError, TypeError):\n pass\n \n return {\n 'code': 200 if total_quantity > 0 else 201,\n 'message': 'Ok' if total_quantity > 0 else 'No matching materials found',\n 'status': total_quantity > 0,\n 'data': total_quantity\n }"} +{"name": "导线及线材_导线装材费_元", "query": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】及其子孙项目划分中查找名称中包含【线】的所有【主材】的【单价】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n total_price = 0.0\n \n paths = [\n \"架空输电线路本体工程/架线工程/导地线架设\",\n \"架空输电线路本体工程/架线工程/导地线跨越架设\"\n ]\n \n for path in paths:\n result = project.get_quantities_node_by_parent_and_name(\n parent_path=path,\n partial_name=\"线\",\n quantity_type=\"主材\"\n )\n \n if not result.get('status', False):\n continue\n \n materials = result.get('data', [])\n for material in materials:\n if isinstance(material, dict):\n price_str = material.get('单价含税', '0')\n try:\n price = float(price_str) if price_str else 0.0\n total_price += price\n except ValueError:\n continue\n \n return {\n 'code': 200,\n 'message': 'Ok',\n 'status': True,\n 'data': total_price\n }"} +{"name": "导线及线材_其中:节能导线费用_元", "query": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】及其子孙项目划分中查找名称中包含【高导电率】的所有【主材】的【单价】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n total_price = 0.0\n \n paths = [\n \"架空输电线路本体工程/架线工程/导地线架设\",\n \"架空输电线路本体工程/架线工程/导地线跨越架设\"\n ]\n \n for path in paths:\n result = project.get_quantities_node_by_parent_and_name(\n parent_path=path,\n partial_name=\"高导电率\",\n quantity_type=\"主材\"\n )\n \n if not result.get('status', False):\n continue\n \n materials = result.get('data', [])\n for material in materials:\n if not isinstance(material, dict):\n continue\n \n price_str = material.get('单价含税', '0')\n try:\n price = float(price_str)\n total_price += price\n except ValueError:\n continue\n \n return {\n 'code': 200,\n 'message': 'Ok',\n 'status': True,\n 'data': total_price\n }"} +{"name": "导线及线材_导线类型", "query": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设@@架空输电线路本体工程/架线工程/其他架线工程】及其子孙项目划分中查找名称中包含【['钢芯铝绞线', '铝包钢芯铝绞线', '中强度铝合金绞线', '铝合金芯铝绞线', '铝合金芯高导电率铝绞线', '钢芯高导电率铝绞线', '特高强度钢芯铝合金绞线', '扩径导线', '耐热导线', '碳纤维导线']】的所有【主材】的【参数】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n parent_paths = [\n \"架空输电线路本体工程/架线工程/导地线架设\",\n \"架空输电线路本体工程/架线工程/导地线跨越架设\",\n \"架空输电线路本体工程/架线工程/其他架线工程\"\n ]\n material_names = [\n '钢芯铝绞线', '铝包钢芯铝绞线', '中强度铝合金绞线', '铝合金芯铝绞线', \n '铝合金芯高导电率铝绞线', '钢芯高导电率铝绞线', '特高强度钢芯铝合金绞线', \n '扩径导线', '耐热导线', '碳纤维导线'\n ]\n total_params = 0.0\n\n for parent_path in parent_paths:\n for material_name in material_names:\n result_dict = project.get_quantities_node_by_parent_and_name(\n parent_path=parent_path,\n partial_name=material_name,\n quantity_type='主材'\n )\n if not result_dict.get('status', False):\n continue\n materials = result_dict.get('data', [])\n for material in materials:\n if isinstance(material, dict) and '参数' in material:\n try:\n param_value = float(material['参数'])\n total_params += param_value\n except (ValueError, TypeError):\n continue\n\n return {\n 'code': 200,\n 'message': 'Ok',\n 'status': True,\n 'data': total_params\n }"} +{"name": "基础钢材量", "query": "从【架空输电线路本体工程/基础工程/基础砌筑】及其子孙项目划分中查找名称中包含【圆钢】的所有【主材】的【数量】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_quantities_node_by_parent_and_name(\n parent_path=\"架空输电线路本体工程/基础工程/基础砌筑\",\n partial_name=\"圆钢\",\n quantity_type=\"主材\"\n )\n status = result_dict.get('status', False)\n if not status:\n return result_dict\n \n data = result_dict.get('data', [])\n total_quantity = 0.0\n \n for item in data:\n if isinstance(item, dict) and item.get(\"类型\") == \"主材\" and \"圆钢\" in item.get(\"name\", \"\"):\n try:\n quantity = float(item.get(\"数量\", 0))\n total_quantity += quantity\n except (ValueError, TypeError):\n continue\n \n return {\n 'code': 200,\n 'message': 'Ok',\n 'status': True,\n 'data': total_quantity\n }"} +{"name": "基础钢材价格", "query": "从【架空输电线路本体工程/基础工程/基础砌筑】及其子孙项目划分中查找名称中包含【圆钢】的所有【主材】的【单价】之和", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n base_path = \"架空输电线路本体工程/基础工程/基础砌筑\"\n total_price = 0.0\n \n def process_division(path):\n nonlocal total_price\n quantities_result = project.get_quantities_node_by_parent_and_name(path, \"圆钢\", \"主材\")\n if quantities_result.get('status'):\n for material_data in quantities_result.get('data', []):\n material = Material()\n material.__dict__.update(material_data)\n if \"单价含税\" in material.__dict__ and material.单价含税:\n try:\n total_price += float(material.单价含税)\n except (ValueError, TypeError):\n pass\n \n children_result = project.get_division_node_by_parent_and_name(path, \"\")\n if children_result.get('status'):\n for child_data in children_result.get('data', []):\n if 'path' in child_data:\n process_division(child_data['path'])\n \n process_division(base_path)\n \n return {\n 'code': 200,\n 'message': 'Ok',\n 'status': True,\n 'data': total_price\n }"} +{"name": "本体费用合计_元", "query": "从【工程费用】中获取【架空输电线路本体工程.合计费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_Engineering_Cost_table(\"工程费用\", \"架空输电线路本体工程.合计费\", \"合计费\")\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "本体工程人工费_本体_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程人工费_本体_元】的费用", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_division_node_by_parent_and_name('架空输电线路本体工程', '本体工程人工费_本体_元')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', [])\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "本体工程人工费_调试_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程人工费_调试_元】的费用", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_division_node_by_parent_and_name('架空输电线路本体工程', '本体工程人工费_调试_元')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', [])\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "本体工程机械费_本体_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程机械费_本体_元】的费用", "code": "根据用户问题和上下文信息,我将生成对应的Python代码:\n\n```python\ndef project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_table_by_project_division(\n project_division_path=\"架空输电线路本体工程\",\n fee_name=\"本体工程机械费_本体_元\"\n )\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('data', '')\n data = result_dict.get('data', [])\n if status:\n return result_dict\n else:\n return result_dict\n```"} +{"name": "本体工程机械费_调试_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程机械费_调试_元】的费用", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_division_node_by_parent_and_name('架空输电线路本体工程', '本体工程机械费_调试_元')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', [])\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "基础工程费用_元", "query": "从【架空输电线路本体工程/基础工程】项目划分中获取名称属于【基础工程费用_元】的费用", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_table_by_project_division(\"架空输电线路本体工程/基础工程\", \"基础工程费用_元\")\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "杆塔工程费用_元", "query": "从【架空输电线路本体工程/杆塔工程】项目划分中获取名称属于【杆塔工程费用_元】的费用", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_table_by_project_division(\"架空输电线路本体工程/杆塔工程\", \"杆塔工程费用_元\")\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "接地工程费用_元", "query": "从【架空输电线路本体工程/接地工程】项目划分中获取名称属于【接地工程费用_元】的费用", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_table_by_project_division(\"架空输电线路本体工程/接地工程\", \"接地工程费用_元\")\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "架线工程费用_元", "query": "从【架空输电线路本体工程/架线工程】项目划分中获取名称属于【架线工程费用_元】的费用", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_table_by_project_division(\"架空输电线路本体工程/架线工程\", \"架线工程费用_元\")\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "附件工程费用_元", "query": "从【架空输电线路本体工程/附件安装工程】项目划分中获取名称属于【附件工程费用_元】的费用", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_table_by_project_division(\"架空输电线路本体工程/附件安装工程\", \"附件工程费用_元\")\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "辅助工程费用_元", "query": "从【架空输电线路本体工程/辅助工程】项目划分中获取名称属于【辅助工程费用_元】的费用", "code": "根据用户问题和上下文信息,我们需要从\"架空输电线路本体工程/辅助工程\"项目划分中获取名称为\"辅助工程费用_元\"的费用。根据工程数据访问库,最匹配的方法是`get_fee_table_by_project_division`。\n\ndef project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_table_by_project_division(\n project_division_path=\"架空输电线路本体工程/辅助工程\",\n fee_name=\"辅助工程费用_元\"\n )\n status = result_dict.get('status', False)\n if not status:\n raise Exception(f\"获取费用失败: {result_dict.get('message', '未知错误')}\")\n return result_dict"} +{"name": "辅助工程费用_调试_元", "query": "从【架空输电线路本体工程/辅助工程】项目划分中获取名称属于【辅助工程费用_调试_元】的费用", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_table_by_project_division(\"架空输电线路本体工程/辅助工程\", \"辅助工程费用_调试_元\")\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "辅助设施工程_元", "query": "从【工程费用】中获取【辅助设施工程.合计费】的属性", "code": "根据用户问题和上下文信息,我们需要从工程费用表中获取\"辅助设施工程.合计费\"的属性。根据工程数据访问库,最匹配的方法是`get_fee_schedule_on_Engineering_Cost_table`。\n\n```python\ndef project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_Engineering_Cost_table(\"工程费用\", \"辅助设施工程.合计费\", \"合计费\")\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict\n```"} +{"name": "其他费用合计_元", "query": "从【工程费用】中获取【其他费用.合计费】的属性", "code": "根据用户问题和上下文信息,我们需要从\"工程费用\"中获取\"其他费用.合计费\"的属性。根据上下文信息,\"工程费用\"的类型是\"FeeScheduleItem\",而\"其他费用.合计费\"的类型是\"Fee\"。\n\n最匹配的方法是`get_fee_schedule_on_Engineering_Cost_table`,因为它专门用于在工程费用表中查找费用。\n\n```python\ndef project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_Engineering_Cost_table(\n table_name=\"工程费用表\",\n fee_name=\"合计费\",\n fee=\"其他费用\"\n )\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('data', '')\n data = result_dict.get('data', [])\n if status:\n return result_dict\n else:\n return result_dict\n```"} +{"name": "建场费合计_元", "query": "从【其他费用】中获取【建设场地征用及清理费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_other_expense_table('其他费用表', '建设场地征用及清理费', 'amount')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "项目建设管理费合计_元", "query": "从【其他费用】中获取【项目建设管理费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_other_expense_table('其他费用表', '项目建设管理费', 'amount')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "其中:工程监理费_元", "query": "从【其他费用】中获取【工程监理费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_other_expense_table('其他费用表', '工程监理费', 'rate')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "项目建设技术服务费合计_元", "query": "从【其他费用】中获取【项目建设技术服务费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_other_expense_table('其他费用表', '项目建设技术服务费', 'amount')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "其中:项目前期工作费_元", "query": "从【其他费用】中获取【项目前期工作费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_other_expense_table('其他费用表', '项目前期工作费', 'amount')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "其中:勘察费_元", "query": "从【其他费用】中获取【勘察费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_other_expense_table('其他费用表', '勘察费', 'rate')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "其中:设计费_元", "query": "从【其他费用】中获取【设计费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_other_expense_table('其他费用表', '设计费', 'rate')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "其中:工程建设检测费_元", "query": "从【其他费用】中获取【工程建设检测费】的属性", "code": "根据用户问题和上下文信息,我们需要从\"其他费用\"表中获取\"工程建设检测费\"的属性。根据上下文信息,\"其他费用\"是一个FeeScheduleItem类型,而\"工程建设检测费\"是一个Fee类型。\n\n最匹配的方法是`get_fee_schedule_on_other_expense_table`,因为它专门用于在其他费用表中查找费用。\n\n```python\ndef project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_other_expense_table(\n table_name=\"其他费用\",\n fee_name=\"工程建设检测费\",\n fee=\"*\"\n )\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict\n```"} +{"name": "生产准备费_元", "query": "从【其他费用】中获取【生产准备费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_other_expense_table(table_name='其他费用表', fee_name='生产准备费', fee='amount')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "其中:安全文明施工费_线路_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【其中:安全文明施工费_线路_元】的费用", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_division_node_by_parent_and_name('架空输电线路本体工程', '其中:安全文明施工费_线路_元')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', [])\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "其中:安全文明施工费_调试_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【其中:安全文明施工费_调试_元】的费用", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_division_node_by_parent_and_name('架空输电线路本体工程', '其中:安全文明施工费_调试_元')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', [])\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "基本预备费_元", "query": "从【工程费用】中获取【基本预备费.合计费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_Engineering_Cost_table(\"工程费用\", \"基本预备费.合计费\", \"合计费\")\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "静态投资_元", "query": "从【工程费用】中获取【工程静态投资(一~七项合计).合计费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_Engineering_Cost_table(\"工程费用表\", \"工程静态投资(一~七项合计).合计费\", \"合计费\")\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "建设期利息_元", "query": "从【工程费用】中获取【建设期贷款利息.合计费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_Engineering_Cost_table(\"工程费用\", \"建设期贷款利息.合计费\", \"合计费\")\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} +{"name": "动态投资_元", "query": "从【工程费用】中获取【工程动态投资(一~八项合计).合计费】的属性", "code": "根据用户问题和上下文信息,我们需要从\"工程费用\"表中获取\"工程动态投资(一~八项合计).合计费\"的属性。根据工程数据访问库,最匹配的方法是`get_fee_schedule_on_Engineering_Cost_table`。\n\n```python\ndef project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_Engineering_Cost_table(\n table_name=\"工程费用\",\n fee_name=\"工程动态投资(一~八项合计)\",\n fee=\"合计费\"\n )\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict\n```"} +{"name": "增值税抵扣税额_元", "query": "从【工程费用】中获取【其中:可抵扣增值税额.合计费】的属性", "code": "def project_get_calculate_function():\n project = ProjectBuilder.build()\n result_dict = project.get_fee_schedule_on_Engineering_Cost_table('工程费用表', '其中:可抵扣增值税额.合计费', '合计费')\n status = result_dict.get('status', False)\n message = result_dict.get('message', '')\n code = result_dict.get('code', '')\n data = result_dict.get('data', {})\n if status:\n return result_dict\n else:\n return result_dict"} diff --git a/tests/fail_20250704124415.jsonl b/tests/fail_20250704124415.jsonl new file mode 100644 index 0000000..e69de29 diff --git a/tests/test.py b/tests/test.py index 49518e4..247055f 100644 --- a/tests/test.py +++ b/tests/test.py @@ -2,9 +2,25 @@ import os import sys sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +import logging +def setup_logger(logger_name): + """ + 设置指定名称的logger,将其级别设置为WARNING并禁用传播 + :param logger_name: logger的名称 + """ + logger = logging.getLogger(logger_name) + logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 + logger.propagate = False # 可选:禁用传播(防止被根logger处理) + return logger + + +logger_names = ["httpx", "openai", "langsmith.client", "neo4j", "urllib3", "httpcore"] +for name in logger_names: + setup_logger(name) + import json from src.dialog_manager import DialogManager -from src.llm_client import LLMClient +from src.multi_llm_client import MultiAPIKeyChatOpenAI from src.code_executor import CodeExecutor from src.neo4j_raw_retriever import Neo4jRawRetriever from src.prompt_manager import PromptManager @@ -13,18 +29,25 @@ from src.config import Config from src.document_loader import load_file from src.embedding_client import EmbeddingClient -from project import ProjectBuilder, ProjectToolkit -from project_implementation import ProjectToolkitNeo4j +from src.project import ProjectBuilder, ProjectToolkit +from src.project_implementation import ProjectToolkitNeo4j + +success_count = 0 +fail_count = 0 +questions = [] +error_list = [] def main(): + global fail_count, success_count, questions, error_list + config = Config() business_structure = load_file(config.business_object_structure_path) bowei_api_docs = load_file(config.bowei_api_docs_path) - llm_client = LLMClient(config.openai) + llm_client = MultiAPIKeyChatOpenAI(config.openai) - llm_client_coder = LLMClient(config.openai_coder) + llm_client_coder = MultiAPIKeyChatOpenAI(config.openai_coder) prompt_manager = PromptManager() @@ -38,7 +61,7 @@ def main(): ProjectBuilder.register(ProjectToolkitNeo4j, knowledge_retriever.driver) - code_executor = CodeExecutor(prompt_manager.prompts, llm_client_coder) + code_executor = CodeExecutor(prompt_manager.prompts, llm_client_coder, config.max_retries) dialog_manager = DialogManager( llm_client, @@ -55,37 +78,34 @@ def main(): # 提取指标映射关系并批量执行 for item in zhibiao_data: + datasource = item['数据来源'] + if datasource == '报表指标' or datasource == '指标库': + continue + query = item['指标描述']['指标映射'] - rewritten_results = dialog_manager.understand_user_question_stream(query) + #rewritten_results = dialog_manager.understand_user_question(query) + rewritten_results = [] if rewritten_results is None or rewritten_results == []: print('问题: {} 没有找到符合要求的数据'.format(query)) + fail_count += 1 + error_list.append(f"问题 {query} 调用 understand_user_question 返回空结果") continue selected_rewritten, selected_knowledge = rewritten_results[0] - questions = [] - success_count = 0 - fail_count = 0 - error_list = [] - - # 检查 understand_user_question_stream 方法调用结果,假设存在该方法调用 - # 示例调用,实际使用时请替换为真实调用 - # stream_result = dialog_manager.understand_user_question_stream(query) - # if stream_result is None or stream_result == []: - # questions.append(query) - # fail_count += 1 - # error_list.append(f"问题 {query} 调用 understand_user_question_stream 返回空结果") result = dialog_manager.execute_generated_code(selected_rewritten, selected_knowledge) if result is None or result == []: questions.append(selected_rewritten) fail_count += 1 - error_list.append(f"问题 {selected_rewritten} 调用 execute_generated_code 返回空结果") + error_list.append(f"问题 {query} {selected_rewritten} 调用 execute_generated_code 返回空结果") else: success_count += 1 - print(result) + #print(result) if __name__ == "__main__": + main() + total = success_count + fail_count if total > 0: success_rate = success_count / total @@ -98,5 +118,5 @@ if __name__ == "__main__": print("错误列表:") for error in error_list: print(error) - main() + diff --git a/tests/test_code1.py b/tests/test_code1.py new file mode 100644 index 0000000..c8af597 --- /dev/null +++ b/tests/test_code1.py @@ -0,0 +1,171 @@ +import os +import sys +import logging +sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + +from datetime import datetime + +# 获取当前时间,格式化为字符串 +now_str = datetime.now().strftime("%Y%m%d%H%M%S") + +log_filename = f"test_code1{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger("test_code1") + +import logging +def setup_logger(logger_name): + """ + 设置指定名称的logger,将其级别设置为WARNING并禁用传播 + :param logger_name: logger的名称 + """ + logger = logging.getLogger(logger_name) + logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 + logger.propagate = False # 可选:禁用传播(防止被根logger处理) + return logger + + +logger_names = ["httpx", "openai", "langsmith.client", "neo4j", "urllib3", "httpcore"] +for name in logger_names: + setup_logger(name) + +import json +import os +from src.dialog_manager import DialogManager +from src.multi_llm_client import MultiAPIKeyChatOpenAI +from src.code_executor import CodeExecutor +from src.neo4j_raw_retriever import Neo4jRawRetriever +from src.prompt_manager import PromptManager +import yaml +from src.config import Config +from src.document_loader import load_file +from src.embedding_client import EmbeddingClient + +from src.project import ProjectBuilder, ProjectToolkit +from src.project_implementation import ProjectToolkitNeo4j + +success_count = 0 +fail_count = 0 +questions = [] +error_list = [] +success_results = [] +fail_results = [] + +def main(): + global fail_count, success_count, questions, error_list + + config = Config() + + business_structure = load_file(config.business_object_structure_path) + bowei_api_docs = load_file(config.bowei_api_docs_path) + + llm_client = MultiAPIKeyChatOpenAI(config.openai) + + llm_client_coder = MultiAPIKeyChatOpenAI(config.openai_coder) + + prompt_manager = PromptManager() + + neo4j_conf = config.neo4j_conf + embedding_conf = config.embedding + + embedding_client = EmbeddingClient(embedding_conf) + + # 创建Neo4j检索器 + knowledge_retriever = Neo4jRawRetriever(neo4j_conf) + + ProjectBuilder.register(ProjectToolkitNeo4j, knowledge_retriever.driver) + + code_executor = CodeExecutor(prompt_manager.prompts, llm_client_coder, config.max_retries) + + dialog_manager = DialogManager( + llm_client, + business_structure, + bowei_api_docs, + code_executor, + knowledge_retriever, + prompt_manager, + ) + + # 加载 zhibiao.jsonl + zhibiao_data = [] + with open('./tests/zhibiao.jsonl', 'r', encoding='utf-8') as f: + for line in f: + zhibiao_data.append(json.loads(line)) + + # 提取指标映射关系并批量执行 + for item in zhibiao_data: + + query = item['query'] + selected_knowledge = item['result'] + + result = dialog_manager.generated_code(query, selected_knowledge) + if isinstance(result, dict) and result.get('status', False): + code = result['data'] + result = dialog_manager.execute_code(code) + if isinstance(result, dict) and result.get('status', False): + success_count += 1 + success_results.append({ + "query": query, + "result": result.get('data', []), + "status": True + }) + else: + questions.append(query) + fail_count += 1 + error_msg = result.get('message', '调用 execute_code 返回空结果') if isinstance(result, dict) else f"问题 {query} {selected_knowledge} 调用 execute_generated_code 返回空结果" + error_list.append(error_msg) + fail_results.append({ + "query": query, + "result": error_msg, + "status": False + }) + else: + questions.append(query) + fail_count += 1 + error_msg = result.get('message', '调用 generated_code 返回空结果') if isinstance(result, dict) else f"问题 {query} {selected_knowledge} 调用 execute_generated_code 返回空结果" + error_list.append(error_msg) + fail_results.append({ + "query": query, + "result": error_msg, + "status": False + }) + + #print(result) + +if __name__ == "__main__": + main() + + total = success_count + fail_count + if total > 0: + success_rate = success_count / total + fail_rate = fail_count / total + else: + success_rate = fail_rate = 0 + print(f"问题总数: {total}") + print(f"成功比例: {success_rate * 100:.2f}%") + print(f"失败比例: {fail_rate * 100:.2f}%") + print("错误列表:") + for error in error_list: + print(error) + + # 保存成功结果到 jsonl 文件 + success_filename = f'./tests/success_{now_str}.jsonl' + with open(success_filename, 'w', encoding='utf-8') as f: + for item in success_results: + f.write(json.dumps(item, ensure_ascii=False) + '\n') + + # 保存失败结果到 jsonl 文件 + fail_filename = f'./tests/fail_{now_str}.jsonl' + with open(fail_filename, 'w', encoding='utf-8') as f: + for item in fail_results: + f.write(json.dumps(item, ensure_ascii=False) + '\n') + + diff --git a/tests/test_generated_code.py b/tests/test_generated_code.py new file mode 100644 index 0000000..c3bb449 --- /dev/null +++ b/tests/test_generated_code.py @@ -0,0 +1,162 @@ +import os +import sys +import logging +sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + +from datetime import datetime + +# 获取当前时间,格式化为字符串 +now_str = datetime.now().strftime("%Y%m%d%H%M%S") + +log_filename = f"test_code1{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger("test_code1") + +import logging +def setup_logger(logger_name): + """ + 设置指定名称的logger,将其级别设置为WARNING并禁用传播 + :param logger_name: logger的名称 + """ + logger = logging.getLogger(logger_name) + logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 + logger.propagate = False # 可选:禁用传播(防止被根logger处理) + return logger + + +logger_names = ["httpx", "openai", "langsmith.client", "neo4j", "urllib3", "httpcore"] +for name in logger_names: + setup_logger(name) + +import json +import os +from src.dialog_manager import DialogManager +from src.multi_llm_client import MultiAPIKeyChatOpenAI +from src.code_executor import CodeExecutor +from src.neo4j_raw_retriever import Neo4jRawRetriever +from src.prompt_manager import PromptManager +import yaml +from src.config import Config +from src.document_loader import load_file +from src.embedding_client import EmbeddingClient + +from src.project import ProjectBuilder, ProjectToolkit +from src.project_implementation import ProjectToolkitNeo4j + +success_count = 0 +fail_count = 0 +questions = [] +error_list = [] +success_results = [] +fail_results = [] + +def main(): + global fail_count, success_count, questions, error_list + + config = Config() + + business_structure = load_file(config.business_object_structure_path) + bowei_api_docs = load_file(config.bowei_api_docs_path) + + llm_client = MultiAPIKeyChatOpenAI(config.openai) + + llm_client_coder = MultiAPIKeyChatOpenAI(config.openai_coder) + + prompt_manager = PromptManager() + + neo4j_conf = config.neo4j_conf + embedding_conf = config.embedding + + embedding_client = EmbeddingClient(embedding_conf) + + # 创建Neo4j检索器 + knowledge_retriever = Neo4jRawRetriever(neo4j_conf) + + ProjectBuilder.register(ProjectToolkitNeo4j, knowledge_retriever.driver) + + code_executor = CodeExecutor(prompt_manager.prompts, llm_client_coder, config.max_retries) + + dialog_manager = DialogManager( + llm_client, + business_structure, + bowei_api_docs, + code_executor, + knowledge_retriever, + prompt_manager, + ) + + # 加载 zhibiao.jsonl + zhibiao_data = [] + with open('./tests/zhibiao.jsonl', 'r', encoding='utf-8') as f: + for line in f: + zhibiao_data.append(json.loads(line)) + + # 提取指标映射关系并批量执行 + for item in zhibiao_data: + + query = item['query'] + name = item['name'] + selected_knowledge = item['result'] + logger.info(f"指标名称 {name} 问题: {query} 开始生成代码") + + result = dialog_manager.generated_code(query, selected_knowledge) + if isinstance(result, dict) and result.get('status', False): + code = result['data'] + success_count += 1 + success_results.append({ + "name": name, + "query": query, + "code": code, + }) + else: + questions.append(query) + fail_count += 1 + error_msg = result.get('message', '调用 generated_code 返回空结果') if isinstance(result, dict) else f"问题 {query} {selected_knowledge} 调用 execute_generated_code 返回空结果" + error_list.append(error_msg) + fail_results.append({ + "name": name, + "query": query, + "messages": error_msg, + "selected_knowledge": selected_knowledge, + }) + + #print(result) + +if __name__ == "__main__": + main() + + total = success_count + fail_count + if total > 0: + success_rate = success_count / total + fail_rate = fail_count / total + else: + success_rate = fail_rate = 0 + print(f"问题总数: {total}") + print(f"成功比例: {success_rate * 100:.2f}%") + print(f"失败比例: {fail_rate * 100:.2f}%") + print("错误列表:") + for error in error_list: + print(error) + + # 保存成功结果到 jsonl 文件 + success_filename = f'./tests/code_{now_str}.jsonl' + with open(success_filename, 'w', encoding='utf-8') as f: + for item in success_results: + f.write(json.dumps(item, ensure_ascii=False) + '\n') + + # 保存失败结果到 jsonl 文件 + fail_filename = f'./tests/fail_{now_str}.jsonl' + with open(fail_filename, 'w', encoding='utf-8') as f: + for item in fail_results: + f.write(json.dumps(item, ensure_ascii=False) + '\n') + + diff --git a/tests/test_node.py b/tests/test_node.py index a81e5db..6264b97 100644 --- a/tests/test_node.py +++ b/tests/test_node.py @@ -8,7 +8,7 @@ import logging logging.basicConfig( level=logging.DEBUG, # 生产环境可改为 INFO 或 WARNING format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", - handlers=[logging.FileHandler("test.log", encoding="utf-8"), logging.StreamHandler()], + handlers=[logging.FileHandler("logs/test.log", encoding="utf-8"), logging.StreamHandler()], ) logger = logging.getLogger("test") @@ -34,7 +34,7 @@ for name in logger_names: import asyncio import json from src.dialog_manager import DialogManager -from src.llm_client import LLMClient +from src.multi_llm_client import MultiAPIKeyChatOpenAI from src.code_executor import CodeExecutor from src.neo4j_raw_retriever import Neo4jRawRetriever from src.prompt_manager import PromptManager @@ -43,8 +43,8 @@ from src.config import Config from src.document_loader import load_file from src.embedding_client import EmbeddingClient -from project import ProjectBuilder, ProjectToolkit -from project_implementation import ProjectToolkitNeo4j +from src.project import ProjectBuilder, ProjectToolkit +from src.project_implementation import ProjectToolkitNeo4j def main(): @@ -53,9 +53,9 @@ def main(): business_structure = load_file(config.business_object_structure_path) bowei_api_docs = load_file(config.bowei_api_docs_path) - llm_client = LLMClient(config.openai) + llm_client = MultiAPIKeyChatOpenAI(config.openai) - llm_client_coder = LLMClient(config.openai_coder) + llm_client_coder = MultiAPIKeyChatOpenAI(config.openai_coder) prompt_manager = PromptManager() diff --git a/tests/test_runcode.py b/tests/test_runcode.py index dd4f8f9..a476882 100644 --- a/tests/test_runcode.py +++ b/tests/test_runcode.py @@ -5,15 +5,15 @@ import logging import traceback import sys sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) -from project import ProjectBuilder, ProjectToolkit -from project_implementation import ProjectToolkitNeo4j +from src.project import ProjectBuilder, ProjectToolkit +from src.project_implementation import ProjectToolkitNeo4j from neo4j import GraphDatabase from src.config import Config logging.basicConfig( level=logging.DEBUG, # 生产环境可改为 INFO 或 WARNING format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", - handlers=[logging.FileHandler("test_runcode.log", encoding="utf-8"), logging.StreamHandler()], + handlers=[logging.FileHandler("logs/test_runcode.log", encoding="utf-8"), logging.StreamHandler()], ) logger = logging.getLogger("test_runcode") @@ -24,13 +24,27 @@ def main(): neo4j_conf = config.neo4j_conf code_str = ''' - def project_get_calculate_function(): - project = ProjectBuilder.build() - status, data, error, helper_info = project.get_division_item_by_path("安装/架空输电线路本体工程") - if status == 'success': - return status, data.get('单位', ''), error, helper_info - return status, None, error, helper_info - ''' +def project_get_calculate_function(): + project = ProjectBuilder.build() + parent_path = "架空输电线路本体工程/基础工程" + quantity_type = "定额" + code = "YX2-1/YX2-2/YX2-3/YX2-4/YX2-5/YX2-6/YX2-7" + status, data, error, helper_info = project.get_quantities_node_by_parent_and_code(parent_path, quantity_type, code) + if status != "success": + return { + "helper_info": helper_info, + "error": error, + "status": status, + "data": None + } + total_quantity = sum(float(item.get("数量", 0)) for item in data if item.get("数量")) + return { + "helper_info": helper_info, + "error": error, + "status": status, + "data": total_quantity + } +''' neo4j_driver = GraphDatabase.driver(neo4j_conf.get("uri"), auth=(neo4j_conf.get("username"), neo4j_conf.get("password"))) @@ -53,23 +67,42 @@ def main(): if "project_get_calculate_function" not in namespace: raise ValueError("代码中未定义project_get_calculate_function函数") - result_tuple = namespace["project_get_calculate_function"]() + result_dict = namespace["project_get_calculate_function"]() sys.stdout = old_stdout output = redirected_output.getvalue().strip() - if not isinstance(result_tuple, tuple) or len(result_tuple) != 4: - raise ValueError("函数应返回包含4个元素的元组(status, data, error, helper_info)") + if not isinstance(result_dict, dict) or len(result_dict) != 4: + raise ValueError("函数应返回包含4个元素的字典(status, data, error, helper_info)") - status, data, error, helper_info = result_tuple + logger.debug(f"执行结果: {result_dict}") - logger.info(f"执行结果: status={status}, data={data}, error={error}") + if result_dict["status"] == "success": + return { + "code": 20000, + "message": result_dict["error"] if result_dict["error"] else '', + "status": True, + "data": result_dict["data"] if result_dict["data"] else [] + } + else: + return { + "code": 50000, + "message": result_dict["error"] if result_dict["error"] else '', + "status": False, + "data": result_dict["data"] if result_dict["data"] else [] + } except Exception as e: # 确保恢复stdout sys.stdout = old_stdout logger.error(f"执行代码时出错: {e}") logger.error(traceback.format_exc()) + return { + "code": 50000, + "message": str(e), + "status": False, + "data": [] + } if __name__ == "__main__": diff --git a/tests/test_user_interaction.py b/tests/test_user_interaction.py new file mode 100644 index 0000000..38fd1b1 --- /dev/null +++ b/tests/test_user_interaction.py @@ -0,0 +1,184 @@ +# tests/test_userinteraction.py + +import os +import sys +import json +import logging +import os +from datetime import datetime +sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + +current_file = os.path.splitext(os.path.basename(__file__))[0] +now_str = datetime.now().strftime("%Y%m%d%H%M%S") +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) + +def setup_logger(logger_name): + """ + 设置指定名称的logger,将其级别设置为WARNING并禁用传播 + :param logger_name: logger的名称 + """ + logger = logging.getLogger(logger_name) + logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 + logger.propagate = False # 可选:禁用传播(防止被根logger处理) + return logger + + +logger_names = ["httpx", "openai", "langsmith.client", "neo4j", "urllib3", "httpcore"] +for name in logger_names: + setup_logger(name) + +from src.config import Config +from src.document_loader import load_file +from src.multi_llm_client import MultiAPIKeyChatOpenAI +from src.user_interaction import UserInteraction +import json +from src.dialog_manager import DialogManager +from src.multi_llm_client import MultiAPIKeyChatOpenAI +from src.code_executor import CodeExecutor +from src.neo4j_raw_retriever import Neo4jRawRetriever +from src.prompt_manager import PromptManager +import yaml +from src.config import Config +from src.document_loader import load_file +from src.embedding_client import EmbeddingClient + +from src.project import ProjectBuilder, ProjectToolkit +from src.project_implementation import ProjectToolkitNeo4j + +success_count = 0 +fail_count = 0 +questions = [] +error_list = [] +success_list = [] + +def main(): + global success_count, fail_count, questions, error_list, success_list + + config = Config() + + business_structure = load_file(config.business_object_structure_path) + bowei_api_docs = load_file(config.bowei_api_docs_path) + + llm_client = MultiAPIKeyChatOpenAI(config.openai) + user_interaction = UserInteraction(llm_client.llm, business_structure) + + llm_client_coder = MultiAPIKeyChatOpenAI(config.openai_coder) + + prompt_manager = PromptManager() + + neo4j_conf = config.neo4j_conf + embedding_conf = config.embedding + + embedding_client = EmbeddingClient(embedding_conf) + + # 创建Neo4j检索器 + knowledge_retriever = Neo4jRawRetriever(neo4j_conf) + + ProjectBuilder.register(ProjectToolkitNeo4j, knowledge_retriever.driver) + + code_executor = CodeExecutor(prompt_manager.prompts, llm_client_coder, config.max_retries) + + dialog_manager = DialogManager( + llm_client, + business_structure, + bowei_api_docs, + code_executor, + knowledge_retriever, + prompt_manager, + ) + + # 读取 zhibiao.json + zhibiao_path = os.path.join(os.path.dirname(__file__), "zhibiao.json") + with open(zhibiao_path, "r", encoding="utf-8") as f: + zhibiao_data = json.load(f) + + isTest = True + isTest = False + + if isTest: + zhibiao_data = [ + { + "指标名称": "杆塔总基数", + "指标描述": { + "指标映射": "从【架空输电线路本体工程/附件安装工程】项目划分中获取名称属于【'合计'】的费用", + "映射规则": "YX2-1~7" + }, + "code": "", + "单位": "基", + "单价类型": None, + "序号": "1", + "提取方式": None, + "指标类型": "工程量指标", + "数据来源": "定额数量" + } + ] + + for idx, item in enumerate(zhibiao_data): + name = item.get("指标名称", "") + datasource = item.get("数据来源", "") + if datasource in ("报表指标", "指标库"): + logger.info(f"跳过索引 {idx},数据来源为 {datasource}") + continue + + query = item.get("指标描述", {}).get("指标映射", "") + if not query: + logger.warning(f"索引 {idx} 缺少指标映射,跳过") + continue + + try: + # 调用用户交互理解接口(同步调用) + result = user_interaction.understand(query) + if not result: + logger.error(f"问题: {query} 没有找到符合要求的数据") + fail_count += 1 + error_list.append(f"指标名称 {name} 问题 {query} 调用 understand 返回空结果") + continue + + # 这里示例只打印理解结果,你可以根据业务逻辑替换为后续处理 + logger.info( + f"指标名称 {name} 问题: {query} 理解结果: " + f"{[{'name': r.get('name'), 'constraints': r.get('constraints')} for r in result]}" + ) + + success_list.append({ + "name": name, + "query": query, + "result": [{'name': r.get('name'), 'constraints': r.get('constraints')} for r in result] + }) + success_count += 1 + + except Exception as e: + logger.error(f"指标名称 {name} 问题: {query} 处理异常: {e}") + fail_count += 1 + error_list.append(f"指标名称 {name} 问题 {query} 异常: {e}") + + total = success_count + fail_count + success_rate = (success_count / total) * 100 if total > 0 else 0 + fail_rate = (fail_count / total) * 100 if total > 0 else 0 + + print(f"问题总数: {total}") + print(f"成功比例: {success_rate:.2f}%)") + print(f"失败比例: {fail_rate:.2f}%)") + print("错误列表:") + for error in error_list: + print(error) + + # 将成功内容保存为 jsonl 文件 + success_jsonl_path = os.path.join(os.path.dirname(__file__), f"zhibiao_{now_str}.jsonl") + with open(success_jsonl_path, "w", encoding="utf-8") as f: + for item in success_list: + f.write(json.dumps(item, ensure_ascii=False) + "\n") + +if __name__ == "__main__": + main() diff --git a/tests/zhibiao.json b/tests/zhibiao.json index 77f0bf6..23abffb 100644 --- a/tests/zhibiao.json +++ b/tests/zhibiao.json @@ -1,1146 +1,2292 @@ [ { "指标名称": "电压等级", + "code": "", + "单位": null, + "单价类型": null, + "序号": "1", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['电压等级']的属性", + "指标映射": [ + "电压等级" + ], "映射规则": "电压等级" - }, - "code": "" + } }, { "指标名称": "工程编码", + "code": "", + "单位": null, + "单价类型": null, + "序号": "1", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['工程编号']的属性", + "指标映射": [ + "工程编号" + ], "映射规则": "工程编号" - }, - "code": "" + } }, { "指标名称": "工程名称", + "code": "", + "单位": null, + "单价类型": null, + "序号": "1", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['工程名称']的属性", + "指标映射": [ + "工程名称" + ], "映射规则": "工程名称" - }, - "code": "" + } }, { "指标名称": "工程时间", + "code": "", + "单位": null, + "单价类型": null, + "序号": "1", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['新建时间']的属性", + "指标映射": [ + "新建时间" + ], "映射规则": "新建时间" - }, - "code": "" + } }, { "指标名称": "线路曲折系数", + "code": "", + "单位": null, + "单价类型": null, + "序号": "4", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['工程参数_曲折系数']的属性", + "指标映射": [ + "工程参数_曲折系数" + ], "映射规则": "工程参数_曲折系数" - }, - "code": "" + } }, { "指标名称": "线路长度合计_折单", + "code": "", + "单位": "km", + "单价类型": null, + "序号": "5", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['折单回总长度']的属性", + "指标映射": [ + "折单回总长度" + ], "映射规则": "折单回总长度" - }, - "code": "" + } }, { "指标名称": "路径长度_单回路长度", + "code": "", + "单位": "km", + "单价类型": null, + "序号": "1", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['单回路']的属性", + "指标映射": [ + "单回路" + ], "映射规则": "单回路" - }, - "code": "" + } }, { "指标名称": "路径长度_双回路长度", + "code": "", + "单位": "km", + "单价类型": null, + "序号": "1", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['双回路']的属性", + "指标映射": [ + "双回路" + ], "映射规则": "双回路" - }, - "code": "" + } }, { "指标名称": "路径长度_三回路长度", + "code": "", + "单位": "km", + "单价类型": null, + "序号": "1", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['三回路']的属性", + "指标映射": [ + "三回路" + ], "映射规则": "三回路" - }, - "code": "" + } }, { "指标名称": "路径长度_四回路长度", + "code": "", + "单位": "km", + "单价类型": null, + "序号": "1", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['四回路']的属性", + "指标映射": [ + "四回路" + ], "映射规则": "四回路" - }, - "code": "" + } }, { "指标名称": "杆塔总基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "1", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "定额数量", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/基础工程】下所有子孙项目划分中查找名称属于['YX2-1~7']的所有数量", + "指标映射": "从【架空输电线路本体工程/基础工程】及其子孙项目划分中查找编码中包含【YX2-1~7】的所有【定额】的【数量】之和", "映射规则": "YX2-1~7" - }, - "code": "" + } }, { "指标名称": "角钢塔_塔基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "13", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['角钢塔基数']的属性", + "指标映射": [ + "角钢塔基数" + ], "映射规则": "角钢塔基数" - }, - "code": "" + } }, { "指标名称": "角钢塔_塔材量", + "code": "", + "单位": "t", + "单价类型": null, + "序号": "14", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "主材数量", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】下所有子孙项目划分中查找名称属于['角钢']的所有数量", + "指标映射": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢】的所有【主材】的【数量】之和", "映射规则": "角钢" - }, - "code": "" + } }, { "指标名称": "角钢塔_其中:高强钢塔材量", + "code": "", + "单位": "t", + "单价类型": null, + "序号": "15", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "主材数量", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】下所有子孙项目划分中查找名称属于['角钢、高强']的所有数量", + "指标映射": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢、高强】的所有【主材】的【数量】之和", "映射规则": "角钢、高强" - }, - "code": "" + } }, { "指标名称": "角钢塔_塔材装材费", + "code": "", + "单位": "万元/t", + "单价类型": "含税", + "序号": "16", + "提取方式": "最大", + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['角钢塔_塔材装材费_元/10000']的属性", + "指标映射": [ + "角钢塔_塔材装材费_元/10000" + ], "映射规则": "角钢塔_塔材装材费_元/10000" - }, - "code": "" + } }, { "指标名称": "角钢塔_塔材装材费_元", + "code": "", + "单位": "元/t", + "单价类型": "含税", + "序号": "16", + "提取方式": "平均", + "指标类型": "单价指标", + "数据来源": "主材单价", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】下所有子孙项目划分中查找名称属于['角钢']的所有单价", + "指标映射": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢】的所有【主材】的【单价】之和", "映射规则": "角钢" - }, - "code": "" + } }, { "指标名称": "角钢塔_其中:高强钢塔材费用", + "code": "", + "单位": "万元/t", + "单价类型": "含税", + "序号": "17", + "提取方式": "最大", + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['角钢塔_其中:高强钢塔材费用_元/10000']的属性", + "指标映射": [ + "角钢塔_其中:高强钢塔材费用_元/10000" + ], "映射规则": "角钢塔_其中:高强钢塔材费用_元/10000" - }, - "code": "" + } }, { "指标名称": "角钢塔_其中:高强钢塔材费用_元", + "code": "", + "单位": "元/t", + "单价类型": "含税", + "序号": "17", + "提取方式": "平均", + "指标类型": "单价指标", + "数据来源": "主材单价", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】下所有子孙项目划分中查找名称属于['角钢、高强']的所有单价", + "指标映射": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢、高强】的所有【主材】的【单价】之和", "映射规则": "角钢、高强" - }, - "code": "" + } }, { "指标名称": "钢管塔_塔基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "13", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['钢管塔基数']的属性", + "指标映射": [ + "钢管塔基数" + ], "映射规则": "钢管塔基数" - }, - "code": "" + } }, { "指标名称": "钢管塔_塔材量", + "code": "", + "单位": "t", + "单价类型": null, + "序号": "14", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "主材数量", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】下所有子孙项目划分中查找名称属于['钢管塔']的所有数量", + "指标映射": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管塔】的所有【主材】的【数量】之和", "映射规则": "钢管塔" - }, - "code": "" + } }, { "指标名称": "钢管塔_钢管价格", + "code": "", + "单位": "万元/t", + "单价类型": "含税", + "序号": "16", + "提取方式": "平均", + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['钢管塔_钢管价格_元/10000']的属性", + "指标映射": [ + "钢管塔_钢管价格_元/10000" + ], "映射规则": "钢管塔_钢管价格_元/10000" - }, - "code": "" + } }, { "指标名称": "钢管塔_钢管价格_元", + "code": "", + "单位": "元/t", + "单价类型": "含税", + "序号": "16", + "提取方式": "平均", + "指标类型": "单价指标", + "数据来源": "主材单价", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】下所有子孙项目划分中查找名称属于['钢管塔']的所有单价", + "指标映射": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管塔】的所有【主材】的【单价】之和", "映射规则": "钢管塔" - }, - "code": "" + } }, { "指标名称": "钢管杆_塔基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "13", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['钢管杆基数']的属性", + "指标映射": [ + "钢管杆基数" + ], "映射规则": "钢管杆基数" - }, - "code": "" + } }, { "指标名称": "钢管杆_塔材量", + "code": "", + "单位": "t", + "单价类型": null, + "序号": "14", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "主材数量", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】下所有子孙项目划分中查找名称属于['钢管杆']的所有数量", + "指标映射": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管杆】的所有【主材】的【数量】之和", "映射规则": "钢管杆" - }, - "code": "" + } }, { "指标名称": "钢管杆_钢管价格", + "code": "", + "单位": "万元/t", + "单价类型": "含税", + "序号": "16", + "提取方式": "平均", + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['钢管杆_钢管价格_元/10000']的属性", + "指标映射": [ + "钢管杆_钢管价格_元/10000" + ], "映射规则": "钢管杆_钢管价格_元/10000" - }, - "code": "" + } }, { "指标名称": "钢管杆_钢管价格_元", + "code": "", + "单位": "元/t", + "单价类型": "含税", + "序号": "16", + "提取方式": "平均", + "指标类型": "单价指标", + "数据来源": "主材单价", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】下所有子孙项目划分中查找名称属于['钢管杆']的所有单价", + "指标映射": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管杆】的所有【主材】的【单价】之和", "映射规则": "钢管杆" - }, - "code": "" + } }, { "指标名称": "水泥杆基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "13", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['混凝土杆基数']的属性", + "指标映射": [ + "混凝土杆基数" + ], "映射规则": "混凝土杆基数" - }, - "code": "" + } }, { "指标名称": "直线塔基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "18", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['直线塔基数', '直线杆基数']的属性", + "指标映射": [ + "直线塔基数", + "直线杆基数" + ], "映射规则": "直线塔基数+直线杆基数" - }, - "code": "" + } }, { "指标名称": "耐张转角塔基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "19", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['耐张塔基数', '耐张杆基数']的属性", + "指标映射": [ + "耐张塔基数", + "耐张杆基数" + ], "映射规则": "耐张塔基数+耐张杆基数" - }, - "code": "" + } }, { "指标名称": "海拔", + "code": "", + "单位": "m", + "单价类型": null, + "序号": "21", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['工程概况信息_海拔高度']的属性", + "指标映射": [ + "工程概况信息_海拔高度" + ], "映射规则": "工程概况信息_海拔高度" - }, - "code": "" + } }, { "指标名称": "导线及线材_分裂数", + "code": "", + "单位": null, + "单价类型": null, + "序号": "22", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "定额参数", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/架线工程】下所有子孙项目划分中查找名称属于['YX5-67', 'YX5-68', 'YX5-69', 'YX5-78', 'YX5-79', 'YX5-59', 'YX5-60', 'YX5-61', 'YX5-62', 'YX5-63', 'YX5-64', 'YX5-65', 'YX5-66', 'YX5-74', 'YX5-75', 'YX5-76', 'YX5-77', 'YX5-52', 'YX5-53', 'YX5-54', 'YX5-55', 'YX5-56', 'YX5-57', 'YX5-58', 'YX5-70', 'YX5-71', 'YX5-72', 'YX5-73', 'YX5-14', 'YX5-15', 'YX5-16', 'YX5-17', 'YX5-43', 'YX5-44', 'YX5-45', 'YX5-46', 'YX5-47', 'YX5-48', 'YX5-49', 'YX5-50', 'YX5-51', 'YX5-10', 'YX5-11', 'YX5-12', 'YX5-13', 'YX5-38', 'YX5-39', 'YX5-40', 'YX5-41', 'YX5-42', 'YX5-8', 'YX5-9']的所有参数", + "指标映射": "从【架空输电线路本体工程/架线工程】及其子孙项目划分中查找编码中包含【['YX5-67', 'YX5-68', 'YX5-69', 'YX5-78', 'YX5-79', 'YX5-59', 'YX5-60', 'YX5-61', 'YX5-62', 'YX5-63', 'YX5-64', 'YX5-65', 'YX5-66', 'YX5-74', 'YX5-75', 'YX5-76', 'YX5-77', 'YX5-52', 'YX5-53', 'YX5-54', 'YX5-55', 'YX5-56', 'YX5-57', 'YX5-58', 'YX5-70', 'YX5-71', 'YX5-72', 'YX5-73', 'YX5-14', 'YX5-15', 'YX5-16', 'YX5-17', 'YX5-43', 'YX5-44', 'YX5-45', 'YX5-46', 'YX5-47', 'YX5-48', 'YX5-49', 'YX5-50', 'YX5-51', 'YX5-10', 'YX5-11', 'YX5-12', 'YX5-13', 'YX5-38', 'YX5-39', 'YX5-40', 'YX5-41', 'YX5-42', 'YX5-8', 'YX5-9']】的所有【定额】的【参数】之和", "映射规则": "| 资源识别规则 | 指标值 |\n|-------|-------|\n| YX5-67~69、YX5-78~79 | 8 |\n| YX5-59~66、YX5-74~77 | 6 |\n| YX5-52~58、YX5-70~73 | 4 |\n| YX5-14~17、YX5-43~51 | 2 |\n| YX5-10~13、YX5-38~42、YX5-8~9 | 1 |" - }, - "code": "" + } }, { "指标名称": "导线及线材_单根导线面积", + "code": "", + "单位": "mm²", + "单价类型": null, + "序号": "23", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['导线1截面积']的属性", + "指标映射": [ + "导线1截面积" + ], "映射规则": "导线1截面积" - }, - "code": "" + } }, { "指标名称": "导线及线材_导线量", + "code": "", + "单位": "t", + "单价类型": null, + "序号": "24", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['导线用量#含弧垂?']的属性", + "指标映射": [ + "导线用量#含弧垂?" + ], "映射规则": "导线用量#含弧垂?" - }, - "code": "" + } }, { "指标名称": "导线及线材_其中:节能导线量", + "code": "", + "单位": "t", + "单价类型": null, + "序号": "25", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "主材数量", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】下所有子孙项目划分中查找名称属于['高导电率']的所有数量", + "指标映射": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】及其子孙项目划分中查找名称中包含【高导电率】的所有【主材】的【数量】之和", "映射规则": "高导电率" - }, - "code": "" + } }, { "指标名称": "导线及线材_导线装材费", + "code": "", + "单位": "万元/t", + "单价类型": null, + "序号": "26", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['导线及线材_导线装材费_元/10000']的属性", + "指标映射": [ + "导线及线材_导线装材费_元/10000" + ], "映射规则": "导线及线材_导线装材费_元/10000" - }, - "code": "" + } }, { "指标名称": "导线及线材_导线装材费_元", + "code": "", + "单位": "元/t", + "单价类型": "含税", + "序号": "26", + "提取方式": "最大", + "指标类型": "单价指标", + "数据来源": "主材单价", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】下所有子孙项目划分中查找名称属于['线']的所有单价", + "指标映射": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】及其子孙项目划分中查找名称中包含【线】的所有【主材】的【单价】之和", "映射规则": "线" - }, - "code": "" + } }, { "指标名称": "导线及线材_其中:节能导线费用", + "code": "", + "单位": "万元/t", + "单价类型": "含税", + "序号": "27", + "提取方式": "平均", + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['导线及线材_其中:节能导线费用_元/10000']的属性", + "指标映射": [ + "导线及线材_其中:节能导线费用_元/10000" + ], "映射规则": "导线及线材_其中:节能导线费用_元/10000" - }, - "code": "" + } }, { "指标名称": "导线及线材_其中:节能导线费用_元", + "code": "", + "单位": "元/t", + "单价类型": "含税", + "序号": "27", + "提取方式": "平均", + "指标类型": "单价指标", + "数据来源": "主材单价", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】下所有子孙项目划分中查找名称属于['高导电率']的所有单价", + "指标映射": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】及其子孙项目划分中查找名称中包含【高导电率】的所有【主材】的【单价】之和", "映射规则": "高导电率" - }, - "code": "" + } }, { "指标名称": "导线及线材_导线类型", + "code": "", + "单位": null, + "单价类型": null, + "序号": "28", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "主材参数", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设@@架空输电线路本体工程/架线工程/其他架线工程】下所有子孙项目划分中查找名称属于['钢芯铝绞线', '铝包钢芯铝绞线', '中强度铝合金绞线', '铝合金芯铝绞线', '铝合金芯高导电率铝绞线', '钢芯高导电率铝绞线', '特高强度钢芯铝合金绞线', '扩径导线', '耐热导线', '碳纤维导线']的所有参数", + "指标映射": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设@@架空输电线路本体工程/架线工程/其他架线工程】及其子孙项目划分中查找名称中包含【['钢芯铝绞线', '铝包钢芯铝绞线', '中强度铝合金绞线', '铝合金芯铝绞线', '铝合金芯高导电率铝绞线', '钢芯高导电率铝绞线', '特高强度钢芯铝合金绞线', '扩径导线', '耐热导线', '碳纤维导线']】的所有【主材】的【参数】之和", "映射规则": "| 资源识别规则 | 指标值 |\n|-------|-------|\n| 钢芯铝绞线 | 钢芯铝绞线 |\n| 铝包钢芯铝绞线 | 铝包钢芯铝绞线 |\n| 中强度铝合金绞线 | 中强度铝合金绞线 |\n| 铝合金芯铝绞线 | 铝合金芯铝绞线 |\n| 铝合金芯高导电率铝绞线 | 铝合金芯高导电率铝绞线 |\n| 钢芯高导电率铝绞线 | 钢芯高导电率铝绞线 |\n| 特高强度钢芯铝合金绞线 | 特高强度钢芯铝合金绞线 |\n| 扩径导线 | 扩径导线 |\n| 耐热导线 | 耐热导线 |\n| 碳纤维导线 | 碳纤维导线 |" - }, - "code": "" + } }, { "指标名称": "设计风速", + "code": "", + "单位": "m/s", + "单价类型": null, + "序号": "29", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['气象条件_设计风速#导则?']的属性", + "指标映射": [ + "气象条件_设计风速#导则?" + ], "映射规则": "气象条件_设计风速#导则?" - }, - "code": "" + } }, { "指标名称": "覆冰厚度", + "code": "", + "单位": "mm", + "单价类型": null, + "序号": "30", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['气象条件_覆冰厚度#导则?']的属性", + "指标映射": [ + "气象条件_覆冰厚度#导则?" + ], "映射规则": "气象条件_覆冰厚度#导则?" - }, - "code": "" + } }, { "指标名称": "地形分布_平地", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['平地']的属性", + "指标映射": [ + "平地" + ], "映射规则": "平地" - }, - "code": "" + } }, { "指标名称": "地形分布_丘陵", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['丘陵']的属性", + "指标映射": [ + "丘陵" + ], "映射规则": "丘陵" - }, - "code": "" + } }, { "指标名称": "地形分布_河网", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['河网']的属性", + "指标映射": [ + "河网" + ], "映射规则": "河网" - }, - "code": "" + } }, { "指标名称": "地形分布_泥沼", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['泥沼']的属性", + "指标映射": [ + "泥沼" + ], "映射规则": "泥沼" - }, - "code": "" + } }, { "指标名称": "地形分布_山地", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['山地']的属性", + "指标映射": [ + "山地" + ], "映射规则": "山地" - }, - "code": "" + } }, { "指标名称": "地形分布_高山", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['高山']的属性", + "指标映射": [ + "高山" + ], "映射规则": "高山" - }, - "code": "" + } }, { "指标名称": "地形分布_沙漠", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['沙漠']的属性", + "指标映射": [ + "沙漠" + ], "映射规则": "沙漠" - }, - "code": "" + } }, { "指标名称": "地形分布_峻岭", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['峻岭']的属性", + "指标映射": [ + "峻岭" + ], "映射规则": "峻岭" - }, - "code": "" + } }, { "指标名称": "地质条件_普通土", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['普通土比例']的属性", + "指标映射": [ + "普通土比例" + ], "映射规则": "普通土比例" - }, - "code": "" + } }, { "指标名称": "地质条件_坚土", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['坚土比例']的属性", + "指标映射": [ + "坚土比例" + ], "映射规则": "坚土比例" - }, - "code": "" + } }, { "指标名称": "地质条件_松砂石", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['松砂石比例']的属性", + "指标映射": [ + "松砂石比例" + ], "映射规则": "松砂石比例" - }, - "code": "" + } }, { "指标名称": "地质条件_水坑", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['水坑比例']的属性", + "指标映射": [ + "水坑比例" + ], "映射规则": "水坑比例" - }, - "code": "" + } }, { "指标名称": "地质条件_泥水坑", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['泥水坑比例']的属性", + "指标映射": [ + "泥水坑比例" + ], "映射规则": "泥水坑比例" - }, - "code": "" + } }, { "指标名称": "地质条件_流沙坑", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['流砂坑比例']的属性", + "指标映射": [ + "流砂坑比例" + ], "映射规则": "流砂坑比例" - }, - "code": "" + } }, { "指标名称": "地质条件_岩石爆破", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['岩石#爆破?比例']的属性", + "指标映射": [ + "岩石#爆破?比例" + ], "映射规则": "岩石#爆破?比例" - }, - "code": "" + } }, { "指标名称": "地质条件_岩石人工", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "技术指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['岩石#人凿?比例']的属性", + "指标映射": [ + "岩石#人凿?比例" + ], "映射规则": "岩石#人凿?比例" - }, - "code": "" + } }, { "指标名称": "土石方总量", + "code": "", + "单位": "m³", + "单价类型": null, + "序号": "37", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['基础土石方量', '接地土石方量', '排水沟土石方量', '护坡挡土墙排洪沟土石方量']的属性", + "指标映射": [ + "基础土石方量", + "接地土石方量", + "排水沟土石方量", + "护坡挡土墙排洪沟土石方量" + ], "映射规则": "基础土石方量+接地土石方量+排水沟土石方量+护坡挡土墙排洪沟土石方量" - }, - "code": "" + } }, { "指标名称": "土石方量_基坑", + "code": "", + "单位": "m³", + "单价类型": null, + "序号": "37", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['基坑土石方量']的属性", + "指标映射": [ + "基坑土石方量" + ], "映射规则": "基坑土石方量" - }, - "code": "" + } }, { "指标名称": "土石方量_接地", + "code": "", + "单位": "m³", + "单价类型": null, + "序号": "37", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['接地土石方量']的属性", + "指标映射": [ + "接地土石方量" + ], "映射规则": "接地土石方量" - }, - "code": "" + } }, { "指标名称": "土石方量_基面", + "code": "", + "单位": "m³", + "单价类型": null, + "序号": "37", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['尖峰及施工基面土石方量']的属性", + "指标映射": [ + "尖峰及施工基面土石方量" + ], "映射规则": "尖峰及施工基面土石方量" - }, - "code": "" + } }, { "指标名称": "各类基础数量占总塔基数比例_台阶式", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['台阶式基础基数', '台阶式基础基数', '板式基础基数', '插入式基础基数', '掏挖基础基数', '岩石嵌固基础基数', '锚杆基础基数', '灌注桩基础基数', '人工挖孔桩基础基数', '其他基础基数']的属性", + "指标映射": [ + "台阶式基础基数", + "台阶式基础基数", + "板式基础基数", + "插入式基础基数", + "掏挖基础基数", + "岩石嵌固基础基数", + "锚杆基础基数", + "灌注桩基础基数", + "人工挖孔桩基础基数", + "其他基础基数" + ], "映射规则": "台阶式基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" - }, - "code": "" + } }, { "指标名称": "各类基础数量占总塔基数比例_板式", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['板式基础基数', '台阶式基础基数', '板式基础基数', '插入式基础基数', '掏挖基础基数', '岩石嵌固基础基数', '锚杆基础基数', '灌注桩基础基数', '人工挖孔桩基础基数', '其他基础基数']的属性", + "指标映射": [ + "板式基础基数", + "台阶式基础基数", + "板式基础基数", + "插入式基础基数", + "掏挖基础基数", + "岩石嵌固基础基数", + "锚杆基础基数", + "灌注桩基础基数", + "人工挖孔桩基础基数", + "其他基础基数" + ], "映射规则": "板式基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" - }, - "code": "" + } }, { "指标名称": "各类基础数量占总塔基数比例_插入式", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['插入式基础基数', '台阶式基础基数', '板式基础基数', '插入式基础基数', '掏挖基础基数', '岩石嵌固基础基数', '锚杆基础基数', '灌注桩基础基数', '人工挖孔桩基础基数', '其他基础基数']的属性", + "指标映射": [ + "插入式基础基数", + "台阶式基础基数", + "板式基础基数", + "插入式基础基数", + "掏挖基础基数", + "岩石嵌固基础基数", + "锚杆基础基数", + "灌注桩基础基数", + "人工挖孔桩基础基数", + "其他基础基数" + ], "映射规则": "插入式基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" - }, - "code": "" + } }, { "指标名称": "各类基础数量占总塔基数比例_掏挖", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['掏挖基础基数', '台阶式基础基数', '板式基础基数', '插入式基础基数', '掏挖基础基数', '岩石嵌固基础基数', '锚杆基础基数', '灌注桩基础基数', '人工挖孔桩基础基数', '其他基础基数']的属性", + "指标映射": [ + "掏挖基础基数", + "台阶式基础基数", + "板式基础基数", + "插入式基础基数", + "掏挖基础基数", + "岩石嵌固基础基数", + "锚杆基础基数", + "灌注桩基础基数", + "人工挖孔桩基础基数", + "其他基础基数" + ], "映射规则": "掏挖基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" - }, - "code": "" + } }, { "指标名称": "各类基础数量占总塔基数比例_岩石嵌固", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['岩石嵌固基础基数', '台阶式基础基数', '板式基础基数', '插入式基础基数', '掏挖基础基数', '岩石嵌固基础基数', '锚杆基础基数', '灌注桩基础基数', '人工挖孔桩基础基数', '其他基础基数']的属性", + "指标映射": [ + "岩石嵌固基础基数", + "台阶式基础基数", + "板式基础基数", + "插入式基础基数", + "掏挖基础基数", + "岩石嵌固基础基数", + "锚杆基础基数", + "灌注桩基础基数", + "人工挖孔桩基础基数", + "其他基础基数" + ], "映射规则": "岩石嵌固基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" - }, - "code": "" + } }, { "指标名称": "各类基础数量占总塔基数比例_锚杆", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['锚杆基础基数', '台阶式基础基数', '板式基础基数', '插入式基础基数', '掏挖基础基数', '岩石嵌固基础基数', '锚杆基础基数', '灌注桩基础基数', '人工挖孔桩基础基数', '其他基础基数']的属性", + "指标映射": [ + "锚杆基础基数", + "台阶式基础基数", + "板式基础基数", + "插入式基础基数", + "掏挖基础基数", + "岩石嵌固基础基数", + "锚杆基础基数", + "灌注桩基础基数", + "人工挖孔桩基础基数", + "其他基础基数" + ], "映射规则": "锚杆基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" - }, - "code": "" + } }, { "指标名称": "各类基础数量占总塔基数比例_灌注桩", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['灌注桩基础基数', '台阶式基础基数', '板式基础基数', '插入式基础基数', '掏挖基础基数', '岩石嵌固基础基数', '锚杆基础基数', '灌注桩基础基数', '人工挖孔桩基础基数', '其他基础基数']的属性", + "指标映射": [ + "灌注桩基础基数", + "台阶式基础基数", + "板式基础基数", + "插入式基础基数", + "掏挖基础基数", + "岩石嵌固基础基数", + "锚杆基础基数", + "灌注桩基础基数", + "人工挖孔桩基础基数", + "其他基础基数" + ], "映射规则": "灌注桩基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" - }, - "code": "" + } }, { "指标名称": "各类基础数量占总塔基数比例_人工挖孔桩", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['人工挖孔桩基础基数', '台阶式基础基数', '板式基础基数', '插入式基础基数', '掏挖基础基数', '岩石嵌固基础基数', '锚杆基础基数', '灌注桩基础基数', '人工挖孔桩基础基数', '其他基础基数']的属性", + "指标映射": [ + "人工挖孔桩基础基数", + "台阶式基础基数", + "板式基础基数", + "插入式基础基数", + "掏挖基础基数", + "岩石嵌固基础基数", + "锚杆基础基数", + "灌注桩基础基数", + "人工挖孔桩基础基数", + "其他基础基数" + ], "映射规则": "人工挖孔桩基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" - }, - "code": "" + } }, { "指标名称": "各类基础数量占总塔基数比例_其他", + "code": "", + "单位": "%", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['其他基础基数', '台阶式基础基数', '板式基础基数', '插入式基础基数', '掏挖基础基数', '岩石嵌固基础基数', '锚杆基础基数', '灌注桩基础基数', '人工挖孔桩基础基数', '其他基础基数']的属性", + "指标映射": [ + "其他基础基数", + "台阶式基础基数", + "板式基础基数", + "插入式基础基数", + "掏挖基础基数", + "岩石嵌固基础基数", + "锚杆基础基数", + "灌注桩基础基数", + "人工挖孔桩基础基数", + "其他基础基数" + ], "映射规则": "其他基础基数/(台阶式基础基数+板式基础基数+插入式基础基数+掏挖基础基数+岩石嵌固基础基数+锚杆基础基数+灌注桩基础基数+人工挖孔桩基础基数+其他基础基数)*100" - }, - "code": "" + } }, { "指标名称": "台阶式基础基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['阶梯式']的属性", + "指标映射": [ + "阶梯式" + ], "映射规则": "阶梯式" - }, - "code": "" + } }, { "指标名称": "板式基础基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['大板式']的属性", + "指标映射": [ + "大板式" + ], "映射规则": "大板式" - }, - "code": "" + } }, { "指标名称": "插入式基础基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['插入式']的属性", + "指标映射": [ + "插入式" + ], "映射规则": "插入式" - }, - "code": "" + } }, { "指标名称": "掏挖基础基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['掏挖式']的属性", + "指标映射": [ + "掏挖式" + ], "映射规则": "掏挖式" - }, - "code": "" + } }, { "指标名称": "岩石嵌固基础基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['岩石']的属性", + "指标映射": [ + "岩石" + ], "映射规则": "岩石" - }, - "code": "" + } }, { "指标名称": "锚杆基础基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['锚杆']的属性", + "指标映射": [ + "锚杆" + ], "映射规则": "锚杆" - }, - "code": "" + } }, { "指标名称": "灌注桩基础基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['其中:灌注桩']的属性", + "指标映射": [ + "其中:灌注桩" + ], "映射规则": "其中:灌注桩" - }, - "code": "" + } }, { "指标名称": "人工挖孔桩基础基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['人工挖孔']的属性", + "指标映射": [ + "人工挖孔" + ], "映射规则": "人工挖孔" - }, - "code": "" + } }, { "指标名称": "其他基础基数", + "code": "", + "单位": "基", + "单价类型": null, + "序号": "79", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['其他基础型式#预规?', '钢管桩', '预制', '桩基础']的属性", + "指标映射": [ + "其他基础型式#预规?", + "钢管桩", + "预制", + "桩基础" + ], "映射规则": "其他基础型式#预规?+钢管桩+预制+桩基础" - }, - "code": "" + } }, { "指标名称": "基础混凝土总量", + "code": "", + "单位": "m³", + "单价类型": null, + "序号": "86", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['现浇混凝土用量', '预制混凝土用量']的属性", + "指标映射": [ + "现浇混凝土用量", + "预制混凝土用量" + ], "映射规则": "现浇混凝土用量+预制混凝土用量" - }, - "code": "" + } }, { "指标名称": "灌注桩基础混凝土量", + "code": "", + "单位": "m³", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['其中:灌注桩用量']的属性", + "指标映射": [ + "其中:灌注桩用量" + ], "映射规则": "其中:灌注桩用量" - }, - "code": "" + } }, { "指标名称": "现浇基础混凝土量", + "code": "", + "单位": "m³", + "单价类型": null, + "序号": null, + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['其中:现浇基础现浇混凝土量']的属性", + "指标映射": [ + "其中:现浇基础现浇混凝土量" + ], "映射规则": "其中:现浇基础现浇混凝土量" - }, - "code": "" + } }, { "指标名称": "挖孔基础混凝土量", + "code": "", + "单位": "m³", + "单价类型": null, + "序号": null, + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['其中:挖孔基础现浇混凝土量']的属性", + "指标映射": [ + "其中:挖孔基础现浇混凝土量" + ], "映射规则": "其中:挖孔基础现浇混凝土量" - }, - "code": "" + } }, { "指标名称": "基础护壁混凝土用量", + "code": "", + "单位": "m³", + "单价类型": null, + "序号": null, + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['其中:基础护壁用量']的属性", + "指标映射": [ + "其中:基础护壁用量" + ], "映射规则": "其中:基础护壁用量" - }, - "code": "" + } }, { "指标名称": "预制混凝土用量", + "code": "", + "单位": "m³", + "单价类型": null, + "序号": null, + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "报表指标", "指标描述": { - "指标映射": "从工程属性集中获取['预制混凝土用量']的属性", + "指标映射": [ + "预制混凝土用量" + ], "映射规则": "预制混凝土用量" - }, - "code": "" + } }, { "指标名称": "基础钢材量", + "code": "", + "单位": "t", + "单价类型": null, + "序号": "40", + "提取方式": null, + "指标类型": "工程量指标", + "数据来源": "主材数量", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/基础工程/基础砌筑】下所有子孙项目划分中查找名称属于['圆钢']的所有数量", + "指标映射": "从【架空输电线路本体工程/基础工程/基础砌筑】及其子孙项目划分中查找名称中包含【圆钢】的所有【主材】的【数量】之和", "映射规则": "圆钢" - }, - "code": "" + } }, { "指标名称": "基础钢材价格", + "code": "", + "单位": "元/t", + "单价类型": "不含税", + "序号": "29", + "提取方式": "最大", + "指标类型": "单价指标", + "数据来源": "主材单价", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/基础工程/基础砌筑】下所有子孙项目划分中查找名称属于['圆钢']的所有单价", + "指标映射": "从【架空输电线路本体工程/基础工程/基础砌筑】及其子孙项目划分中查找名称中包含【圆钢】的所有【主材】的【单价】之和", "映射规则": "圆钢" - }, - "code": "" + } }, { "指标名称": "本体费用合计", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "30", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['本体费用合计_元/10000']的属性", + "指标映射": [ + "本体费用合计_元/10000" + ], "映射规则": "本体费用合计_元/10000" - }, - "code": "" + } }, { "指标名称": "本体工程人工费", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "99", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['(本体工程人工费_调试_元+本体工程人工费_本体_元)', '本体工程人工费_调试_元', '本体工程人工费_本体_元']的属性", + "指标映射": [ + "本体工程人工费_调试_元", + "本体工程人工费_本体_元" + ], "映射规则": "(本体工程人工费_调试_元+本体工程人工费_本体_元)/10000" - }, - "code": "" + } }, { "指标名称": "本体工程机械费", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "100", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['(本体工程机械费_本体_元+本体工程机械费_调试_元)', '本体工程机械费_本体_元', '本体工程机械费_调试_元']的属性", + "指标映射": [ + "本体工程机械费_本体_元", + "本体工程机械费_调试_元" + ], "映射规则": "(本体工程机械费_本体_元+本体工程机械费_调试_元)/10000" - }, - "code": "" + } }, { "指标名称": "基础工程费用", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "31", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['基础工程费用_元/10000']的属性", + "指标映射": [ + "基础工程费用_元/10000" + ], "映射规则": "基础工程费用_元/10000" - }, - "code": "" + } }, { "指标名称": "杆塔工程费用", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "32", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['杆塔工程费用_元/10000']的属性", + "指标映射": [ + "杆塔工程费用_元/10000" + ], "映射规则": "杆塔工程费用_元/10000" - }, - "code": "" + } }, { "指标名称": "接地工程费用", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "33", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['接地工程费用_元/10000']的属性", + "指标映射": [ + "接地工程费用_元/10000" + ], "映射规则": "接地工程费用_元/10000" - }, - "code": "" + } }, { "指标名称": "架线工程费用", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "34", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['架线工程费用_元/10000']的属性", + "指标映射": [ + "架线工程费用_元/10000" + ], "映射规则": "架线工程费用_元/10000" - }, - "code": "" + } }, { "指标名称": "附件工程费用", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['附件工程费用_元/10000']的属性", + "指标映射": [ + "附件工程费用_元/10000" + ], "映射规则": "附件工程费用_元/10000" - }, - "code": "" + } }, { "指标名称": "辅助工程费用", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['(辅助工程费用_元+辅助工程费用_调试_元)', '辅助工程费用_元', '辅助工程费用_调试_元']的属性", + "指标映射": [ + "辅助工程费用_元", + "辅助工程费用_调试_元" + ], "映射规则": "(辅助工程费用_元+辅助工程费用_调试_元)/10000" - }, - "code": "" + } }, { "指标名称": "辅助设施工程", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "37", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['辅助设施工程_元/10000']的属性", + "指标映射": [ + "辅助设施工程_元/10000" + ], "映射规则": "辅助设施工程_元/10000" - }, - "code": "" + } }, { "指标名称": "其他费用合计", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['其他费用合计_元/10000']的属性", + "指标映射": [ + "其他费用合计_元/10000" + ], "映射规则": "其他费用合计_元/10000" - }, - "code": "" + } }, { "指标名称": "建场费合计", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "39", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['建场费合计_元/10000']的属性", + "指标映射": [ + "建场费合计_元/10000" + ], "映射规则": "建场费合计_元/10000" - }, - "code": "" + } }, { "指标名称": "项目建设管理费合计", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "34", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['项目建设管理费合计_元/10000']的属性", + "指标映射": [ + "项目建设管理费合计_元/10000" + ], "映射规则": "项目建设管理费合计_元/10000" - }, - "code": "" + } }, { "指标名称": "其中:工程监理费", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['其中:工程监理费_元/10000']的属性", + "指标映射": [ + "其中:工程监理费_元/10000" + ], "映射规则": "其中:工程监理费_元/10000" - }, - "code": "" + } }, { "指标名称": "项目建设技术服务费合计", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['项目建设技术服务费合计_元/10000']的属性", + "指标映射": [ + "项目建设技术服务费合计_元/10000" + ], "映射规则": "项目建设技术服务费合计_元/10000" - }, - "code": "" + } }, { "指标名称": "其中:项目前期工作费", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "37", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['其中:项目前期工作费_元/10000']的属性", + "指标映射": [ + "其中:项目前期工作费_元/10000" + ], "映射规则": "其中:项目前期工作费_元/10000" - }, - "code": "" + } }, { "指标名称": "其中:勘察费", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['其中:勘察费_元/10000']的属性", + "指标映射": [ + "其中:勘察费_元/10000" + ], "映射规则": "其中:勘察费_元/10000" - }, - "code": "" + } }, { "指标名称": "其中:设计费", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "39", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['其中:设计费_元/10000']的属性", + "指标映射": [ + "其中:设计费_元/10000" + ], "映射规则": "其中:设计费_元/10000" - }, - "code": "" + } }, { "指标名称": "其中:工程建设检测费", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "40", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['其中:工程建设检测费_元/10000']的属性", + "指标映射": [ + "其中:工程建设检测费_元/10000" + ], "映射规则": "其中:工程建设检测费_元/10000" - }, - "code": "" + } }, { "指标名称": "生产准备费", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "29", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['生产准备费_元/10000']的属性", + "指标映射": [ + "生产准备费_元/10000" + ], "映射规则": "生产准备费_元/10000" - }, - "code": "" + } }, { "指标名称": "其中:安全文明施工费", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "30", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['(其中:安全文明施工费_线路_元+其中:安全文明施工费_调试_元)', '其中:安全文明施工费_线路_元', '其中:安全文明施工费_调试_元']的属性", + "指标映射": [ + "其中:安全文明施工费_线路_元", + "其中:安全文明施工费_调试_元" + ], "映射规则": "(其中:安全文明施工费_线路_元+其中:安全文明施工费_调试_元)/10000" - }, - "code": "" + } }, { "指标名称": "基本预备费", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "31", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['基本预备费_元/10000']的属性", + "指标映射": [ + "基本预备费_元/10000" + ], "映射规则": "基本预备费_元/10000" - }, - "code": "" + } }, { "指标名称": "静态投资", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "32", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['静态投资_元/10000']的属性", + "指标映射": [ + "静态投资_元/10000" + ], "映射规则": "静态投资_元/10000" - }, - "code": "" + } }, { "指标名称": "建设期利息", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "33", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['建设期利息_元/10000']的属性", + "指标映射": [ + "建设期利息_元/10000" + ], "映射规则": "建设期利息_元/10000" - }, - "code": "" + } }, { "指标名称": "动态投资", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "34", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['动态投资_元/10000']的属性", + "指标映射": [ + "动态投资_元/10000" + ], "映射规则": "动态投资_元/10000" - }, - "code": "" + } }, { "指标名称": "增值税抵扣税额", + "code": "", + "单位": "万元", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "指标库", "指标描述": { - "指标映射": "从【指标库】中获取['增值税抵扣税额_元/10000']的属性", + "指标映射": [ + "增值税抵扣税额_元/10000" + ], "映射规则": "增值税抵扣税额_元/10000" - }, - "code": "" + } }, { "指标名称": "本体费用合计_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "30", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@工程费用.架空输电线路本体工程.合计费']的属性", + "指标映射": "从【工程费用】中获取【架空输电线路本体工程.合计费】的属性", "映射规则": "@工程费用.架空输电线路本体工程.合计费" - }, - "code": "" + } }, { "指标名称": "本体工程人工费_本体_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "125", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程】下所有子孙项目划分中查找名称属于['人工费']的所有费用", + "指标映射": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程人工费_本体_元】的费用", "映射规则": "人工费" - }, - "code": "" + } }, { "指标名称": "本体工程人工费_调试_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "126", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程】下所有子孙项目划分中查找名称属于['人工费']的所有费用", + "指标映射": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程人工费_调试_元】的费用", "映射规则": "人工费" - }, - "code": "" + } }, { "指标名称": "本体工程机械费_本体_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "127", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程】下所有子孙项目划分中查找名称属于['施工机械使用费']的所有费用", + "指标映射": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程机械费_本体_元】的费用", "映射规则": "施工机械使用费" - }, - "code": "" + } }, { "指标名称": "本体工程机械费_调试_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "128", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程】下所有子孙项目划分中查找名称属于['施工机械使用费']的所有费用", + "指标映射": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程机械费_调试_元】的费用", "映射规则": "施工机械使用费" - }, - "code": "" + } }, { "指标名称": "基础工程费用_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "31", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/基础工程】下所有子孙项目划分中查找名称属于['合计']的所有费用", + "指标映射": "从【架空输电线路本体工程/基础工程】项目划分中获取名称属于【基础工程费用_元】的费用", "映射规则": "合计" - }, - "code": "" + } }, { "指标名称": "杆塔工程费用_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "32", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/杆塔工程】下所有子孙项目划分中查找名称属于['合计']的所有费用", + "指标映射": "从【架空输电线路本体工程/杆塔工程】项目划分中获取名称属于【杆塔工程费用_元】的费用", "映射规则": "合计" - }, - "code": "" + } }, { "指标名称": "接地工程费用_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "33", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/接地工程】下所有子孙项目划分中查找名称属于['合计']的所有费用", + "指标映射": "从【架空输电线路本体工程/接地工程】项目划分中获取名称属于【接地工程费用_元】的费用", "映射规则": "合计" - }, - "code": "" + } }, { "指标名称": "架线工程费用_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "34", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/架线工程】下所有子孙项目划分中查找名称属于['合计']的所有费用", + "指标映射": "从【架空输电线路本体工程/架线工程】项目划分中获取名称属于【架线工程费用_元】的费用", "映射规则": "合计" - }, - "code": "" + } }, { "指标名称": "附件工程费用_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/附件安装工程】下所有子孙项目划分中查找名称属于['合计']的所有费用", + "指标映射": "从【架空输电线路本体工程/附件安装工程】项目划分中获取名称属于【附件工程费用_元】的费用", "映射规则": "合计" - }, - "code": "" + } }, { "指标名称": "辅助工程费用_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/辅助工程】下所有子孙项目划分中查找名称属于['合计']的所有费用", + "指标映射": "从【架空输电线路本体工程/辅助工程】项目划分中获取名称属于【辅助工程费用_元】的费用", "映射规则": "合计" - }, - "code": "" + } }, { "指标名称": "辅助工程费用_调试_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程/辅助工程】下所有子孙项目划分中查找名称属于['合计']的所有费用", + "指标映射": "从【架空输电线路本体工程/辅助工程】项目划分中获取名称属于【辅助工程费用_调试_元】的费用", "映射规则": "合计" - }, - "code": "" + } }, { "指标名称": "辅助设施工程_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "37", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@工程费用.辅助设施工程.合计费']的属性", + "指标映射": "从【工程费用】中获取【辅助设施工程.合计费】的属性", "映射规则": "@工程费用.辅助设施工程.合计费" - }, - "code": "" + } }, { "指标名称": "其他费用合计_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@工程费用.其他费用.合计费']的属性", + "指标映射": "从【工程费用】中获取【其他费用.合计费】的属性", "映射规则": "@工程费用.其他费用.合计费" - }, - "code": "" + } }, { "指标名称": "建场费合计_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "39", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@其他费用.建设场地征用及清理费']的属性", + "指标映射": "从【其他费用】中获取【建设场地征用及清理费】的属性", "映射规则": "@其他费用.建设场地征用及清理费" - }, - "code": "" + } }, { "指标名称": "项目建设管理费合计_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "34", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@其他费用.项目建设管理费']的属性", + "指标映射": "从【其他费用】中获取【项目建设管理费】的属性", "映射规则": "@其他费用.项目建设管理费" - }, - "code": "" + } }, { "指标名称": "其中:工程监理费_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@其他费用.工程监理费']的属性", + "指标映射": "从【其他费用】中获取【工程监理费】的属性", "映射规则": "@其他费用.工程监理费" - }, - "code": "" + } }, { "指标名称": "项目建设技术服务费合计_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "36", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@其他费用.项目建设技术服务费']的属性", + "指标映射": "从【其他费用】中获取【项目建设技术服务费】的属性", "映射规则": "@其他费用.项目建设技术服务费" - }, - "code": "" + } }, { "指标名称": "其中:项目前期工作费_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "37", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@其他费用.项目前期工作费']的属性", + "指标映射": "从【其他费用】中获取【项目前期工作费】的属性", "映射规则": "@其他费用.项目前期工作费" - }, - "code": "" + } }, { "指标名称": "其中:勘察费_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "38", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@其他费用.勘察费']的属性", + "指标映射": "从【其他费用】中获取【勘察费】的属性", "映射规则": "@其他费用.勘察费" - }, - "code": "" + } }, { "指标名称": "其中:设计费_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "39", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@其他费用.设计费']的属性", + "指标映射": "从【其他费用】中获取【设计费】的属性", "映射规则": "@其他费用.设计费" - }, - "code": "" + } }, { "指标名称": "其中:工程建设检测费_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "40", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@其他费用.工程建设检测费']的属性", + "指标映射": "从【其他费用】中获取【工程建设检测费】的属性", "映射规则": "@其他费用.工程建设检测费" - }, - "code": "" + } }, { "指标名称": "生产准备费_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "29", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@其他费用.生产准备费']的属性", + "指标映射": "从【其他费用】中获取【生产准备费】的属性", "映射规则": "@其他费用.生产准备费" - }, - "code": "" + } }, { "指标名称": "其中:安全文明施工费_线路_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "30", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程】下所有子孙项目划分中查找名称属于['安全文明施工费']的所有费用", + "指标映射": "从【架空输电线路本体工程】项目划分中获取名称属于【其中:安全文明施工费_线路_元】的费用", "映射规则": "安全文明施工费" - }, - "code": "" + } }, { "指标名称": "其中:安全文明施工费_调试_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "30", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "项目划分费用", "指标描述": { - "指标映射": "从项目划分【架空输电线路本体工程】下所有子孙项目划分中查找名称属于['安全文明施工费']的所有费用", + "指标映射": "从【架空输电线路本体工程】项目划分中获取名称属于【其中:安全文明施工费_调试_元】的费用", "映射规则": "安全文明施工费" - }, - "code": "" + } }, { "指标名称": "基本预备费_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "31", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@工程费用.基本预备费.合计费']的属性", + "指标映射": "从【工程费用】中获取【基本预备费.合计费】的属性", "映射规则": "@工程费用.基本预备费.合计费" - }, - "code": "" + } }, { "指标名称": "静态投资_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "32", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@工程费用.工程静态投资(一~七项合计).合计费']的属性", + "指标映射": "从【工程费用】中获取【工程静态投资(一~七项合计).合计费】的属性", "映射规则": "@工程费用.工程静态投资(一~七项合计).合计费" - }, - "code": "" + } }, { "指标名称": "建设期利息_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "33", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@工程费用.建设期贷款利息.合计费']的属性", + "指标映射": "从【工程费用】中获取【建设期贷款利息.合计费】的属性", "映射规则": "@工程费用.建设期贷款利息.合计费" - }, - "code": "" + } }, { "指标名称": "动态投资_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "34", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@工程费用.工程动态投资(一~八项合计).合计费']的属性", + "指标映射": "从【工程费用】中获取【工程动态投资(一~八项合计).合计费】的属性", "映射规则": "@工程费用.工程动态投资(一~八项合计).合计费" - }, - "code": "" + } }, { "指标名称": "增值税抵扣税额_元", + "code": "", + "单位": "元", + "单价类型": null, + "序号": "35", + "提取方式": null, + "指标类型": "造价指标", + "数据来源": "工程费用", "指标描述": { - "指标映射": "从【工程费用】中获取['@工程费用.其中:可抵扣增值税额.合计费']的属性", + "指标映射": "从【工程费用】中获取【其中:可抵扣增值税额.合计费】的属性", "映射规则": "@工程费用.其中:可抵扣增值税额.合计费" - }, - "code": "" + } } ] \ No newline at end of file diff --git a/tests/zhibiao.jsonl b/tests/zhibiao.jsonl new file mode 100644 index 0000000..1281a20 --- /dev/null +++ b/tests/zhibiao.jsonl @@ -0,0 +1,46 @@ +{"name": "杆塔总基数", "query": "从【架空输电线路本体工程/基础工程】及其子孙项目划分中查找编码中包含【YX2-1~7】的所有【定额】的【数量】之和", "result": [{"name": "基础工程", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/基础工程", "name": "基础工程"}}, {"name": "定额", "constraints": {"type": "ProjectQuantity", "类型": "定额", "编码": "YX2-1~7"}}]} +{"name": "角钢塔_塔材量", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢】的所有【主材】的【数量】之和", "result": [{"name": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": "包含角钢"}}]} +{"name": "角钢塔_其中:高强钢塔材量", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢、高强】的所有【主材】的【数量】之和", "result": [{"name": "铁塔、钢管杆组立", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立", "name": "铁塔、钢管杆组立"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": "包含角钢、高强"}}]} +{"name": "角钢塔_塔材装材费_元", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢】的所有【主材】的【单价】之和", "result": [{"name": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": "包含角钢"}}]} +{"name": "角钢塔_其中:高强钢塔材费用_元", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【角钢、高强】的所有【主材】的【单价】之和", "result": [{"name": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": "包含角钢、高强"}}]} +{"name": "钢管塔_塔材量", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管塔】的所有【主材】的【数量】之和", "result": [{"name": "铁塔、钢管杆组立", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立", "name": "铁塔、钢管杆组立"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": "包含钢管塔"}}]} +{"name": "钢管塔_钢管价格_元", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管塔】的所有【主材】的【单价】之和", "result": [{"name": "铁塔、钢管杆组立", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立", "name": "铁塔、钢管杆组立"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": "包含钢管塔"}}]} +{"name": "钢管杆_塔材量", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管杆】的所有【主材】的【数量】之和", "result": [{"name": "铁塔、钢管杆组立", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立", "name": "铁塔、钢管杆组立"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": "包含钢管杆"}}]} +{"name": "钢管杆_钢管价格_元", "query": "从【架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立】及其子孙项目划分中查找名称中包含【钢管杆】的所有【主材】的【单价】之和", "result": [{"name": "铁塔、钢管杆组立", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/杆塔工程/杆塔组立/铁塔、钢管杆组立", "name": "铁塔、钢管杆组立"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": "包含钢管杆"}}]} +{"name": "导线及线材_分裂数", "query": "从【架空输电线路本体工程/架线工程】及其子孙项目划分中查找编码中包含【['YX5-67', 'YX5-68', 'YX5-69', 'YX5-78', 'YX5-79', 'YX5-59', 'YX5-60', 'YX5-61', 'YX5-62', 'YX5-63', 'YX5-64', 'YX5-65', 'YX5-66', 'YX5-74', 'YX5-75', 'YX5-76', 'YX5-77', 'YX5-52', 'YX5-53', 'YX5-54', 'YX5-55', 'YX5-56', 'YX5-57', 'YX5-58', 'YX5-70', 'YX5-71', 'YX5-72', 'YX5-73', 'YX5-14', 'YX5-15', 'YX5-16', 'YX5-17', 'YX5-43', 'YX5-44', 'YX5-45', 'YX5-46', 'YX5-47', 'YX5-48', 'YX5-49', 'YX5-50', 'YX5-51', 'YX5-10', 'YX5-11', 'YX5-12', 'YX5-13', 'YX5-38', 'YX5-39', 'YX5-40', 'YX5-41', 'YX5-42', 'YX5-8', 'YX5-9']】的所有【定额】的【参数】之和", "result": [{"name": "架空输电线路本体工程/架线工程", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/架线工程", "name": "架线工程"}}, {"name": "定额", "constraints": {"type": "ProjectQuantity", "类型": "定额", "编码": ["YX5-67", "YX5-68", "YX5-69", "YX5-78", "YX5-79", "YX5-59", "YX5-60", "YX5-61", "YX5-62", "YX5-63", "YX5-64", "YX5-65", "YX5-66", "YX5-74", "YX5-75", "YX5-76", "YX5-77", "YX5-52", "YX5-53", "YX5-54", "YX5-55", "YX5-56", "YX5-57", "YX5-58", "YX5-70", "YX5-71", "YX5-72", "YX5-73", "YX5-14", "YX5-15", "YX5-16", "YX5-17", "YX5-43", "YX5-44", "YX5-45", "YX5-46", "YX5-47", "YX5-48", "YX5-49", "YX5-50", "YX5-51", "YX5-10", "YX5-11", "YX5-12", "YX5-13", "YX5-38", "YX5-39", "YX5-40", "YX5-41", "YX5-42", "YX5-8", "YX5-9"]}}]} +{"name": "导线及线材_其中:节能导线量", "query": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】及其子孙项目划分中查找名称中包含【高导电率】的所有【主材】的【数量】之和", "result": [{"name": "架空输电线路本体工程/架线工程/导地线架设", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/架线工程/导地线架设"}}, {"name": "架空输电线路本体工程/架线工程/导地线跨越架设", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/架线工程/导地线跨越架设"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": "包含高导电率"}}]} +{"name": "导线及线材_导线装材费_元", "query": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】及其子孙项目划分中查找名称中包含【线】的所有【主材】的【单价】之和", "result": [{"name": "架空输电线路本体工程/架线工程/导地线架设", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/架线工程/导地线架设"}}, {"name": "架空输电线路本体工程/架线工程/导地线跨越架设", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/架线工程/导地线跨越架设"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": "线"}}]} +{"name": "导线及线材_其中:节能导线费用_元", "query": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设】及其子孙项目划分中查找名称中包含【高导电率】的所有【主材】的【单价】之和", "result": [{"name": "架空输电线路本体工程/架线工程/导地线架设", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/架线工程/导地线架设"}}, {"name": "架空输电线路本体工程/架线工程/导地线跨越架设", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/架线工程/导地线跨越架设"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": "包含高导电率"}}]} +{"name": "导线及线材_导线类型", "query": "从【架空输电线路本体工程/架线工程/导地线架设@@架空输电线路本体工程/架线工程/导地线跨越架设@@架空输电线路本体工程/架线工程/其他架线工程】及其子孙项目划分中查找名称中包含【['钢芯铝绞线', '铝包钢芯铝绞线', '中强度铝合金绞线', '铝合金芯铝绞线', '铝合金芯高导电率铝绞线', '钢芯高导电率铝绞线', '特高强度钢芯铝合金绞线', '扩径导线', '耐热导线', '碳纤维导线']】的所有【主材】的【参数】之和", "result": [{"name": "架空输电线路本体工程/架线工程/导地线架设", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/架线工程/导地线架设"}}, {"name": "架空输电线路本体工程/架线工程/导地线跨越架设", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/架线工程/导地线跨越架设"}}, {"name": "架空输电线路本体工程/架线工程/其他架线工程", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/架线工程/其他架线工程"}}, {"name": "主材", "constraints": {"type": "ProjectQuantity", "类型": "主材", "name": ["钢芯铝绞线", "铝包钢芯铝绞线", "中强度铝合金绞线", "铝合金芯铝绞线", "铝合金芯高导电率铝绞线", "钢芯高导电率铝绞线", "特高强度钢芯铝合金绞线", "扩径导线", "耐热导线", "碳纤维导线"]}}]} +{"name": "基础钢材量", "query": "从【架空输电线路本体工程/基础工程/基础砌筑】及其子孙项目划分中查找名称中包含【圆钢】的所有【主材】的【数量】之和", "result": [{"name": "基础砌筑", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/基础工程/基础砌筑", "name": "基础砌筑"}}, {"name": "圆钢", "constraints": {"type": "ProjectQuantity", "name": "圆钢", "类型": "主材"}}]} +{"name": "基础钢材价格", "query": "从【架空输电线路本体工程/基础工程/基础砌筑】及其子孙项目划分中查找名称中包含【圆钢】的所有【主材】的【单价】之和", "result": [{"name": "基础砌筑", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/基础工程/基础砌筑", "name": "基础砌筑"}}, {"name": "圆钢", "constraints": {"type": "ProjectQuantity", "name": "圆钢", "类型": "主材"}}]} +{"name": "本体费用合计_元", "query": "从【工程费用】中获取【架空输电线路本体工程.合计费】的属性", "result": [{"name": "架空输电线路本体工程", "constraints": {"type": "Fee", "name": "架空输电线路本体工程", "code": "BTGC"}}, {"name": "合计费", "constraints": {"type": "Fee", "name": "合计费"}}]} +{"name": "本体工程人工费_本体_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程人工费_本体_元】的费用", "result": [{"name": "架空输电线路本体工程", "constraints": {"type": "ProjectDivisionItem", "name": "架空输电线路本体工程"}}, {"name": "本体工程人工费_本体_元", "constraints": {"type": "CostItem", "name": "本体工程人工费_本体_元"}}]} +{"name": "本体工程人工费_调试_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程人工费_调试_元】的费用", "result": [{"name": "架空输电线路本体工程", "constraints": {"type": "ProjectDivisionItem", "name": "架空输电线路本体工程"}}, {"name": "本体工程人工费_调试_元", "constraints": {"type": "CostItem", "name": "本体工程人工费_调试_元"}}]} +{"name": "本体工程机械费_本体_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程机械费_本体_元】的费用", "result": [{"name": "架空输电线路本体工程", "constraints": {"type": "ProjectDivisionItem", "name": "架空输电线路本体工程"}}, {"name": "本体工程机械费_本体_元", "constraints": {"type": "CostItem", "name": "本体工程机械费_本体_元"}}]} +{"name": "本体工程机械费_调试_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【本体工程机械费_调试_元】的费用", "result": [{"name": "架空输电线路本体工程", "constraints": {"type": "ProjectDivisionItem", "name": "架空输电线路本体工程"}}, {"name": "本体工程机械费_调试_元", "constraints": {"type": "CostItem", "name": "本体工程机械费_调试_元"}}]} +{"name": "基础工程费用_元", "query": "从【架空输电线路本体工程/基础工程】项目划分中获取名称属于【基础工程费用_元】的费用", "result": [{"name": "基础工程", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/基础工程", "name": "基础工程"}}, {"name": "基础工程费用_元", "constraints": {"type": "CostItem", "name": "基础工程费用_元"}}]} +{"name": "杆塔工程费用_元", "query": "从【架空输电线路本体工程/杆塔工程】项目划分中获取名称属于【杆塔工程费用_元】的费用", "result": [{"name": "杆塔工程", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/杆塔工程", "name": "杆塔工程"}}, {"name": "杆塔工程费用_元", "constraints": {"type": "CostItem", "name": "杆塔工程费用_元"}}]} +{"name": "接地工程费用_元", "query": "从【架空输电线路本体工程/接地工程】项目划分中获取名称属于【接地工程费用_元】的费用", "result": [{"name": "接地工程", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/接地工程", "name": "接地工程"}}, {"name": "接地工程费用_元", "constraints": {"type": "CostItem", "name": "接地工程费用_元"}}]} +{"name": "架线工程费用_元", "query": "从【架空输电线路本体工程/架线工程】项目划分中获取名称属于【架线工程费用_元】的费用", "result": [{"name": "架线工程", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/架线工程", "name": "架线工程"}}, {"name": "架线工程费用_元", "constraints": {"type": "CostItem", "name": "架线工程费用_元"}}]} +{"name": "附件工程费用_元", "query": "从【架空输电线路本体工程/附件安装工程】项目划分中获取名称属于【附件工程费用_元】的费用", "result": [{"name": "附件安装工程", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/附件安装工程", "name": "附件安装工程"}}, {"name": "附件工程费用_元", "constraints": {"type": "CostItem", "name": "附件工程费用_元"}}]} +{"name": "辅助工程费用_元", "query": "从【架空输电线路本体工程/辅助工程】项目划分中获取名称属于【辅助工程费用_元】的费用", "result": [{"name": "辅助工程", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/辅助工程", "name": "辅助工程"}}, {"name": "辅助工程费用_元", "constraints": {"type": "CostItem", "name": "辅助工程费用_元"}}]} +{"name": "辅助工程费用_调试_元", "query": "从【架空输电线路本体工程/辅助工程】项目划分中获取名称属于【辅助工程费用_调试_元】的费用", "result": [{"name": "辅助工程", "constraints": {"type": "ProjectDivisionItem", "path": "架空输电线路本体工程/辅助工程", "name": "辅助工程"}}, {"name": "辅助工程费用_调试_元", "constraints": {"type": "CostItem", "name": "辅助工程费用_调试_元"}}]} +{"name": "辅助设施工程_元", "query": "从【工程费用】中获取【辅助设施工程.合计费】的属性", "result": [{"name": "辅助设施工程", "constraints": {"type": "ProjectDivisionItem", "name": "辅助设施工程"}}, {"name": "合计费", "constraints": {"type": "CostItem", "name": "合计费"}}]} +{"name": "其他费用合计_元", "query": "从【工程费用】中获取【其他费用.合计费】的属性", "result": [{"name": "工程费用", "constraints": {"type": "FeeScheduleItem", "name": "工程费用表"}}, {"name": "其他费用.合计费", "constraints": {"type": "Fee", "name": "合计费", "code": "其他费用"}}]} +{"name": "建场费合计_元", "query": "从【其他费用】中获取【建设场地征用及清理费】的属性", "result": [{"name": "其他费用", "constraints": {"type": "FeeScheduleItem", "name": "其他费用表"}}, {"name": "建设场地征用及清理费", "constraints": {"type": "Fee", "name": "建设场地征用及清理费"}}]} +{"name": "项目建设管理费合计_元", "query": "从【其他费用】中获取【项目建设管理费】的属性", "result": [{"name": "其他费用", "constraints": {"type": "FeeScheduleItem", "name": "其他费用表"}}, {"name": "项目建设管理费", "constraints": {"type": "Fee", "name": "项目建设管理费"}}]} +{"name": "其中:工程监理费_元", "query": "从【其他费用】中获取【工程监理费】的属性", "result": [{"name": "其他费用表", "constraints": {"type": "FeeScheduleItem", "name": "其他费用表"}}, {"name": "工程监理费", "constraints": {"type": "Fee", "name": "工程监理费"}}]} +{"name": "项目建设技术服务费合计_元", "query": "从【其他费用】中获取【项目建设技术服务费】的属性", "result": [{"name": "其他费用", "constraints": {"type": "FeeScheduleItem", "name": "其他费用表"}}, {"name": "项目建设技术服务费", "constraints": {"type": "Fee", "name": "项目建设技术服务费"}}]} +{"name": "其中:项目前期工作费_元", "query": "从【其他费用】中获取【项目前期工作费】的属性", "result": [{"name": "其他费用表", "constraints": {"type": "FeeScheduleItem", "name": "其他费用表"}}, {"name": "项目前期工作费", "constraints": {"type": "Fee", "name": "项目前期工作费"}}]} +{"name": "其中:勘察费_元", "query": "从【其他费用】中获取【勘察费】的属性", "result": [{"name": "其他费用表", "constraints": {"type": "FeeScheduleItem", "name": "其他费用表"}}, {"name": "勘察费", "constraints": {"type": "Fee", "name": "勘察费"}}]} +{"name": "其中:设计费_元", "query": "从【其他费用】中获取【设计费】的属性", "result": [{"name": "其他费用", "constraints": {"type": "FeeScheduleItem", "name": "其他费用表"}}, {"name": "设计费", "constraints": {"type": "Fee", "name": "设计费"}}]} +{"name": "其中:工程建设检测费_元", "query": "从【其他费用】中获取【工程建设检测费】的属性", "result": [{"name": "其他费用", "constraints": {"type": "FeeScheduleItem", "name": "其他费用表"}}, {"name": "工程建设检测费", "constraints": {"type": "Fee", "name": "工程建设检测费"}}]} +{"name": "生产准备费_元", "query": "从【其他费用】中获取【生产准备费】的属性", "result": [{"name": "其他费用表", "constraints": {"type": "FeeScheduleItem", "name": "其他费用表"}}, {"name": "生产准备费", "constraints": {"type": "Fee", "name": "生产准备费"}}]} +{"name": "其中:安全文明施工费_线路_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【其中:安全文明施工费_线路_元】的费用", "result": [{"name": "架空输电线路本体工程", "constraints": {"type": "ProjectDivisionItem", "name": "架空输电线路本体工程"}}, {"name": "其中:安全文明施工费_线路_元", "constraints": {"type": "CostItem", "name": "其中:安全文明施工费_线路_元"}}]} +{"name": "其中:安全文明施工费_调试_元", "query": "从【架空输电线路本体工程】项目划分中获取名称属于【其中:安全文明施工费_调试_元】的费用", "result": [{"name": "架空输电线路本体工程", "constraints": {"type": "ProjectDivisionItem", "name": "架空输电线路本体工程"}}, {"name": "其中:安全文明施工费_调试_元", "constraints": {"type": "CostItem", "name": "其中:安全文明施工费_调试_元"}}]} +{"name": "基本预备费_元", "query": "从【工程费用】中获取【基本预备费.合计费】的属性", "result": [{"name": "基本预备费.合计费", "constraints": {"type": "Fee", "name": "基本预备费.合计费"}}]} +{"name": "静态投资_元", "query": "从【工程费用】中获取【工程静态投资(一~七项合计).合计费】的属性", "result": [{"name": "工程费用表", "constraints": {"type": "FeeScheduleItem", "name": "工程费用表"}}, {"name": "工程静态投资(一~七项合计).合计费", "constraints": {"type": "Fee", "name": "工程静态投资(一~七项合计).合计费"}}]} +{"name": "建设期利息_元", "query": "从【工程费用】中获取【建设期贷款利息.合计费】的属性", "result": [{"name": "建设期贷款利息", "constraints": {"type": "Fee", "name": "建设期贷款利息", "code": "DKLX"}}, {"name": "合计费", "constraints": {"type": "Fee", "name": "合计费"}}]} +{"name": "动态投资_元", "query": "从【工程费用】中获取【工程动态投资(一~八项合计).合计费】的属性", "result": [{"name": "工程费用", "constraints": {"type": "FeeScheduleItem", "name": "工程费用表"}}, {"name": "工程动态投资(一~八项合计).合计费", "constraints": {"type": "Fee", "name": "工程动态投资(一~八项合计).合计费"}}]} +{"name": "增值税抵扣税额_元", "query": "从【工程费用】中获取【其中:可抵扣增值税额.合计费】的属性", "result": [{"name": "工程费用", "constraints": {"type": "FeeScheduleItem", "name": "工程费用表"}}, {"name": "其中:可抵扣增值税额.合计费", "constraints": {"type": "Fee", "name": "其中:可抵扣增值税额.合计费"}}]} diff --git a/Ontology_Layer.txt b/tools/Ontology_Layer.txt similarity index 95% rename from Ontology_Layer.txt rename to tools/Ontology_Layer.txt index 5c1cf6a..e2b3ddb 100644 --- a/Ontology_Layer.txt +++ b/tools/Ontology_Layer.txt @@ -1,361 +1,361 @@ -1.实体类型 -EngineeringData -name: STRING - -ProjectDivisionSet -name: STRING - -ProjectDivisionTree -name: STRING -original_second_level: STRING -original_first_level: STRING - -ProjectDivisionItem -type: STRING -取费表id: STRING -name: STRING -序号: STRING -取费表: STRING -GUID: STRING -专业类型: STRING -费率: STRING -资源库名称: STRING -代码: STRING -notCheck: STRING -颜色标记: STRING -编码: STRING -最小资源库编码: STRING -原合价: STRING -备注: STRING - -List -合价不含税: STRING -数量: STRING -type: STRING -资源库名称: STRING -工作内容: STRING -取费表类型: STRING -类型: STRING -取费表名称: STRING -单位: STRING -清单名称: STRING -编码: STRING -计算规则: STRING -清单全码: STRING -GUID: STRING -guid: STRING -单价不含税: STRING -单价: STRING -name: STRING -项目特征: STRING -计算式: STRING -合价: STRING -取费表: STRING - -ProjectQuantity -数量: STRING -资源库名称: STRING -合价不含税: STRING -特征段: STRING -费用类型: STRING -基准价含税: STRING -结算市场价不含税: STRING -投标单价: STRING -单位: STRING -结算市场价含税: STRING -基准价不含税: STRING -颜色标记: STRING -投标数量: STRING -编码: STRING -类型: STRING -规格型号: STRING -关联父级量: STRING -name: STRING -单价不含税: STRING -损耗率: STRING -截面积: STRING -线重: STRING -id: STRING -供货方: STRING -单重: STRING -集中配送: STRING -市场价含税: STRING -制造长度: STRING -单价含税: STRING -市场价不含税: STRING -增值税率: STRING -合价含税: STRING -运杂费率: STRING -设备类型: STRING -计算式: STRING -人工系数: STRING -定额范围: STRING -定额系数: STRING -基价: STRING -机械费: STRING -人工费: STRING -材料系数: STRING -中标计算式: STRING -机械系数: STRING -材料费: STRING -投标合价: STRING -所属定额库: STRING -批注: STRING -标记: STRING -定额调整系数: STRING -监造物料: STRING -备注: STRING - -Quota -特征段: STRING -人工系数: STRING -数量: STRING -定额范围: STRING -定额系数: STRING -合价不含税: STRING -基价: STRING -机械费: STRING -资源库名称: STRING -人工费: STRING -材料系数: STRING -投标单价: STRING -中标计算式: STRING -费用类型: STRING -机械系数: STRING -类型: STRING -材料费: STRING -单位: STRING -颜色标记: STRING -投标合价: STRING -编码: STRING -关联父级量: STRING -投标数量: STRING -计算式: STRING -id: STRING -name: STRING -单价不含税: STRING -所属定额库: STRING -批注: STRING -标记: STRING -定额调整系数: STRING -颜色标记: STRING -备注: STRING - -MainMaterial -数量: STRING -资源库名称: STRING -合价不含税: STRING -特征段: STRING -费用类型: STRING -基准价含税: STRING -结算市场价不含税: STRING -投标单价: STRING -单位: STRING -结算市场价含税: STRING -基准价不含税: STRING -颜色标记: STRING -投标数量: STRING -编码: STRING -类型: STRING -规格型号: STRING -关联父级量: STRING -name: STRING -单价不含税: STRING -损耗率: STRING -截面积: STRING -线重: STRING -id: STRING -供货方: STRING -单重: STRING -集中配送: STRING -市场价含税: STRING -制造长度: STRING -单价含税: STRING -市场价不含税: STRING -增值税率: STRING -合价含税: STRING - -Equipment -特征段: STRING -单价含税: STRING -单位: STRING -资源库名称: STRING -合价不含税: STRING -类型: STRING -投标数量: STRING -投标单价: STRING -关联父级量: STRING -颜色标记: STRING -运杂费率: STRING -设备类型: STRING -编码: STRING -供货方: STRING -规格型号: STRING -单价不含税: STRING -id: STRING -name: STRING -数量: STRING -计算式: STRING -合价含税: STRING - -MaterialOrEquipment -type: STRING -预算价不含税: STRING -单位: STRING -结算市场价不含税: STRING -暂估价: STRING -编码: STRING -结算市场价含税: STRING -全口径市场价不含税: STRING -全口径市场价含税: STRING -是否未计价: STRING -unique_id: STRING -供货方: STRING -结算预算价含税: STRING -结算预算价不含税: STRING -市场价含税: STRING -预算价含税: STRING -id: STRING -name: STRING -数量: STRING -市场价不含税: STRING -拆分: STRING -商品砼: STRING -children: STRING - -CostSet -name: STRING -GUID: STRING - -CostItem -name: STRING -cost: STRING -unique_id: STRING -id: STRING - -FeeTableTemplateSet -name: STRING -typeList: STRING - -FeeTableTemplateItem -type: STRING -name: STRING -profession: STRING -outlayID: STRING - -FeeCollection -name: STRING -serialNumber: STRING -base: STRING -code: STRING -rate: STRING -remark: STRING - -FeeScheduleSet -name: STRING - -FeeScheduleItem -name: STRING - -ProjectPropertySet -name: STRING - -ProjectProperty -特殊地区: STRING -调差选择所在地: STRING -工程所在地: STRING -编制时间: STRING -工程版本: STRING -项目划分: STRING -工程阶段: STRING -工程名称: STRING -专业类型: STRING -地区类型: STRING -组价方式: STRING -人工调差系数: STRING -调差选择地区类型: STRING -机械调差系数: STRING -架线类型: STRING -安装机械调差系数: STRING -清单规范: STRING -市场价唯一: STRING -材料调差系数: STRING -甲供材料计入综合单价: STRING -人工按系数调差: STRING -最高投标限价(万元): STRING -工程总投资: STRING -是否按单位控制工程量精度: STRING -安装人工调差系数: STRING -不同土质定额归属不同清单: STRING -住房公积金缴费费率: STRING -是否是合并工程: STRING -招标人: STRING -相同清单合并: STRING -执行规范: STRING -安装材料调差系数: STRING -拆除调差系数年份: STRING -调差系数年份: STRING -工程税率: STRING -甲供材料计入本体: STRING -软件名称: STRING -电压等级: STRING -预算类型: STRING -本期台数: STRING -建筑人工调差系数: STRING -单台容量: STRING -建筑拆除人工调差系数: STRING -配置选项: STRING -施工企业配合调试费费率: STRING -安装其他设备运杂费率: STRING -安装材机调差系数: STRING -工程性质: STRING -表头设置: STRING -工程静态投资(万元): STRING -安装主要设备运杂费率: STRING -编制依据: STRING -工程动态投资(万元): STRING -基本预备费费率: STRING -阶段类型: STRING -BCL版本: STRING -社会保险费缴费费率: STRING - - -2. 实体间的关系 -(:EngineeringData)-[:HAS_CHILD]->(:ProjectPropertySet) -(:EngineeringData)-[:HAS_CHILD]->(:FeeScheduleSet) -(:EngineeringData)-[:HAS_CHILD]->(:FeeTableTemplateSet) -(:EngineeringData)-[:HAS_CHILD]->(:ProjectDivisionSet) -(:ProjectDivisionSet)-[:HAS_CHILD]->(:ProjectDivisionSet) -(:ProjectDivisionSet)-[:HAS_CHILD]->(:ProjectDivisionItem) -(:ProjectDivisionItem)-[:HAS_CHILD]->(:List) -(:ProjectDivisionItem)-[:HAS_CHILD]->(:ProjectDivisionItem) -(:ProjectDivisionItem)-[:USE]->(:CostSet) -(:ProjectDivisionItem)-[:HAS_CHILD]->(:ProjectQuantity) -(:ProjectDivisionItem)-[:HAS_CHILD]->(:Quota) -(:ProjectDivisionItem)-[:HAS_CHILD]->(:MainMaterial) -(:ProjectDivisionItem)-[:HAS_CHILD]->(:Equipment) -(:ProjectQuantity)-[:HAS_CHILD]->(:MaterialOrEquipment) -(:FeeTableTemplateSet)-[:HAS_CHILD]->(:FeeTableTemplateSet) -(:FeeTableTemplateSet)-[:HAS_CHILD]->(:FeeTableTemplateItem) -(:FeeTableTemplateItem)-[:HAS_CHILD]->(:FeeCollection) -(:FeeCollection)-[:HAS_CHILD]->(:FeeCollection) -(:FeeScheduleSet)-[:HAS_CHILD]->(:FeeScheduleItem) -(:FeeScheduleItem)-[:HAS_CHILD]->(:Fee) -(:Fee)-[:HAS_CHILD]->(:Fee) -(:ProjectPropertySet)-[:HAS_CHILD]->(:ProjectProperty) -(:List)-[:HAS_CHILD]->(:ProjectQuantity) -(:List)-[:HAS_CHILD]->(:Equipment) -(:List)-[:HAS_CHILD]->(:MainMaterial) -(:List)-[:HAS_CHILD]->(:Quota) -(:List)-[:USE]->(:CostSet) -(:Quota)-[:HAS_CHILD]->(:MaterialOrEquipment) -(:CostSet)-[:HAS_CHILD]->(:CostItem) -(:ProjectDivisionTree)-[:HAS_CHILD]->(:ProjectDivisionItem) -(:ProjectQuantity)-[:HAS_CHILD]->(:ProjectQuantity) -(:ProjectQuantity)-[:HAS_CHILD]->(:MainMaterial) -(:MainMaterial)-[:HAS_CHILD]->(:ProjectQuantity) -(:MainMaterial)-[:HAS_CHILD]->(:MainMaterial) -(:ProjectQuantity)-[:USE]->(:CostSet) -(:ProjectDivisionTree)-[:USE]->(:CostSet) -(:ProjectDivisionSet)-[:HAS_CHILD]->(:ProjectDivisionTree) - +1.实体类型 +EngineeringData +name: STRING + +ProjectDivisionSet +name: STRING + +ProjectDivisionTree +name: STRING +original_second_level: STRING +original_first_level: STRING + +ProjectDivisionItem +type: STRING +取费表id: STRING +name: STRING +序号: STRING +取费表: STRING +GUID: STRING +专业类型: STRING +费率: STRING +资源库名称: STRING +代码: STRING +notCheck: STRING +颜色标记: STRING +编码: STRING +最小资源库编码: STRING +原合价: STRING +备注: STRING + +List +合价不含税: STRING +数量: STRING +type: STRING +资源库名称: STRING +工作内容: STRING +取费表类型: STRING +类型: STRING +取费表名称: STRING +单位: STRING +清单名称: STRING +编码: STRING +计算规则: STRING +清单全码: STRING +GUID: STRING +guid: STRING +单价不含税: STRING +单价: STRING +name: STRING +项目特征: STRING +计算式: STRING +合价: STRING +取费表: STRING + +ProjectQuantity +数量: STRING +资源库名称: STRING +合价不含税: STRING +特征段: STRING +费用类型: STRING +基准价含税: STRING +结算市场价不含税: STRING +投标单价: STRING +单位: STRING +结算市场价含税: STRING +基准价不含税: STRING +颜色标记: STRING +投标数量: STRING +编码: STRING +类型: STRING +规格型号: STRING +关联父级量: STRING +name: STRING +单价不含税: STRING +损耗率: STRING +截面积: STRING +线重: STRING +id: STRING +供货方: STRING +单重: STRING +集中配送: STRING +市场价含税: STRING +制造长度: STRING +单价含税: STRING +市场价不含税: STRING +增值税率: STRING +合价含税: STRING +运杂费率: STRING +设备类型: STRING +计算式: STRING +人工系数: STRING +定额范围: STRING +定额系数: STRING +基价: STRING +机械费: STRING +人工费: STRING +材料系数: STRING +中标计算式: STRING +机械系数: STRING +材料费: STRING +投标合价: STRING +所属定额库: STRING +批注: STRING +标记: STRING +定额调整系数: STRING +监造物料: STRING +备注: STRING + +Quota +特征段: STRING +人工系数: STRING +数量: STRING +定额范围: STRING +定额系数: STRING +合价不含税: STRING +基价: STRING +机械费: STRING +资源库名称: STRING +人工费: STRING +材料系数: STRING +投标单价: STRING +中标计算式: STRING +费用类型: STRING +机械系数: STRING +类型: STRING +材料费: STRING +单位: STRING +颜色标记: STRING +投标合价: STRING +编码: STRING +关联父级量: STRING +投标数量: STRING +计算式: STRING +id: STRING +name: STRING +单价不含税: STRING +所属定额库: STRING +批注: STRING +标记: STRING +定额调整系数: STRING +颜色标记: STRING +备注: STRING + +MainMaterial +数量: STRING +资源库名称: STRING +合价不含税: STRING +特征段: STRING +费用类型: STRING +基准价含税: STRING +结算市场价不含税: STRING +投标单价: STRING +单位: STRING +结算市场价含税: STRING +基准价不含税: STRING +颜色标记: STRING +投标数量: STRING +编码: STRING +类型: STRING +规格型号: STRING +关联父级量: STRING +name: STRING +单价不含税: STRING +损耗率: STRING +截面积: STRING +线重: STRING +id: STRING +供货方: STRING +单重: STRING +集中配送: STRING +市场价含税: STRING +制造长度: STRING +单价含税: STRING +市场价不含税: STRING +增值税率: STRING +合价含税: STRING + +Equipment +特征段: STRING +单价含税: STRING +单位: STRING +资源库名称: STRING +合价不含税: STRING +类型: STRING +投标数量: STRING +投标单价: STRING +关联父级量: STRING +颜色标记: STRING +运杂费率: STRING +设备类型: STRING +编码: STRING +供货方: STRING +规格型号: STRING +单价不含税: STRING +id: STRING +name: STRING +数量: STRING +计算式: STRING +合价含税: STRING + +MaterialOrEquipment +type: STRING +预算价不含税: STRING +单位: STRING +结算市场价不含税: STRING +暂估价: STRING +编码: STRING +结算市场价含税: STRING +全口径市场价不含税: STRING +全口径市场价含税: STRING +是否未计价: STRING +unique_id: STRING +供货方: STRING +结算预算价含税: STRING +结算预算价不含税: STRING +市场价含税: STRING +预算价含税: STRING +id: STRING +name: STRING +数量: STRING +市场价不含税: STRING +拆分: STRING +商品砼: STRING +children: STRING + +CostSet +name: STRING +GUID: STRING + +CostItem +name: STRING +cost: STRING +unique_id: STRING +id: STRING + +FeeTableTemplateSet +name: STRING +typeList: STRING + +FeeTableTemplateItem +type: STRING +name: STRING +profession: STRING +outlayID: STRING + +FeeCollection +name: STRING +serialNumber: STRING +base: STRING +code: STRING +rate: STRING +remark: STRING + +FeeScheduleSet +name: STRING + +FeeScheduleItem +name: STRING + +ProjectPropertySet +name: STRING + +ProjectProperty +特殊地区: STRING +调差选择所在地: STRING +工程所在地: STRING +编制时间: STRING +工程版本: STRING +项目划分: STRING +工程阶段: STRING +工程名称: STRING +专业类型: STRING +地区类型: STRING +组价方式: STRING +人工调差系数: STRING +调差选择地区类型: STRING +机械调差系数: STRING +架线类型: STRING +安装机械调差系数: STRING +清单规范: STRING +市场价唯一: STRING +材料调差系数: STRING +甲供材料计入综合单价: STRING +人工按系数调差: STRING +最高投标限价(万元): STRING +工程总投资: STRING +是否按单位控制工程量精度: STRING +安装人工调差系数: STRING +不同土质定额归属不同清单: STRING +住房公积金缴费费率: STRING +是否是合并工程: STRING +招标人: STRING +相同清单合并: STRING +执行规范: STRING +安装材料调差系数: STRING +拆除调差系数年份: STRING +调差系数年份: STRING +工程税率: STRING +甲供材料计入本体: STRING +软件名称: STRING +电压等级: STRING +预算类型: STRING +本期台数: STRING +建筑人工调差系数: STRING +单台容量: STRING +建筑拆除人工调差系数: STRING +配置选项: STRING +施工企业配合调试费费率: STRING +安装其他设备运杂费率: STRING +安装材机调差系数: STRING +工程性质: STRING +表头设置: STRING +工程静态投资(万元): STRING +安装主要设备运杂费率: STRING +编制依据: STRING +工程动态投资(万元): STRING +基本预备费费率: STRING +阶段类型: STRING +BCL版本: STRING +社会保险费缴费费率: STRING + + +2. 实体间的关系 +(:EngineeringData)-[:HAS_CHILD]->(:ProjectPropertySet) +(:EngineeringData)-[:HAS_CHILD]->(:FeeScheduleSet) +(:EngineeringData)-[:HAS_CHILD]->(:FeeTableTemplateSet) +(:EngineeringData)-[:HAS_CHILD]->(:ProjectDivisionSet) +(:ProjectDivisionSet)-[:HAS_CHILD]->(:ProjectDivisionSet) +(:ProjectDivisionSet)-[:HAS_CHILD]->(:ProjectDivisionItem) +(:ProjectDivisionItem)-[:HAS_CHILD]->(:List) +(:ProjectDivisionItem)-[:HAS_CHILD]->(:ProjectDivisionItem) +(:ProjectDivisionItem)-[:USE]->(:CostSet) +(:ProjectDivisionItem)-[:HAS_CHILD]->(:ProjectQuantity) +(:ProjectDivisionItem)-[:HAS_CHILD]->(:Quota) +(:ProjectDivisionItem)-[:HAS_CHILD]->(:MainMaterial) +(:ProjectDivisionItem)-[:HAS_CHILD]->(:Equipment) +(:ProjectQuantity)-[:HAS_CHILD]->(:MaterialOrEquipment) +(:FeeTableTemplateSet)-[:HAS_CHILD]->(:FeeTableTemplateSet) +(:FeeTableTemplateSet)-[:HAS_CHILD]->(:FeeTableTemplateItem) +(:FeeTableTemplateItem)-[:HAS_CHILD]->(:FeeCollection) +(:FeeCollection)-[:HAS_CHILD]->(:FeeCollection) +(:FeeScheduleSet)-[:HAS_CHILD]->(:FeeScheduleItem) +(:FeeScheduleItem)-[:HAS_CHILD]->(:Fee) +(:Fee)-[:HAS_CHILD]->(:Fee) +(:ProjectPropertySet)-[:HAS_CHILD]->(:ProjectProperty) +(:List)-[:HAS_CHILD]->(:ProjectQuantity) +(:List)-[:HAS_CHILD]->(:Equipment) +(:List)-[:HAS_CHILD]->(:MainMaterial) +(:List)-[:HAS_CHILD]->(:Quota) +(:List)-[:USE]->(:CostSet) +(:Quota)-[:HAS_CHILD]->(:MaterialOrEquipment) +(:CostSet)-[:HAS_CHILD]->(:CostItem) +(:ProjectDivisionTree)-[:HAS_CHILD]->(:ProjectDivisionItem) +(:ProjectQuantity)-[:HAS_CHILD]->(:ProjectQuantity) +(:ProjectQuantity)-[:HAS_CHILD]->(:MainMaterial) +(:MainMaterial)-[:HAS_CHILD]->(:ProjectQuantity) +(:MainMaterial)-[:HAS_CHILD]->(:MainMaterial) +(:ProjectQuantity)-[:USE]->(:CostSet) +(:ProjectDivisionTree)-[:USE]->(:CostSet) +(:ProjectDivisionSet)-[:HAS_CHILD]->(:ProjectDivisionTree) + diff --git a/build_kg_ontolo.py b/tools/build_kg_ontolo.py similarity index 97% rename from build_kg_ontolo.py rename to tools/build_kg_ontolo.py index edc623a..b333270 100644 --- a/build_kg_ontolo.py +++ b/tools/build_kg_ontolo.py @@ -1,1292 +1,1292 @@ -from py2neo import Graph, Node, Relationship, NodeMatcher -import json -import os -import logging -import re - -# 设置日志 -logging.basicConfig(level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s") -logger = logging.getLogger(__name__) - -# 连接到Neo4j数据库 -uri = "bolt://172.20.0.145:7687" -user = "neo4j" -password = "password" - -try: - graph = Graph(uri, auth=(user, password)) - logger.info("成功连接到Neo4j数据库") -except Exception as e: - logger.error(f"连接Neo4j数据库失败: {e}") - exit(1) - -# 清空数据库 -try: - graph.run("MATCH (n) DETACH DELETE n") - logger.info("已清空数据库") -except Exception as e: - logger.error(f"清空数据库失败: {e}") - -# 删除所有约束 -try: - # 获取所有约束 - constraints = graph.run("SHOW CONSTRAINTS").data() - for constraint in constraints: - constraint_name = constraint.get("name") - if constraint_name: - graph.run(f"DROP CONSTRAINT {constraint_name}") - logger.info(f"已删除约束: {constraint_name}") -except Exception as e: - logger.warning(f"删除约束失败: {e}") - - -# 解析本体层文件,获取实体类型、属性和关系定义 -def parse_ontology_file(file_path="Ontology_Layer.txt"): - """ - 解析本体层文件,获取实体类型、属性和关系定义 - - Args: - file_path: 本体层文件路径 - - Returns: - entity_types: 实体类型和属性的字典 {实体类型名称: {属性名称: 属性类型}} - entity_relationships: 实体间关系的列表 [(源实体类型, 关系类型, 目标实体类型)] - """ - try: - with open(file_path, "r", encoding="utf-8") as f: - content = f.read() - - # 分割实体类型和关系部分 - parts = content.split("2. 实体间的关系") - - if len(parts) != 2: - logger.error("本体层文件格式错误,无法找到实体类型和关系部分") - return {}, [] - - entity_types_content = parts[0] - relationships_content = parts[1] - - # 解析实体类型和属性 - entity_types = {} - current_entity = None - - # 移除 "1.实体类型" 标题行 - entity_types_content = entity_types_content.replace("1.实体类型", "").strip() - - # 按行分割 - lines = entity_types_content.strip().split("\n") - - for line in lines: - line = line.strip() - if not line: - continue - - # 如果行不包含冒号,视为实体类型 - if ":" not in line: - current_entity = line - entity_types[current_entity] = {} - # 否则视为属性定义 - else: - if current_entity is None: - continue - - parts = line.split(":", 1) - if len(parts) == 2: - attr_name = parts[0].strip() - attr_type = parts[1].strip() - entity_types[current_entity][attr_name] = attr_type - - # 解析实体间的关系 - entity_relationships = [] - - # 匹配关系定义行: (:EntityType)-[:RELATIONSHIP]->(:EntityType) - relationship_pattern = r"\(:(\w+)\)-\[:(\w+)\]->\(:(\w+)\)" - - for line in relationships_content.strip().split("\n"): - line = line.strip() - if not line: - continue - - match = re.match(relationship_pattern, line) - if match: - source_entity, relationship_type, target_entity = match.groups() - entity_relationships.append((source_entity, relationship_type, target_entity)) - - logger.info(f"从本体层文件中解析出 {len(entity_types)} 个实体类型和 {len(entity_relationships)} 个关系定义") - return entity_types, entity_relationships - - except Exception as e: - logger.error(f"解析本体层文件失败: {e}") - return {}, [] - - -# 创建约束和索引以提高性能 - 现在不创建任何约束 -def create_constraints_and_indexes(): - # 不创建任何约束 - logger.info("跳过创建约束") - pass - - -# 获取实体之间的关系类型 -def get_relationship_type(source_entity_type, target_entity_type, entity_relationships): - """ - 根据源实体类型和目标实体类型获取关系类型 - - Args: - source_entity_type: 源实体类型 - target_entity_type: 目标实体类型 - entity_relationships: 实体间关系的列表 - - Returns: - relationship_type: 关系类型,如果没找到则返回None - """ - for source, rel_type, target in entity_relationships: - if source == source_entity_type and target == target_entity_type: - return rel_type - - # 如果没有找到匹配的关系,返回None - logger.warning(f"未找到从 {source_entity_type} 到 {target_entity_type} 的关系定义,不创建关系") - return None - - -# 创建根节点 -def create_root_node(): - root = Node("EngineeringData", name="工程") - graph.create(root) - logger.info("创建根节点: 工程") - return root - - -# 处理ProjectDivisionSet -def process_project_division_set(data, root_node, entity_relationships): - # 根据您提供的JSON结构,正确访问projectDivision数据 - if "projectData" in data and "projectDivision" in data["projectData"]: - project_division = data["projectData"]["projectDivision"] - elif "projectDivision" in data: - project_division = data["projectDivision"] - else: - logger.warning("JSON中未找到projectDivision数据") - logger.info(f"JSON顶层键: {list(data.keys())}") - return - - logger.info(f"开始处理projectDivision,包含 {len(project_division)} 个顶级项目") - - # 创建新的ProjectDivisionSet节点 - 项目划分集 - division_set = Node("ProjectDivisionSet", name="项目划分集") - graph.create(division_set) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type("EngineeringData", "ProjectDivisionSet", entity_relationships) - if relationship_type: # 只有当关系类型不为None时才创建关系 - graph.create(Relationship(root_node, relationship_type, division_set)) - logger.info(f"创建关系: {root_node['name']} {relationship_type} {division_set['name']}") - else: - logger.info(f"不创建关系: {root_node['name']} 到 {division_set['name']}") - - # 处理ProjectDivisionTree - for first_level_name, first_level_content in project_division.items(): - # 处理第一层下的内容,直接创建合并后的ProjectDivisionTree节点 - if isinstance(first_level_content, dict): - # 处理一级名称,去掉"工程"字样 - processed_first_level = first_level_name.replace("工程", "") - - for second_level_name, second_level_content in first_level_content.items(): - # 确定最终节点名称 - if second_level_name == processed_first_level: - # 如果二级名称与处理后的一级名称相同,直接使用二级名称 - final_name = second_level_name - else: - # 否则组合二级名称和处理后的一级名称 - final_name = f"{second_level_name}{processed_first_level}" - - # 创建ProjectDivisionTree节点 - division_tree = Node("ProjectDivisionTree", name=final_name) - - # 保存原始名称作为属性 - division_tree["original_first_level"] = first_level_name - division_tree["original_second_level"] = second_level_name - - # 如果有GUID,添加到节点属性 - guid = None - if isinstance(first_level_content, dict) and "GUID" in first_level_content: - division_tree["first_level_GUID"] = first_level_content["GUID"] - guid = first_level_content["GUID"] - - graph.create(division_tree) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type( - "ProjectDivisionSet", "ProjectDivisionTree", entity_relationships - ) - if relationship_type: - graph.create(Relationship(division_set, relationship_type, division_tree)) - logger.info(f"创建关系: {final_name} {relationship_type} {division_tree['name']}") - else: - logger.info(f"不创建关系: {division_set['name']} 到 {division_tree['name']}") - - # 如果有GUID,尝试建立与CostSet的关系 - if guid: - # 查找对应的CostSet节点 - cost_set_query = f""" - MATCH (c:CostSet) - WHERE c.GUID = '{guid}' - RETURN c - """ - cost_set_nodes = list(graph.run(cost_set_query)) - if cost_set_nodes: - cost_set_node = cost_set_nodes[0]["c"] - relationship_type = get_relationship_type( - "ProjectDivisionTree", "CostSet", entity_relationships - ) - if relationship_type: # 只有当关系类型不为None时才创建关系 - graph.create(Relationship(division_tree, relationship_type, cost_set_node)) - logger.info(f"创建关系: {final_name} {relationship_type} CostSet (GUID: {guid})") - else: - logger.info(f"不创建关系: {final_name} 到 CostSet (GUID: {guid})") - - # 处理第二层下的ProjectDivisionItem列表 - if isinstance(second_level_content, list): - logger.info(f"ProjectDivisionTree {final_name} 包含 {len(second_level_content)} 个列表项") - for item in second_level_content: - process_project_division_item(item, division_tree, entity_relationships) - else: - logger.warning(f"ProjectDivisionTree {final_name} 的内容类型未知: {type(second_level_content)}") - else: - logger.warning(f"第一层 {first_level_name} 的内容类型未知: {type(first_level_content)}") - - -# 处理ProjectDivisionItem -def process_project_division_item(item, parent_node, entity_relationships): - # 提取必要属性 - guid = item.get("GUID", "") - name = item.get("项目名称", "") - - if not guid and not name: - logger.warning("ProjectDivisionItem缺少GUID和项目名称") - return - - # 创建ProjectDivisionItem节点 - item_node = Node("ProjectDivisionItem", GUID=guid, name=name) - - # 添加path属性,表示从ProjectDivisionItem到ProjectDivisionTree的路径,不包含节点类型 - if isinstance(parent_node, Node) and "ProjectDivisionTree" in parent_node.labels: - # 如果父节点是ProjectDivisionTree,使用"父节点名称/当前节点名称"作为路径 - item_node["path"] = f"{parent_node['name']}/{name}" - logger.info(f"为ProjectDivisionItem {name} 设置path: {item_node['path']}") - else: - # 如果父节点是ProjectDivisionItem,使用"父节点path/当前节点名称"作为路径 - parent_path = parent_node.get("path", "") - if parent_path: - item_node["path"] = f"{parent_path}/{name}" - else: - # 如果父节点没有path属性(不应该发生,但为了健壮性) - item_node["path"] = name - logger.info(f"为ProjectDivisionItem {name} 设置path: {item_node['path']}") - - # 添加其他属性 - for key, value in item.items(): - if key not in ["GUID", "项目名称", "children"] and value is not None: - # 检查是否为资源库列表 - if key == "资源库列表" and isinstance(value, list): - # 将资源库列表转换为分号分隔的字符串 - resource_names = [] - for resource in value: - if isinstance(resource, dict) and "资源库名称" in resource: - resource_names.append(resource["资源库名称"]) - item_node["资源库名称"] = ";".join(resource_names) - logger.info(f"将资源库列表转换为字符串: {item_node['资源库名称']}") - # 检查值是否为基本类型 - elif isinstance(value, (str, int, float, bool)): - item_node[key] = value - # 如果是列表,尝试转换为分号分隔的字符串 - elif isinstance(value, list): - try: - if all(isinstance(x, (str, int, float, bool)) for x in value): - item_node[key] = ";".join(str(x) for x in value) - else: - # 对于包含复杂对象的列表,尝试提取关键信息 - extracted_values = [] - for item_in_list in value: - if isinstance(item_in_list, dict): - # 尝试提取字典中的名称或标识符 - for name_key in ["名称", "name", "标识", "id", "ID"]: - if name_key in item_in_list: - extracted_values.append(str(item_in_list[name_key])) - break - else: - # 如果没有找到名称键,使用第一个键值对 - if item_in_list: - first_key = next(iter(item_in_list)) - extracted_values.append(f"{first_key}:{item_in_list[first_key]}") - else: - extracted_values.append(str(item_in_list)) - item_node[key] = ";".join(extracted_values) - except Exception as e: - logger.warning(f"无法将列表属性 {key} 转换为字符串: {e}") - # 如果是字典,尝试转换为字符串 - elif isinstance(value, dict): - try: - # 提取字典中的关键信息 - extracted_info = [] - for dict_key, dict_value in value.items(): - if isinstance(dict_value, (str, int, float, bool)): - extracted_info.append(f"{dict_key}:{dict_value}") - item_node[key] = ";".join(extracted_info) - except Exception as e: - logger.warning(f"无法将字典属性 {key} 转换为字符串: {e}") - - graph.create(item_node) - logger.info(f"创建ProjectDivisionItem节点: {name} (GUID: {guid})") - - # 创建与父节点的关系 - if isinstance(parent_node, Node) and "ProjectDivisionTree" in parent_node.labels: - # 从本体层获取关系类型 - relationship_type = get_relationship_type("ProjectDivisionTree", "ProjectDivisionItem", entity_relationships) - if relationship_type: - graph.create(Relationship(parent_node, relationship_type, item_node)) - logger.info(f"创建关系: {parent_node['name']} {relationship_type} {item_node['name']}") - else: - logger.info(f"不创建关系: {parent_node['name']} 到 {item_node['name']}") - else: - # 从本体层获取关系类型 - relationship_type = get_relationship_type("ProjectDivisionItem", "ProjectDivisionItem", entity_relationships) - if relationship_type: - graph.create(Relationship(parent_node, relationship_type, item_node)) - logger.info(f"创建关系: {parent_node['name']} {relationship_type} {item_node['name']}") - else: - logger.info(f"不创建关系: {parent_node['name']} 到 {item_node['name']}") - - # # 如果有GUID,尝试建立与CostSet的关系 - # if guid: - # # 查找对应的CostSet节点 - # cost_set_query = f""" - # MATCH (c:CostSet) - # WHERE c.GUID = '{guid}' - # RETURN c - # """ - # cost_set_nodes = list(graph.run(cost_set_query)) - # if cost_set_nodes: - # cost_set_node = cost_set_nodes[0]["c"] - # relationship_type = get_relationship_type("ProjectDivisionTree", "CostSet", entity_relationships) - # if relationship_type: # 只有当关系类型不为None时才创建关系 - # graph.create(Relationship(item_node, relationship_type, cost_set_node)) - # logger.info(f"创建关系: {item_node['name']} {relationship_type} CostSet (GUID: {guid})") - # else: - # logger.info(f"不创建关系: {item_node['name']} 到 CostSet (GUID: {guid})") - - # 处理子项 - if "children" in item and item["children"]: - children = item["children"] - logger.info(f"ProjectDivisionItem {name} 有 {len(children)} 个子项") - - for child in children: - child_type = child.get("type", child.get("类型", "")) - - if child_type == "项目划分": - # 递归处理子ProjectDivisionItem - process_project_division_item(child, item_node, entity_relationships) - elif child_type == "8" or child_type == "清单": - # 处理List类型节点 - process_list_item(child, item_node, entity_relationships) - else: - # 处理ProjectQuantity及其子类 - process_project_quantity(child, item_node, entity_relationships) - - -# 处理List及其子类 -def process_list_item(list_item, parent_node, entity_relationships): - """处理清单类型的节点""" - # 提取必要属性 - guid = list_item.get("GUID", "") - list_name = list_item.get("清单名称") - list_type = list_item.get("类型", "") - - # 创建List节点 - list_node = Node("List", guid=guid, name=list_name, type=list_type) - - # 添加path属性,包含节点类型 - parent_path = parent_node.get("path", "") - if parent_path: - list_node["path"] = f"{parent_path}/{list_name}(清单)" - else: - # 如果父节点没有path属性(不应该发生,但为了健壮性) - parent_name = parent_node.get("name", "") - list_node["path"] = f"{parent_name}/{list_name}(清单)" - logger.info(f"为List节点 {list_name} 设置path: {list_node['path']}") - - # 添加其他属性 - for key, value in list_item.items(): - if key not in ["清单名称", "类型", "guid", "children"] and value is not None: - # 检查是否为资源库列表 - if key == "资源库列表" and isinstance(value, list): - # 将资源库列表转换为分号分隔的字符串 - resource_names = [] - for resource in value: - if isinstance(resource, dict) and "资源库名称" in resource: - resource_names.append(resource["资源库名称"]) - list_node["资源库名称"] = ";".join(resource_names) - logger.info(f"将资源库列表转换为字符串: {list_node['资源库名称']}") - # 检查值是否为基本类型 - elif isinstance(value, (str, int, float, bool)): - list_node[key] = value - # 如果是列表,尝试转换为分号分隔的字符串 - elif isinstance(value, list): - try: - if all(isinstance(x, (str, int, float, bool)) for x in value): - list_node[key] = ";".join(str(x) for x in value) - else: - # 对于包含复杂对象的列表,尝试提取关键信息 - extracted_values = [] - for item_in_list in value: - if isinstance(item_in_list, dict): - # 尝试提取字典中的名称或标识符 - for name_key in ["名称", "name", "标识", "id", "ID"]: - if name_key in item_in_list: - extracted_values.append(str(item_in_list[name_key])) - break - else: - # 如果没有找到名称键,使用第一个键值对 - if item_in_list: - first_key = next(iter(item_in_list)) - extracted_values.append(f"{first_key}:{item_in_list[first_key]}") - else: - extracted_values.append(str(item_in_list)) - list_node[key] = ";".join(extracted_values) - except Exception as e: - logger.warning(f"无法将列表属性 {key} 转换为字符串: {e}") - # 如果是字典,尝试转换为字符串 - elif isinstance(value, dict): - try: - # 提取字典中的关键信息 - extracted_info = [] - for dict_key, dict_value in value.items(): - if isinstance(dict_value, (str, int, float, bool)): - extracted_info.append(f"{dict_key}:{dict_value}") - list_node[key] = ";".join(extracted_info) - except Exception as e: - logger.warning(f"无法将字典属性 {key} 转换为字符串: {e}") - - graph.create(list_node) - logger.info(f"创建List节点: {list_name} (类型: {list_type})") - - # 创建与父节点的关系 - # 从本体层获取关系类型 - relationship_type = get_relationship_type(list(parent_node.labels)[0], "List", entity_relationships) - if relationship_type: - graph.create(Relationship(parent_node, relationship_type, list_node)) - logger.info(f"创建关系: {parent_node['name']} {relationship_type} {list_name}") - else: - logger.info(f"不创建关系: {parent_node['name']} 到 {list_name}") - - # 如果有GUID,尝试建立与CostSet的关系 - if guid: - # 查找对应的CostSet节点 - cost_set_query = f""" - MATCH (c:CostSet) - WHERE c.GUID = '{guid}' - RETURN c - """ - cost_set_nodes = list(graph.run(cost_set_query)) - if cost_set_nodes: - cost_set_node = cost_set_nodes[0]["c"] - relationship_type = get_relationship_type("List", "CostSet", entity_relationships) - if relationship_type: - graph.create(Relationship(list_node, relationship_type, cost_set_node)) - logger.info(f"创建关系: {list_name} {relationship_type} CostSet (GUID: {guid})") - else: - logger.info(f"不创建关系: {list_name} 到 CostSet (GUID: {guid})") - - # 处理子项 - if "children" in list_item and list_item["children"]: - children = list_item["children"] - logger.info(f"List {list_name} 有 {len(children)} 个子项") - - for child in children: - # 确定子项类型 - child_type = child.get("type", child.get("类型", "")) - - if child_type == "项目划分": - # 递归处理子ProjectDivisionItem - process_project_division_item(child, list_node, entity_relationships) - elif child_type == "8" or child_type == "清单": - # 递归处理子List - process_list_item(child, list_node, entity_relationships) - else: - # 处理ProjectQuantity及其子类 - process_project_quantity(child, list_node, entity_relationships) - - -# 处理ProjectQuantity及其子类 -def process_project_quantity(quantity, parent_node, entity_relationships): - # 确定具体类型 - quantity_type = quantity.get("类型", "") - labels = ["ProjectQuantity"] - type_name = "ProjectQuantity" - - # 支持数字和文本类型 - if quantity_type == "0" or quantity_type == "定额": - labels.append("Quota") - type_name = "定额" - elif quantity_type == "1" or quantity_type == "主材": - labels.append("MainMaterial") - type_name = "主材" - elif quantity_type == "5" or quantity_type == "设备": - labels.append("Equipment") - type_name = "设备" - - # 创建节点 - quantity_id = quantity.get("id", "") - quantity_name = quantity.get("项目名称", quantity.get("名称", "")) - - quantity_node = Node(*labels, id=quantity_id, name=quantity_name) - - # 添加path属性,包含节点类型 - parent_path = parent_node.get("path", "") - if parent_path: - quantity_node["path"] = f"{parent_path}/{quantity_name}({type_name})" - else: - # 如果父节点没有path属性(不应该发生,但为了健壮性) - parent_name = parent_node.get("name", "") - quantity_node["path"] = f"{parent_name}/{quantity_name}({type_name})" - logger.info(f"为ProjectQuantity节点 {quantity_name} 设置path: {quantity_node['path']}") - - # 添加其他属性 - for key, value in quantity.items(): - if key not in ["id", "名称", "项目名称", "材机列表", "children"] and value is not None: - # 检查是否为资源库列表 - if key == "资源库列表" and isinstance(value, list): - # 将资源库列表转换为分号分隔的字符串 - resource_names = [] - for resource in value: - if isinstance(resource, dict) and "资源库名称" in resource: - resource_names.append(resource["资源库名称"]) - quantity_node["资源库名称"] = ";".join(resource_names) - logger.info(f"将资源库列表转换为字符串: {quantity_node['资源库名称']}") - # 检查值是否为基本类型 - elif isinstance(value, (str, int, float, bool)): - quantity_node[key] = value - # 如果是列表,尝试转换为分号分隔的字符串 - elif isinstance(value, list): - try: - if all(isinstance(x, (str, int, float, bool)) for x in value): - quantity_node[key] = ";".join(str(x) for x in value) - else: - # 对于包含复杂对象的列表,尝试提取关键信息 - extracted_values = [] - for item_in_list in value: - if isinstance(item_in_list, dict): - # 尝试提取字典中的名称或标识符 - for name_key in ["名称", "name", "标识", "id", "ID"]: - if name_key in item_in_list: - extracted_values.append(str(item_in_list[name_key])) - break - else: - # 如果没有找到名称键,使用第一个键值对 - if item_in_list: - first_key = next(iter(item_in_list)) - extracted_values.append(f"{first_key}:{item_in_list[first_key]}") - else: - extracted_values.append(str(item_in_list)) - quantity_node[key] = ";".join(extracted_values) - except Exception as e: - logger.warning(f"无法将列表属性 {key} 转换为字符串: {e}") - # 如果是字典,尝试转换为字符串 - elif isinstance(value, dict): - try: - # 提取字典中的关键信息 - extracted_info = [] - for dict_key, dict_value in value.items(): - if isinstance(dict_value, (str, int, float, bool)): - extracted_info.append(f"{dict_key}:{dict_value}") - quantity_node[key] = ";".join(extracted_info) - except Exception as e: - logger.warning(f"无法将字典属性 {key} 转换为字符串: {e}") - - graph.create(quantity_node) - logger.info(f"创建ProjectQuantity节点: {quantity_name} (id: {quantity_id}, 类型: {quantity_type})") - - # 创建与父节点的关系 - # 从本体层获取关系类型 - parent_label = list(parent_node.labels)[0] # 获取父节点的第一个标签 - relationship_type = get_relationship_type(parent_label, "ProjectQuantity", entity_relationships) - if relationship_type: - graph.create(Relationship(parent_node, relationship_type, quantity_node)) - logger.info(f"创建关系: {parent_node['name']} {relationship_type} {quantity_name}") - else: - logger.info(f"不创建关系: {parent_node['name']} 到 {quantity_name}") - - # 处理材机列表或children - materials = None - - # 先检查是否有材机列表 - if "材机列表" in quantity and quantity["材机列表"]: - materials = quantity["材机列表"] - logger.info(f"ProjectQuantity {quantity_name} 有 {len(materials)} 个材机项") - - for material in materials: - process_material_or_equipment(material, quantity_node, entity_relationships) - - # 如果没有材机列表,则检查是否有children - elif "children" in quantity and quantity["children"]: - children = quantity["children"] - logger.info(f"ProjectQuantity {quantity_name} 有 {len(children)} 个子项") - - for child in children: - child_type = child.get("类型", child.get("type", "")) - - # 如果子项类型为人工、材料或机械,则视为MaterialOrEquipment - if child_type in ["人工", "材料", "机械", "2", "3", "4"]: - process_material_or_equipment(child, quantity_node, entity_relationships) - # 如果子项类型为主材、设备或定额,则递归处理为ProjectQuantity - elif child_type in ["1", "主材", "5", "设备", "0", "定额"]: - process_project_quantity(child, quantity_node, entity_relationships) - - -# 处理MaterialOrEquipment -def process_material_or_equipment(material, parent_node, entity_relationships): - material_id = material.get("id", material.get("ID", "")) - material_name = material.get("名称", "") - material_type = material.get("类型", material.get("type", "")) - - if not material_id and not material_name: - logger.warning("MaterialOrEquipment缺少id和名称") - return - - # 创建唯一标识,结合父节点的ID和当前项的id - parent_id = parent_node.get("id", parent_node.get("GUID", "")) - unique_id = f"{parent_id}_{material_id}" if parent_id else material_id - - # 直接创建新节点,不检查是否已存在 - material_node = Node( - "MaterialOrEquipment", id=material_id, unique_id=unique_id, name=material_name, type=material_type - ) - - # 添加其他属性 - for key, value in material.items(): - if key not in ["id", "ID", "名称", "类型", "type"] and value is not None: - # 检查是否为资源库列表 - if key == "资源库列表" and isinstance(value, list): - # 将资源库列表转换为分号分隔的字符串 - resource_names = [] - for resource in value: - if isinstance(resource, dict) and "资源库名称" in resource: - resource_names.append(resource["资源库名称"]) - material_node["资源库名称"] = ";".join(resource_names) - logger.info(f"将资源库列表转换为字符串: {material_node['资源库名称']}") - # 检查值是否为基本类型 - elif isinstance(value, (str, int, float, bool)): - material_node[key] = value - # 如果是列表,尝试转换为分号分隔的字符串 - elif isinstance(value, list): - try: - if all(isinstance(x, (str, int, float, bool)) for x in value): - material_node[key] = ";".join(str(x) for x in value) - else: - # 对于包含复杂对象的列表,尝试提取关键信息 - extracted_values = [] - for item_in_list in value: - if isinstance(item_in_list, dict): - # 尝试提取字典中的名称或标识符 - for name_key in ["名称", "name", "标识", "id", "ID"]: - if name_key in item_in_list: - extracted_values.append(str(item_in_list[name_key])) - break - else: - # 如果没有找到名称键,使用第一个键值对 - if item_in_list: - first_key = next(iter(item_in_list)) - extracted_values.append(f"{first_key}:{item_in_list[first_key]}") - else: - extracted_values.append(str(item_in_list)) - material_node[key] = ";".join(extracted_values) - except Exception as e: - logger.warning(f"无法将列表属性 {key} 转换为字符串: {e}") - # 如果是字典,尝试转换为字符串 - elif isinstance(value, dict): - try: - # 提取字典中的关键信息 - extracted_info = [] - for dict_key, dict_value in value.items(): - if isinstance(dict_value, (str, int, float, bool)): - extracted_info.append(f"{dict_key}:{dict_value}") - material_node[key] = ";".join(extracted_info) - except Exception as e: - logger.warning(f"无法将字典属性 {key} 转换为字符串: {e}") - - graph.create(material_node) - logger.info(f"创建MaterialOrEquipment节点: {material_name} (id: {material_id}, 类型: {material_type})") - - # 创建与父节点的关系 - # 从本体层获取关系类型 - relationship_type = get_relationship_type("ProjectQuantity", "MaterialOrEquipment", entity_relationships) - if relationship_type: - graph.create(Relationship(parent_node, relationship_type, material_node)) - logger.info(f"创建关系: {parent_node['name']} {relationship_type} {material_name}") - else: - logger.info(f"不创建关系: {parent_node['name']} 到 {material_name}") - - -# 处理CostSet -def process_cost_set(data, root_node, entity_relationships): - # 根据您提供的JSON结构,正确访问expensePreview数据 - expense_preview = None - - if "projectData" in data and "expensePreview" in data["projectData"]: - expense_preview = data["projectData"]["expensePreview"] - elif "expensePreview" in data: - expense_preview = data["expensePreview"] - else: - logger.warning("JSON中未找到expensePreview数据") - logger.info(f"JSON顶层键: {list(data.keys())}") - return - - logger.info("开始处理expensePreview") - - # 处理安装工程节点 - 直接处理为独立的CostSet节点 - if "安装工程" in expense_preview: - # 递归处理"安装工程"下的所有CostSet - if "安装" in expense_preview["安装工程"]: - for cost_set in expense_preview["安装工程"]["安装"]: - # 添加详细日志,了解数据结构 - logger.info(f"处理顶层CostSet,结构键: {list(cost_set.keys())}") - if "sum" in cost_set: - logger.info(f"顶层CostSet的sum数组长度: {len(cost_set['sum'])}") - if cost_set["sum"]: - logger.info(f"sum数组第一项: {cost_set['sum'][0]}") - - process_cost_set_recursive(cost_set, root_node, entity_relationships) - - -# 递归处理CostSet -def process_cost_set_recursive(cost_set, root_node, entity_relationships): - guid = cost_set.get("GUID", "") - - # 使用固定名称"费用预览集",不再使用GUID作为名称 - name = "费用预览集" - - if not guid: # 如果没有GUID,则跳过该节点 - logger.warning(f"跳过没有GUID的CostSet") - return - - # 添加详细日志,了解数据结构 - logger.info(f"递归处理CostSet节点: {name}, GUID: {guid}, 结构键: {list(cost_set.keys())}") - - # 创建CostSet节点 - cost_set_node = Node("CostSet", GUID=guid, name=name) - - # 添加其他属性 - for key, value in cost_set.items(): - if key not in ["GUID", "children", "sum", "项目名称", "name"] and value is not None: - cost_set_node[key] = value - - graph.create(cost_set_node) - logger.info(f"创建CostSet节点: {name} (GUID: {guid})") - - # 不与其他CostSet节点建立关系,只与root_node有关系 - # 从本体层获取关系类型 - relationship_type = get_relationship_type("EngineeringData", "CostSet", entity_relationships) - if relationship_type: - graph.create(Relationship(root_node, relationship_type, cost_set_node)) - logger.info(f"创建关系: {root_node['name']} {relationship_type} {name}") - else: - logger.info(f"不创建关系: {root_node['name']} 到 {name}") - - # 处理sum列表中的CostItem - 确保正确处理 - if "sum" in cost_set: - sum_items = cost_set["sum"] - if sum_items and isinstance(sum_items, list): - logger.info(f"CostSet GUID:{guid} 的sum列表有 {len(sum_items)} 个CostItem") - for item in sum_items: - logger.info(f"处理CostItem: {item}") - try: - process_cost_item(item, cost_set_node, entity_relationships) - except Exception as e: - logger.error(f"处理CostItem时出错: {e}") - else: - logger.warning(f"CostSet GUID:{guid} 的sum不是有效列表或为空: {sum_items}") - else: - logger.info(f"CostSet GUID:{guid} 没有sum数组") - - # 处理子CostSet节点 - 直接作为独立的CostSet处理,不建立层级关系 - if "children" in cost_set and cost_set["children"]: - children = cost_set["children"] - logger.info(f"处理 {len(children)} 个子CostSet节点") - for child in children: - if "GUID" in child: - # 递归处理子CostSet,但传入root_node作为父节点 - process_cost_set_recursive(child, root_node, entity_relationships) - - -# 处理CostItem - 简化处理逻辑,确保正确创建节点 -def process_cost_item(item, parent_node, entity_relationships): - # 确保item是字典 - if not isinstance(item, dict): - logger.error(f"CostItem不是字典类型: {item}") - return - - item_id = item.get("id", "") - cost = item.get("cost", "") - - if not item_id: - logger.warning(f"跳过没有id的CostItem: {item}") - return - - # 使用id作为名称 - name = item_id - - # 创建唯一标识,结合父节点的GUID和当前项的id - parent_guid = parent_node.get("GUID", "") - unique_id = f"{parent_guid}_{item_id}" if parent_guid else item_id - - # 创建CostItem节点 - 简化属性,只保留关键属性 - item_node = Node("CostItem", id=item_id, unique_id=unique_id, cost=cost, name=name) - - # 添加其他属性 - 简化属性处理 - for key, value in item.items(): - if key not in ["id", "cost"] and value is not None: - if isinstance(value, (str, int, float, bool)): - item_node[key] = value - - graph.create(item_node) - logger.info(f"创建CostItem节点: {name} (id: {item_id}, cost: {cost})") - - # 创建与父节点的关系 - relationship_type = get_relationship_type("CostSet", "CostItem", entity_relationships) - if relationship_type: - graph.create(Relationship(parent_node, relationship_type, item_node)) - logger.info(f"创建关系: {parent_node['name']} {relationship_type} {name}") - else: - logger.info(f"不创建关系: {parent_node['name']} 到 {name}") - - -# 建立实体间的关系 -def establish_relationships(entity_relationships): - # 获取从ProjectDivisionItem到CostSet的关系类型 - relationship_type = get_relationship_type("ProjectDivisionItem", "CostSet", entity_relationships) - - if relationship_type: # 只有当关系类型不为None时才创建关系 - # 建立ProjectDivisionItem与CostSet的关系 - query_division_item = f""" - MATCH (pdi:ProjectDivisionItem), (cs:CostSet) - WHERE pdi.GUID = cs.GUID AND pdi.GUID <> "" - CREATE (pdi)-[:{relationship_type}]->(cs) - RETURN count(*) as count - """ - try: - result = graph.run(query_division_item) - count = result.data()[0]["count"] - logger.info(f"创建了 {count} 个 ProjectDivisionItem {relationship_type} CostSet 关系") - except Exception as e: - logger.error(f"创建ProjectDivisionItem与CostSet关系失败: {e}") - else: - logger.info("本体层中未定义ProjectDivisionItem到CostSet的关系,跳过创建") - - # 获取从ProjectQuantity到CostSet的关系类型 - relationship_type = get_relationship_type("ProjectQuantity", "CostSet", entity_relationships) - - if relationship_type: # 只有当关系类型不为None时才创建关系 - # 建立ProjectQuantity与CostSet的关系 - query_quantity = f""" - MATCH (pq:ProjectQuantity), (cs:CostSet) - WHERE pq.id = cs.GUID AND pq.id <> "" - CREATE (pq)-[:{relationship_type}]->(cs) - RETURN count(*) as count - """ - try: - result = graph.run(query_quantity) - count = result.data()[0]["count"] - logger.info(f"创建了 {count} 个 ProjectQuantity {relationship_type} CostSet 关系") - except Exception as e: - logger.error(f"创建ProjectQuantity与CostSet关系失败: {e}") - else: - logger.info("本体层中未定义ProjectQuantity到CostSet的关系,跳过创建") - - -# 处理取费表模板集(FeeTableTemplateSet) -def process_fee_table_template_set(data, root_node, entity_relationships): - # 根据JSON结构,访问costSetting数据 - if "projectData" in data and "costSetting" in data["projectData"]: - cost_setting = data["projectData"]["costSetting"] - elif "costSetting" in data: - cost_setting = data["costSetting"] - else: - logger.warning("JSON中未找到costSetting数据") - logger.info(f"JSON顶层键: {list(data.keys())}") - return - - logger.info(f"开始处理costSetting,包含 {len(cost_setting)} 个取费表模板集") - - # 只创建一个取费表模板集节点 - fee_template_set_node = Node("FeeTableTemplateSet", name="取费表模板集") - graph.create(fee_template_set_node) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type("EngineeringData", "FeeTableTemplateSet", entity_relationships) - graph.create(Relationship(root_node, relationship_type, fee_template_set_node)) - logger.info("创建FeeTableTemplateSet节点: 取费表模板集") - - # 处理每个取费表模板集 - for template_set_name, template_set_content in cost_setting.items(): - - # 直接处理取费表模板项 - if "tables" in template_set_content and isinstance(template_set_content["tables"], list): - for template_item in template_set_content["tables"]: - process_fee_table_template_item(template_item, fee_template_set_node, entity_relationships) - - -# 处理取费表模板项(FeeTableTemplateItem) -def process_fee_table_template_item(template_item, parent_node, entity_relationships): - # 提取必要属性 - name = template_item.get("name", "") - outlay_id = template_item.get("OutlayID", "") - type_name = template_item.get("类型", "") - profession = template_item.get("专业", "") - - if not name: - logger.warning("FeeTableTemplateItem缺少name") - return - - # 创建取费表模板项节点 - template_item_node = Node( - "FeeTableTemplateItem", name=name, outlayID=outlay_id, type=type_name, profession=profession - ) - - graph.create(template_item_node) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type("FeeTableTemplateSet", "FeeTableTemplateItem", entity_relationships) - graph.create(Relationship(parent_node, relationship_type, template_item_node)) - logger.info(f"创建FeeTableTemplateItem节点: {name} (OutlayID: {outlay_id})") - - # 处理取费项 - if "children" in template_item and isinstance(template_item["children"], list): - for fee_item in template_item["children"]: - process_fee(fee_item, template_item_node, entity_relationships) - - -# 处理取费(FeeCollection) -def process_fee(fee_item, parent_node, entity_relationships): - # 提取必要属性 - serial_number = fee_item.get("序号", "") - fee_name = fee_item.get("费用名称", "") - code = fee_item.get("代码", "") - rate = fee_item.get("费率(%)", "") - base = fee_item.get("取费基数", "") - remark = fee_item.get("备注", "") - - if not fee_name: - logger.warning("Fee缺少费用名称") - return - - # 创建取费节点 - fee_node = Node("FeeCollection", serialNumber=serial_number, name=fee_name, code=code) - - # 添加path属性 - if "FeeCollection" in parent_node.labels: - # 如果父节点是FeeCollection节点,使用父节点的path加上当前节点名称 - parent_path = parent_node.get("path", "") - fee_node["path"] = f"{parent_path}/{fee_name}" - else: - # 如果父节点是FeeTableTemplateItem,直接使用父节点名称作为路径的开始 - parent_name = parent_node.get("name", "") - fee_node["path"] = f"{parent_name}/{fee_name}" - - logger.info(f"为FeeCollection节点 {fee_name} 设置path: {fee_node['path']}") - - # 添加其他属性 - if rate: - fee_node["rate"] = rate - if base: - fee_node["base"] = base - if remark: - fee_node["remark"] = remark - - graph.create(fee_node) - - # 从本体层获取关系类型 - parent_label = list(parent_node.labels)[0] - relationship_type = get_relationship_type(parent_label, "FeeCollection", entity_relationships) - if relationship_type: - graph.create(Relationship(parent_node, relationship_type, fee_node)) - logger.info(f"创建Fee节点: {fee_name} (序号: {serial_number}, 代码: {code})") - else: - logger.info(f"不创建关系: {parent_node['name']} 到 {fee_name}") - - # 处理子费用项 - if "children" in fee_item and isinstance(fee_item["children"], list): - for child_fee in fee_item["children"]: - process_fee(child_fee, fee_node, entity_relationships) - - -# 处理费用表集(FeeScheduleSet) -def process_fee_schedule_set(data, root_node, entity_relationships): - """处理费用表集、费用表项和费用""" - # 检查projectCost是否存在 - if "projectData" in data and "projectCost" in data["projectData"]: - project_cost = data["projectData"]["projectCost"] - elif "projectCost" in data: - project_cost = data["projectCost"] - else: - logger.warning("JSON中未找到projectCost数据") - logger.info(f"JSON顶层键: {list(data.keys())}") - return - - logger.info(f"开始处理projectCost,包含 {len(project_cost)} 个费用表项") - - # 创建FeeScheduleSet节点 - 工程费用 - fee_schedule_set = Node("FeeScheduleSet", name="工程费用") - graph.create(fee_schedule_set) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type("EngineeringData", "FeeScheduleSet", entity_relationships) - graph.create(Relationship(root_node, relationship_type, fee_schedule_set)) - logger.info(f"创建FeeScheduleSet节点: 工程费用") - - # 处理费用表集下的费用表项 - for fee_table_name, fee_table_content in project_cost.items(): - # 创建FeeScheduleItem节点 - fee_schedule_item = Node("FeeScheduleItem", name=fee_table_name) - graph.create(fee_schedule_item) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type("FeeScheduleSet", "FeeScheduleItem", entity_relationships) - graph.create(Relationship(fee_schedule_set, relationship_type, fee_schedule_item)) - logger.info(f"创建FeeScheduleItem节点: {fee_table_name}") - - # 处理费用表项下的费用列表 - if isinstance(fee_table_content, list): - logger.info(f"FeeScheduleItem {fee_table_name} 包含 {len(fee_table_content)} 个费用项") - for fee_item in fee_table_content: - process_fee_item(fee_item, fee_schedule_item, entity_relationships) - else: - logger.warning(f"FeeScheduleItem {fee_table_name} 的内容类型未知: {type(fee_table_content)}") - - -# 处理费用项(Fee) -def process_fee_item(fee, parent_node, entity_relationships): - """处理费用项""" - # 提取必要属性 - serial_number = fee.get("序号", "") - name = fee.get("费用名称", "") - code = fee.get("代码", "") - rate = fee.get("费率(%)", "") - amount = fee.get("金额", "") - - if not name: - logger.warning("Fee缺少费用名称") - return - - # 创建Fee节点 - fee_node = Node("Fee", serialNumber=serial_number, name=name, code=code) - - # 添加path属性 - if "Fee" in parent_node.labels: - # 如果父节点是Fee节点,使用父节点的path加上当前节点名称 - parent_path = parent_node.get("path", "") - fee_node["path"] = f"{parent_path}/{name}" - else: - # 如果父节点是FeeScheduleItem,直接使用父节点名称作为路径的开始 - parent_name = parent_node.get("name", "") - fee_node["path"] = f"{parent_name}/{name}" - - logger.info(f"为Fee节点 {name} 设置path: {fee_node['path']}") - - # 添加其他属性 - if rate: - fee_node["rate"] = rate - if amount: - fee_node["amount"] = amount - - # 添加其他属性 - for key, value in fee.items(): - if key not in ["序号", "费用名称", "代码", "费率(%)", "金额", "children"] and value is not None: - if isinstance(value, (str, int, float, bool)): - fee_node[key] = value - - graph.create(fee_node) - logger.info(f"创建Fee节点: {name} (序号: {serial_number})") - - # 创建与父节点的关系 - # 从本体层获取关系类型 - parent_label = list(parent_node.labels)[0] - relationship_type = get_relationship_type(parent_label, "Fee", entity_relationships) - if relationship_type: - graph.create(Relationship(parent_node, relationship_type, fee_node)) - logger.info(f"创建关系: {parent_node['name']} {relationship_type} {name}") - else: - logger.info(f"不创建关系: {parent_node['name']} 到 {name}") - - # 处理子费用项 - if "children" in fee and fee["children"]: - children = fee["children"] - logger.info(f"Fee {name} 有 {len(children)} 个子费用项") - - for child in children: - process_fee_item(child, fee_node, entity_relationships) - - -# 处理工程属性集(ProjectPropertySet)和工程属性(ProjectProperty) -def process_project_property_set(data, root_node, entity_relationships): - # 检查projectInfo是否存在 - if "projectData" in data and "projectInfo" in data["projectData"]: - project_info = data["projectData"]["projectInfo"] - elif "projectInfo" in data: - project_info = data["projectInfo"] - else: - logger.warning("JSON中未找到projectInfo数据") - logger.info(f"JSON顶层键: {list(data.keys())}") - return - - logger.info("开始处理projectInfo") - - # 创建工程属性集节点 - property_set_node = Node("ProjectPropertySet", name="工程属性") - graph.create(property_set_node) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type("EngineeringData", "ProjectPropertySet", entity_relationships) - graph.create(Relationship(root_node, relationship_type, property_set_node)) - logger.info("创建ProjectPropertySet节点: 工程属性") - - # 为每个属性创建单独的节点 - for key, value in project_info.items(): - if value is not None: - # 处理复杂类型的值 - if isinstance(value, list): - # 对于列表类型,创建一个包含列表摘要的节点 - property_node = Node("ProjectProperty", name=key, value=f"列表({len(value)}项)") - graph.create(property_node) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type("ProjectPropertySet", "ProjectProperty", entity_relationships) - graph.create(Relationship(property_set_node, relationship_type, property_node)) - logger.info(f"创建ProjectProperty节点: {key} = 列表({len(value)}项)") - - # 为列表中的每个项创建子节点 - for i, item in enumerate(value): - if isinstance(item, dict): - # 对于字典类型的列表项,创建包含键值对的节点 - for sub_key, sub_value in item.items(): - if sub_value is not None: - sub_property_node = Node( - "ProjectProperty", name=f"{key}[{i}].{sub_key}", value=str(sub_value) - ) - graph.create(sub_property_node) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type( - "ProjectProperty", "ProjectProperty", entity_relationships - ) - graph.create(Relationship(property_node, relationship_type, sub_property_node)) - logger.info(f"创建ProjectProperty子节点: {key}[{i}].{sub_key} = {sub_value}") - else: - # 对于基本类型的列表项,创建简单节点 - sub_property_node = Node("ProjectProperty", name=f"{key}[{i}]", value=str(item)) - graph.create(sub_property_node) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type( - "ProjectProperty", "ProjectProperty", entity_relationships - ) - graph.create(Relationship(property_node, relationship_type, sub_property_node)) - logger.info(f"创建ProjectProperty子节点: {key}[{i}] = {item}") - elif isinstance(value, dict): - # 对于字典类型,创建一个包含字典摘要的节点 - property_node = Node("ProjectProperty", name=key, value=f"字典({len(value)}项)") - graph.create(property_node) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type("ProjectPropertySet", "ProjectProperty", entity_relationships) - graph.create(Relationship(property_set_node, relationship_type, property_node)) - logger.info(f"创建ProjectProperty节点: {key} = 字典({len(value)}项)") - - # 为字典中的每个键值对创建子节点 - for sub_key, sub_value in value.items(): - if sub_value is not None: - sub_property_node = Node("ProjectProperty", name=f"{key}.{sub_key}", value=str(sub_value)) - graph.create(sub_property_node) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type( - "ProjectProperty", "ProjectProperty", entity_relationships - ) - graph.create(Relationship(property_node, relationship_type, sub_property_node)) - logger.info(f"创建ProjectProperty子节点: {key}.{sub_key} = {sub_value}") - else: - # 对于基本类型,直接创建节点 - property_node = Node("ProjectProperty", name=key, value=str(value)) - graph.create(property_node) - - # 从本体层获取关系类型 - relationship_type = get_relationship_type("ProjectPropertySet", "ProjectProperty", entity_relationships) - graph.create(Relationship(property_set_node, relationship_type, property_node)) - logger.info(f"创建ProjectProperty节点: {key} = {value}") - - -# 在main函数中添加对这些函数的调用 -def main(): - # 解析本体层文件 - entity_types, entity_relationships = parse_ontology_file() - - # 创建根节点 - root_node = create_root_node() - - # 读取JSON文件 - json_file_path = "output.json" - with open(json_file_path, "r", encoding="utf-8") as f: - data = json.load(f) - - # 先处理费用预览,创建CostSet节点 - process_cost_set(data, root_node, entity_relationships) - - # 再处理项目划分,创建ProjectDivisionSet和ProjectDivisionItem节点 - process_project_division_set(data, root_node, entity_relationships) - - # 处理取费表模板集 - process_fee_table_template_set(data, root_node, entity_relationships) - - # 处理费用表集 - process_fee_schedule_set(data, root_node, entity_relationships) - - # 处理工程属性集 - process_project_property_set(data, root_node, entity_relationships) - - # 建立实体间的关系 - establish_relationships(entity_relationships) - - # 统计节点和关系数量 - count_nodes_and_relationships() - - logger.info("知识图谱构建完成") - - -# 添加统计节点和关系数量的函数 -def count_nodes_and_relationships(): - # 统计节点数量 - node_count_query = """ - MATCH (n) - RETURN labels(n) AS labels, count(*) AS count - """ - node_counts = graph.run(node_count_query).data() - logger.info("节点类型统计:") - for count_info in node_counts: - labels = count_info["labels"] - count = count_info["count"] - for label in labels: - logger.info(f" {label}: {count}个节点") - - # 统计关系数量 - rel_count_query = """ - MATCH ()-[r]->() - RETURN type(r) AS type, count(*) AS count - """ - rel_counts = graph.run(rel_count_query).data() - logger.info("关系类型统计:") - for count_info in rel_counts: - rel_type = count_info["type"] - count = count_info["count"] - logger.info(f" {rel_type}: {count}个关系") - - -if __name__ == "__main__": - main() +from py2neo import Graph, Node, Relationship, NodeMatcher +import json +import os +import logging +import re + +# 设置日志 +logging.basicConfig(level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s", filename="logs/build_kg_ontolo.log") +logger = logging.getLogger(__name__) + +# 连接到Neo4j数据库 +uri = "bolt://172.20.0.145:7687" +user = "neo4j" +password = "password" + +try: + graph = Graph(uri, auth=(user, password)) + logger.info("成功连接到Neo4j数据库") +except Exception as e: + logger.error(f"连接Neo4j数据库失败: {e}") + exit(1) + +# 清空数据库 +try: + graph.run("MATCH (n) DETACH DELETE n") + logger.info("已清空数据库") +except Exception as e: + logger.error(f"清空数据库失败: {e}") + +# 删除所有约束 +try: + # 获取所有约束 + constraints = graph.run("SHOW CONSTRAINTS").data() + for constraint in constraints: + constraint_name = constraint.get("name") + if constraint_name: + graph.run(f"DROP CONSTRAINT {constraint_name}") + logger.info(f"已删除约束: {constraint_name}") +except Exception as e: + logger.warning(f"删除约束失败: {e}") + + +# 解析本体层文件,获取实体类型、属性和关系定义 +def parse_ontology_file(file_path="Ontology_Layer.txt"): + """ + 解析本体层文件,获取实体类型、属性和关系定义 + + Args: + file_path: 本体层文件路径 + + Returns: + entity_types: 实体类型和属性的字典 {实体类型名称: {属性名称: 属性类型}} + entity_relationships: 实体间关系的列表 [(源实体类型, 关系类型, 目标实体类型)] + """ + try: + with open(file_path, "r", encoding="utf-8") as f: + content = f.read() + + # 分割实体类型和关系部分 + parts = content.split("2. 实体间的关系") + + if len(parts) != 2: + logger.error("本体层文件格式错误,无法找到实体类型和关系部分") + return {}, [] + + entity_types_content = parts[0] + relationships_content = parts[1] + + # 解析实体类型和属性 + entity_types = {} + current_entity = None + + # 移除 "1.实体类型" 标题行 + entity_types_content = entity_types_content.replace("1.实体类型", "").strip() + + # 按行分割 + lines = entity_types_content.strip().split("\n") + + for line in lines: + line = line.strip() + if not line: + continue + + # 如果行不包含冒号,视为实体类型 + if ":" not in line: + current_entity = line + entity_types[current_entity] = {} + # 否则视为属性定义 + else: + if current_entity is None: + continue + + parts = line.split(":", 1) + if len(parts) == 2: + attr_name = parts[0].strip() + attr_type = parts[1].strip() + entity_types[current_entity][attr_name] = attr_type + + # 解析实体间的关系 + entity_relationships = [] + + # 匹配关系定义行: (:EntityType)-[:RELATIONSHIP]->(:EntityType) + relationship_pattern = r"\(:(\w+)\)-\[:(\w+)\]->\(:(\w+)\)" + + for line in relationships_content.strip().split("\n"): + line = line.strip() + if not line: + continue + + match = re.match(relationship_pattern, line) + if match: + source_entity, relationship_type, target_entity = match.groups() + entity_relationships.append((source_entity, relationship_type, target_entity)) + + logger.info(f"从本体层文件中解析出 {len(entity_types)} 个实体类型和 {len(entity_relationships)} 个关系定义") + return entity_types, entity_relationships + + except Exception as e: + logger.error(f"解析本体层文件失败: {e}") + return {}, [] + + +# 创建约束和索引以提高性能 - 现在不创建任何约束 +def create_constraints_and_indexes(): + # 不创建任何约束 + logger.info("跳过创建约束") + pass + + +# 获取实体之间的关系类型 +def get_relationship_type(source_entity_type, target_entity_type, entity_relationships): + """ + 根据源实体类型和目标实体类型获取关系类型 + + Args: + source_entity_type: 源实体类型 + target_entity_type: 目标实体类型 + entity_relationships: 实体间关系的列表 + + Returns: + relationship_type: 关系类型,如果没找到则返回None + """ + for source, rel_type, target in entity_relationships: + if source == source_entity_type and target == target_entity_type: + return rel_type + + # 如果没有找到匹配的关系,返回None + logger.warning(f"未找到从 {source_entity_type} 到 {target_entity_type} 的关系定义,不创建关系") + return None + + +# 创建根节点 +def create_root_node(): + root = Node("EngineeringData", name="工程") + graph.create(root) + logger.info("创建根节点: 工程") + return root + + +# 处理ProjectDivisionSet +def process_project_division_set(data, root_node, entity_relationships): + # 根据您提供的JSON结构,正确访问projectDivision数据 + if "projectData" in data and "projectDivision" in data["projectData"]: + project_division = data["projectData"]["projectDivision"] + elif "projectDivision" in data: + project_division = data["projectDivision"] + else: + logger.warning("JSON中未找到projectDivision数据") + logger.info(f"JSON顶层键: {list(data.keys())}") + return + + logger.info(f"开始处理projectDivision,包含 {len(project_division)} 个顶级项目") + + # 创建新的ProjectDivisionSet节点 - 项目划分集 + division_set = Node("ProjectDivisionSet", name="项目划分集") + graph.create(division_set) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type("EngineeringData", "ProjectDivisionSet", entity_relationships) + if relationship_type: # 只有当关系类型不为None时才创建关系 + graph.create(Relationship(root_node, relationship_type, division_set)) + logger.info(f"创建关系: {root_node['name']} {relationship_type} {division_set['name']}") + else: + logger.info(f"不创建关系: {root_node['name']} 到 {division_set['name']}") + + # 处理ProjectDivisionTree + for first_level_name, first_level_content in project_division.items(): + # 处理第一层下的内容,直接创建合并后的ProjectDivisionTree节点 + if isinstance(first_level_content, dict): + # 处理一级名称,去掉"工程"字样 + processed_first_level = first_level_name.replace("工程", "") + + for second_level_name, second_level_content in first_level_content.items(): + # 确定最终节点名称 + if second_level_name == processed_first_level: + # 如果二级名称与处理后的一级名称相同,直接使用二级名称 + final_name = second_level_name + else: + # 否则组合二级名称和处理后的一级名称 + final_name = f"{second_level_name}{processed_first_level}" + + # 创建ProjectDivisionTree节点 + division_tree = Node("ProjectDivisionTree", name=final_name) + + # 保存原始名称作为属性 + division_tree["original_first_level"] = first_level_name + division_tree["original_second_level"] = second_level_name + + # 如果有GUID,添加到节点属性 + guid = None + if isinstance(first_level_content, dict) and "GUID" in first_level_content: + division_tree["first_level_GUID"] = first_level_content["GUID"] + guid = first_level_content["GUID"] + + graph.create(division_tree) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type( + "ProjectDivisionSet", "ProjectDivisionTree", entity_relationships + ) + if relationship_type: + graph.create(Relationship(division_set, relationship_type, division_tree)) + logger.info(f"创建关系: {final_name} {relationship_type} {division_tree['name']}") + else: + logger.info(f"不创建关系: {division_set['name']} 到 {division_tree['name']}") + + # 如果有GUID,尝试建立与CostSet的关系 + if guid: + # 查找对应的CostSet节点 + cost_set_query = f""" + MATCH (c:CostSet) + WHERE c.GUID = '{guid}' + RETURN c + """ + cost_set_nodes = list(graph.run(cost_set_query)) + if cost_set_nodes: + cost_set_node = cost_set_nodes[0]["c"] + relationship_type = get_relationship_type( + "ProjectDivisionTree", "CostSet", entity_relationships + ) + if relationship_type: # 只有当关系类型不为None时才创建关系 + graph.create(Relationship(division_tree, relationship_type, cost_set_node)) + logger.info(f"创建关系: {final_name} {relationship_type} CostSet (GUID: {guid})") + else: + logger.info(f"不创建关系: {final_name} 到 CostSet (GUID: {guid})") + + # 处理第二层下的ProjectDivisionItem列表 + if isinstance(second_level_content, list): + logger.info(f"ProjectDivisionTree {final_name} 包含 {len(second_level_content)} 个列表项") + for item in second_level_content: + process_project_division_item(item, division_tree, entity_relationships) + else: + logger.warning(f"ProjectDivisionTree {final_name} 的内容类型未知: {type(second_level_content)}") + else: + logger.warning(f"第一层 {first_level_name} 的内容类型未知: {type(first_level_content)}") + + +# 处理ProjectDivisionItem +def process_project_division_item(item, parent_node, entity_relationships): + # 提取必要属性 + guid = item.get("GUID", "") + name = item.get("项目名称", "") + + if not guid and not name: + logger.warning("ProjectDivisionItem缺少GUID和项目名称") + return + + # 创建ProjectDivisionItem节点 + item_node = Node("ProjectDivisionItem", GUID=guid, name=name) + + # 添加path属性,表示从ProjectDivisionItem到ProjectDivisionTree的路径,不包含节点类型 + if isinstance(parent_node, Node) and "ProjectDivisionTree" in parent_node.labels: + # 如果父节点是ProjectDivisionTree,使用"父节点名称/当前节点名称"作为路径 + item_node["path"] = f"{parent_node['name']}/{name}" + logger.info(f"为ProjectDivisionItem {name} 设置path: {item_node['path']}") + else: + # 如果父节点是ProjectDivisionItem,使用"父节点path/当前节点名称"作为路径 + parent_path = parent_node.get("path", "") + if parent_path: + item_node["path"] = f"{parent_path}/{name}" + else: + # 如果父节点没有path属性(不应该发生,但为了健壮性) + item_node["path"] = name + logger.info(f"为ProjectDivisionItem {name} 设置path: {item_node['path']}") + + # 添加其他属性 + for key, value in item.items(): + if key not in ["GUID", "项目名称", "children"] and value is not None: + # 检查是否为资源库列表 + if key == "资源库列表" and isinstance(value, list): + # 将资源库列表转换为分号分隔的字符串 + resource_names = [] + for resource in value: + if isinstance(resource, dict) and "资源库名称" in resource: + resource_names.append(resource["资源库名称"]) + item_node["资源库名称"] = ";".join(resource_names) + logger.info(f"将资源库列表转换为字符串: {item_node['资源库名称']}") + # 检查值是否为基本类型 + elif isinstance(value, (str, int, float, bool)): + item_node[key] = value + # 如果是列表,尝试转换为分号分隔的字符串 + elif isinstance(value, list): + try: + if all(isinstance(x, (str, int, float, bool)) for x in value): + item_node[key] = ";".join(str(x) for x in value) + else: + # 对于包含复杂对象的列表,尝试提取关键信息 + extracted_values = [] + for item_in_list in value: + if isinstance(item_in_list, dict): + # 尝试提取字典中的名称或标识符 + for name_key in ["名称", "name", "标识", "id", "ID"]: + if name_key in item_in_list: + extracted_values.append(str(item_in_list[name_key])) + break + else: + # 如果没有找到名称键,使用第一个键值对 + if item_in_list: + first_key = next(iter(item_in_list)) + extracted_values.append(f"{first_key}:{item_in_list[first_key]}") + else: + extracted_values.append(str(item_in_list)) + item_node[key] = ";".join(extracted_values) + except Exception as e: + logger.warning(f"无法将列表属性 {key} 转换为字符串: {e}") + # 如果是字典,尝试转换为字符串 + elif isinstance(value, dict): + try: + # 提取字典中的关键信息 + extracted_info = [] + for dict_key, dict_value in value.items(): + if isinstance(dict_value, (str, int, float, bool)): + extracted_info.append(f"{dict_key}:{dict_value}") + item_node[key] = ";".join(extracted_info) + except Exception as e: + logger.warning(f"无法将字典属性 {key} 转换为字符串: {e}") + + graph.create(item_node) + logger.info(f"创建ProjectDivisionItem节点: {name} (GUID: {guid})") + + # 创建与父节点的关系 + if isinstance(parent_node, Node) and "ProjectDivisionTree" in parent_node.labels: + # 从本体层获取关系类型 + relationship_type = get_relationship_type("ProjectDivisionTree", "ProjectDivisionItem", entity_relationships) + if relationship_type: + graph.create(Relationship(parent_node, relationship_type, item_node)) + logger.info(f"创建关系: {parent_node['name']} {relationship_type} {item_node['name']}") + else: + logger.info(f"不创建关系: {parent_node['name']} 到 {item_node['name']}") + else: + # 从本体层获取关系类型 + relationship_type = get_relationship_type("ProjectDivisionItem", "ProjectDivisionItem", entity_relationships) + if relationship_type: + graph.create(Relationship(parent_node, relationship_type, item_node)) + logger.info(f"创建关系: {parent_node['name']} {relationship_type} {item_node['name']}") + else: + logger.info(f"不创建关系: {parent_node['name']} 到 {item_node['name']}") + + # # 如果有GUID,尝试建立与CostSet的关系 + # if guid: + # # 查找对应的CostSet节点 + # cost_set_query = f""" + # MATCH (c:CostSet) + # WHERE c.GUID = '{guid}' + # RETURN c + # """ + # cost_set_nodes = list(graph.run(cost_set_query)) + # if cost_set_nodes: + # cost_set_node = cost_set_nodes[0]["c"] + # relationship_type = get_relationship_type("ProjectDivisionTree", "CostSet", entity_relationships) + # if relationship_type: # 只有当关系类型不为None时才创建关系 + # graph.create(Relationship(item_node, relationship_type, cost_set_node)) + # logger.info(f"创建关系: {item_node['name']} {relationship_type} CostSet (GUID: {guid})") + # else: + # logger.info(f"不创建关系: {item_node['name']} 到 CostSet (GUID: {guid})") + + # 处理子项 + if "children" in item and item["children"]: + children = item["children"] + logger.info(f"ProjectDivisionItem {name} 有 {len(children)} 个子项") + + for child in children: + child_type = child.get("type", child.get("类型", "")) + + if child_type == "项目划分": + # 递归处理子ProjectDivisionItem + process_project_division_item(child, item_node, entity_relationships) + elif child_type == "8" or child_type == "清单": + # 处理List类型节点 + process_list_item(child, item_node, entity_relationships) + else: + # 处理ProjectQuantity及其子类 + process_project_quantity(child, item_node, entity_relationships) + + +# 处理List及其子类 +def process_list_item(list_item, parent_node, entity_relationships): + """处理清单类型的节点""" + # 提取必要属性 + guid = list_item.get("GUID", "") + list_name = list_item.get("清单名称") + list_type = list_item.get("类型", "") + + # 创建List节点 + list_node = Node("List", guid=guid, name=list_name, type=list_type) + + # 添加path属性,包含节点类型 + parent_path = parent_node.get("path", "") + if parent_path: + list_node["path"] = f"{parent_path}/{list_name}(清单)" + else: + # 如果父节点没有path属性(不应该发生,但为了健壮性) + parent_name = parent_node.get("name", "") + list_node["path"] = f"{parent_name}/{list_name}(清单)" + logger.info(f"为List节点 {list_name} 设置path: {list_node['path']}") + + # 添加其他属性 + for key, value in list_item.items(): + if key not in ["清单名称", "类型", "guid", "children"] and value is not None: + # 检查是否为资源库列表 + if key == "资源库列表" and isinstance(value, list): + # 将资源库列表转换为分号分隔的字符串 + resource_names = [] + for resource in value: + if isinstance(resource, dict) and "资源库名称" in resource: + resource_names.append(resource["资源库名称"]) + list_node["资源库名称"] = ";".join(resource_names) + logger.info(f"将资源库列表转换为字符串: {list_node['资源库名称']}") + # 检查值是否为基本类型 + elif isinstance(value, (str, int, float, bool)): + list_node[key] = value + # 如果是列表,尝试转换为分号分隔的字符串 + elif isinstance(value, list): + try: + if all(isinstance(x, (str, int, float, bool)) for x in value): + list_node[key] = ";".join(str(x) for x in value) + else: + # 对于包含复杂对象的列表,尝试提取关键信息 + extracted_values = [] + for item_in_list in value: + if isinstance(item_in_list, dict): + # 尝试提取字典中的名称或标识符 + for name_key in ["名称", "name", "标识", "id", "ID"]: + if name_key in item_in_list: + extracted_values.append(str(item_in_list[name_key])) + break + else: + # 如果没有找到名称键,使用第一个键值对 + if item_in_list: + first_key = next(iter(item_in_list)) + extracted_values.append(f"{first_key}:{item_in_list[first_key]}") + else: + extracted_values.append(str(item_in_list)) + list_node[key] = ";".join(extracted_values) + except Exception as e: + logger.warning(f"无法将列表属性 {key} 转换为字符串: {e}") + # 如果是字典,尝试转换为字符串 + elif isinstance(value, dict): + try: + # 提取字典中的关键信息 + extracted_info = [] + for dict_key, dict_value in value.items(): + if isinstance(dict_value, (str, int, float, bool)): + extracted_info.append(f"{dict_key}:{dict_value}") + list_node[key] = ";".join(extracted_info) + except Exception as e: + logger.warning(f"无法将字典属性 {key} 转换为字符串: {e}") + + graph.create(list_node) + logger.info(f"创建List节点: {list_name} (类型: {list_type})") + + # 创建与父节点的关系 + # 从本体层获取关系类型 + relationship_type = get_relationship_type(list(parent_node.labels)[0], "List", entity_relationships) + if relationship_type: + graph.create(Relationship(parent_node, relationship_type, list_node)) + logger.info(f"创建关系: {parent_node['name']} {relationship_type} {list_name}") + else: + logger.info(f"不创建关系: {parent_node['name']} 到 {list_name}") + + # 如果有GUID,尝试建立与CostSet的关系 + if guid: + # 查找对应的CostSet节点 + cost_set_query = f""" + MATCH (c:CostSet) + WHERE c.GUID = '{guid}' + RETURN c + """ + cost_set_nodes = list(graph.run(cost_set_query)) + if cost_set_nodes: + cost_set_node = cost_set_nodes[0]["c"] + relationship_type = get_relationship_type("List", "CostSet", entity_relationships) + if relationship_type: + graph.create(Relationship(list_node, relationship_type, cost_set_node)) + logger.info(f"创建关系: {list_name} {relationship_type} CostSet (GUID: {guid})") + else: + logger.info(f"不创建关系: {list_name} 到 CostSet (GUID: {guid})") + + # 处理子项 + if "children" in list_item and list_item["children"]: + children = list_item["children"] + logger.info(f"List {list_name} 有 {len(children)} 个子项") + + for child in children: + # 确定子项类型 + child_type = child.get("type", child.get("类型", "")) + + if child_type == "项目划分": + # 递归处理子ProjectDivisionItem + process_project_division_item(child, list_node, entity_relationships) + elif child_type == "8" or child_type == "清单": + # 递归处理子List + process_list_item(child, list_node, entity_relationships) + else: + # 处理ProjectQuantity及其子类 + process_project_quantity(child, list_node, entity_relationships) + + +# 处理ProjectQuantity及其子类 +def process_project_quantity(quantity, parent_node, entity_relationships): + # 确定具体类型 + quantity_type = quantity.get("类型", "") + labels = ["ProjectQuantity"] + type_name = "ProjectQuantity" + + # 支持数字和文本类型 + if quantity_type == "0" or quantity_type == "定额": + labels.append("Quota") + type_name = "定额" + elif quantity_type == "1" or quantity_type == "主材": + labels.append("MainMaterial") + type_name = "主材" + elif quantity_type == "5" or quantity_type == "设备": + labels.append("Equipment") + type_name = "设备" + + # 创建节点 + quantity_id = quantity.get("id", "") + quantity_name = quantity.get("项目名称", quantity.get("名称", "")) + + quantity_node = Node(*labels, id=quantity_id, name=quantity_name) + + # 添加path属性,包含节点类型 + parent_path = parent_node.get("path", "") + if parent_path: + quantity_node["path"] = f"{parent_path}/{quantity_name}({type_name})" + else: + # 如果父节点没有path属性(不应该发生,但为了健壮性) + parent_name = parent_node.get("name", "") + quantity_node["path"] = f"{parent_name}/{quantity_name}({type_name})" + logger.info(f"为ProjectQuantity节点 {quantity_name} 设置path: {quantity_node['path']}") + + # 添加其他属性 + for key, value in quantity.items(): + if key not in ["id", "名称", "项目名称", "材机列表", "children"] and value is not None: + # 检查是否为资源库列表 + if key == "资源库列表" and isinstance(value, list): + # 将资源库列表转换为分号分隔的字符串 + resource_names = [] + for resource in value: + if isinstance(resource, dict) and "资源库名称" in resource: + resource_names.append(resource["资源库名称"]) + quantity_node["资源库名称"] = ";".join(resource_names) + logger.info(f"将资源库列表转换为字符串: {quantity_node['资源库名称']}") + # 检查值是否为基本类型 + elif isinstance(value, (str, int, float, bool)): + quantity_node[key] = value + # 如果是列表,尝试转换为分号分隔的字符串 + elif isinstance(value, list): + try: + if all(isinstance(x, (str, int, float, bool)) for x in value): + quantity_node[key] = ";".join(str(x) for x in value) + else: + # 对于包含复杂对象的列表,尝试提取关键信息 + extracted_values = [] + for item_in_list in value: + if isinstance(item_in_list, dict): + # 尝试提取字典中的名称或标识符 + for name_key in ["名称", "name", "标识", "id", "ID"]: + if name_key in item_in_list: + extracted_values.append(str(item_in_list[name_key])) + break + else: + # 如果没有找到名称键,使用第一个键值对 + if item_in_list: + first_key = next(iter(item_in_list)) + extracted_values.append(f"{first_key}:{item_in_list[first_key]}") + else: + extracted_values.append(str(item_in_list)) + quantity_node[key] = ";".join(extracted_values) + except Exception as e: + logger.warning(f"无法将列表属性 {key} 转换为字符串: {e}") + # 如果是字典,尝试转换为字符串 + elif isinstance(value, dict): + try: + # 提取字典中的关键信息 + extracted_info = [] + for dict_key, dict_value in value.items(): + if isinstance(dict_value, (str, int, float, bool)): + extracted_info.append(f"{dict_key}:{dict_value}") + quantity_node[key] = ";".join(extracted_info) + except Exception as e: + logger.warning(f"无法将字典属性 {key} 转换为字符串: {e}") + + graph.create(quantity_node) + logger.info(f"创建ProjectQuantity节点: {quantity_name} (id: {quantity_id}, 类型: {quantity_type})") + + # 创建与父节点的关系 + # 从本体层获取关系类型 + parent_label = list(parent_node.labels)[0] # 获取父节点的第一个标签 + relationship_type = get_relationship_type(parent_label, "ProjectQuantity", entity_relationships) + if relationship_type: + graph.create(Relationship(parent_node, relationship_type, quantity_node)) + logger.info(f"创建关系: {parent_node['name']} {relationship_type} {quantity_name}") + else: + logger.info(f"不创建关系: {parent_node['name']} 到 {quantity_name}") + + # 处理材机列表或children + materials = None + + # 先检查是否有材机列表 + if "材机列表" in quantity and quantity["材机列表"]: + materials = quantity["材机列表"] + logger.info(f"ProjectQuantity {quantity_name} 有 {len(materials)} 个材机项") + + for material in materials: + process_material_or_equipment(material, quantity_node, entity_relationships) + + # 如果没有材机列表,则检查是否有children + elif "children" in quantity and quantity["children"]: + children = quantity["children"] + logger.info(f"ProjectQuantity {quantity_name} 有 {len(children)} 个子项") + + for child in children: + child_type = child.get("类型", child.get("type", "")) + + # 如果子项类型为人工、材料或机械,则视为MaterialOrEquipment + if child_type in ["人工", "材料", "机械", "2", "3", "4"]: + process_material_or_equipment(child, quantity_node, entity_relationships) + # 如果子项类型为主材、设备或定额,则递归处理为ProjectQuantity + elif child_type in ["1", "主材", "5", "设备", "0", "定额"]: + process_project_quantity(child, quantity_node, entity_relationships) + + +# 处理MaterialOrEquipment +def process_material_or_equipment(material, parent_node, entity_relationships): + material_id = material.get("id", material.get("ID", "")) + material_name = material.get("名称", "") + material_type = material.get("类型", material.get("type", "")) + + if not material_id and not material_name: + logger.warning("MaterialOrEquipment缺少id和名称") + return + + # 创建唯一标识,结合父节点的ID和当前项的id + parent_id = parent_node.get("id", parent_node.get("GUID", "")) + unique_id = f"{parent_id}_{material_id}" if parent_id else material_id + + # 直接创建新节点,不检查是否已存在 + material_node = Node( + "MaterialOrEquipment", id=material_id, unique_id=unique_id, name=material_name, type=material_type + ) + + # 添加其他属性 + for key, value in material.items(): + if key not in ["id", "ID", "名称", "类型", "type"] and value is not None: + # 检查是否为资源库列表 + if key == "资源库列表" and isinstance(value, list): + # 将资源库列表转换为分号分隔的字符串 + resource_names = [] + for resource in value: + if isinstance(resource, dict) and "资源库名称" in resource: + resource_names.append(resource["资源库名称"]) + material_node["资源库名称"] = ";".join(resource_names) + logger.info(f"将资源库列表转换为字符串: {material_node['资源库名称']}") + # 检查值是否为基本类型 + elif isinstance(value, (str, int, float, bool)): + material_node[key] = value + # 如果是列表,尝试转换为分号分隔的字符串 + elif isinstance(value, list): + try: + if all(isinstance(x, (str, int, float, bool)) for x in value): + material_node[key] = ";".join(str(x) for x in value) + else: + # 对于包含复杂对象的列表,尝试提取关键信息 + extracted_values = [] + for item_in_list in value: + if isinstance(item_in_list, dict): + # 尝试提取字典中的名称或标识符 + for name_key in ["名称", "name", "标识", "id", "ID"]: + if name_key in item_in_list: + extracted_values.append(str(item_in_list[name_key])) + break + else: + # 如果没有找到名称键,使用第一个键值对 + if item_in_list: + first_key = next(iter(item_in_list)) + extracted_values.append(f"{first_key}:{item_in_list[first_key]}") + else: + extracted_values.append(str(item_in_list)) + material_node[key] = ";".join(extracted_values) + except Exception as e: + logger.warning(f"无法将列表属性 {key} 转换为字符串: {e}") + # 如果是字典,尝试转换为字符串 + elif isinstance(value, dict): + try: + # 提取字典中的关键信息 + extracted_info = [] + for dict_key, dict_value in value.items(): + if isinstance(dict_value, (str, int, float, bool)): + extracted_info.append(f"{dict_key}:{dict_value}") + material_node[key] = ";".join(extracted_info) + except Exception as e: + logger.warning(f"无法将字典属性 {key} 转换为字符串: {e}") + + graph.create(material_node) + logger.info(f"创建MaterialOrEquipment节点: {material_name} (id: {material_id}, 类型: {material_type})") + + # 创建与父节点的关系 + # 从本体层获取关系类型 + relationship_type = get_relationship_type("ProjectQuantity", "MaterialOrEquipment", entity_relationships) + if relationship_type: + graph.create(Relationship(parent_node, relationship_type, material_node)) + logger.info(f"创建关系: {parent_node['name']} {relationship_type} {material_name}") + else: + logger.info(f"不创建关系: {parent_node['name']} 到 {material_name}") + + +# 处理CostSet +def process_cost_set(data, root_node, entity_relationships): + # 根据您提供的JSON结构,正确访问expensePreview数据 + expense_preview = None + + if "projectData" in data and "expensePreview" in data["projectData"]: + expense_preview = data["projectData"]["expensePreview"] + elif "expensePreview" in data: + expense_preview = data["expensePreview"] + else: + logger.warning("JSON中未找到expensePreview数据") + logger.info(f"JSON顶层键: {list(data.keys())}") + return + + logger.info("开始处理expensePreview") + + # 处理安装工程节点 - 直接处理为独立的CostSet节点 + if "安装工程" in expense_preview: + # 递归处理"安装工程"下的所有CostSet + if "安装" in expense_preview["安装工程"]: + for cost_set in expense_preview["安装工程"]["安装"]: + # 添加详细日志,了解数据结构 + logger.info(f"处理顶层CostSet,结构键: {list(cost_set.keys())}") + if "sum" in cost_set: + logger.info(f"顶层CostSet的sum数组长度: {len(cost_set['sum'])}") + if cost_set["sum"]: + logger.info(f"sum数组第一项: {cost_set['sum'][0]}") + + process_cost_set_recursive(cost_set, root_node, entity_relationships) + + +# 递归处理CostSet +def process_cost_set_recursive(cost_set, root_node, entity_relationships): + guid = cost_set.get("GUID", "") + + # 使用固定名称"费用预览集",不再使用GUID作为名称 + name = "费用预览集" + + if not guid: # 如果没有GUID,则跳过该节点 + logger.warning(f"跳过没有GUID的CostSet") + return + + # 添加详细日志,了解数据结构 + logger.info(f"递归处理CostSet节点: {name}, GUID: {guid}, 结构键: {list(cost_set.keys())}") + + # 创建CostSet节点 + cost_set_node = Node("CostSet", GUID=guid, name=name) + + # 添加其他属性 + for key, value in cost_set.items(): + if key not in ["GUID", "children", "sum", "项目名称", "name"] and value is not None: + cost_set_node[key] = value + + graph.create(cost_set_node) + logger.info(f"创建CostSet节点: {name} (GUID: {guid})") + + # 不与其他CostSet节点建立关系,只与root_node有关系 + # 从本体层获取关系类型 + relationship_type = get_relationship_type("EngineeringData", "CostSet", entity_relationships) + if relationship_type: + graph.create(Relationship(root_node, relationship_type, cost_set_node)) + logger.info(f"创建关系: {root_node['name']} {relationship_type} {name}") + else: + logger.info(f"不创建关系: {root_node['name']} 到 {name}") + + # 处理sum列表中的CostItem - 确保正确处理 + if "sum" in cost_set: + sum_items = cost_set["sum"] + if sum_items and isinstance(sum_items, list): + logger.info(f"CostSet GUID:{guid} 的sum列表有 {len(sum_items)} 个CostItem") + for item in sum_items: + logger.info(f"处理CostItem: {item}") + try: + process_cost_item(item, cost_set_node, entity_relationships) + except Exception as e: + logger.error(f"处理CostItem时出错: {e}") + else: + logger.warning(f"CostSet GUID:{guid} 的sum不是有效列表或为空: {sum_items}") + else: + logger.info(f"CostSet GUID:{guid} 没有sum数组") + + # 处理子CostSet节点 - 直接作为独立的CostSet处理,不建立层级关系 + if "children" in cost_set and cost_set["children"]: + children = cost_set["children"] + logger.info(f"处理 {len(children)} 个子CostSet节点") + for child in children: + if "GUID" in child: + # 递归处理子CostSet,但传入root_node作为父节点 + process_cost_set_recursive(child, root_node, entity_relationships) + + +# 处理CostItem - 简化处理逻辑,确保正确创建节点 +def process_cost_item(item, parent_node, entity_relationships): + # 确保item是字典 + if not isinstance(item, dict): + logger.error(f"CostItem不是字典类型: {item}") + return + + item_id = item.get("id", "") + cost = item.get("cost", "") + + if not item_id: + logger.warning(f"跳过没有id的CostItem: {item}") + return + + # 使用id作为名称 + name = item_id + + # 创建唯一标识,结合父节点的GUID和当前项的id + parent_guid = parent_node.get("GUID", "") + unique_id = f"{parent_guid}_{item_id}" if parent_guid else item_id + + # 创建CostItem节点 - 简化属性,只保留关键属性 + item_node = Node("CostItem", id=item_id, unique_id=unique_id, cost=cost, name=name) + + # 添加其他属性 - 简化属性处理 + for key, value in item.items(): + if key not in ["id", "cost"] and value is not None: + if isinstance(value, (str, int, float, bool)): + item_node[key] = value + + graph.create(item_node) + logger.info(f"创建CostItem节点: {name} (id: {item_id}, cost: {cost})") + + # 创建与父节点的关系 + relationship_type = get_relationship_type("CostSet", "CostItem", entity_relationships) + if relationship_type: + graph.create(Relationship(parent_node, relationship_type, item_node)) + logger.info(f"创建关系: {parent_node['name']} {relationship_type} {name}") + else: + logger.info(f"不创建关系: {parent_node['name']} 到 {name}") + + +# 建立实体间的关系 +def establish_relationships(entity_relationships): + # 获取从ProjectDivisionItem到CostSet的关系类型 + relationship_type = get_relationship_type("ProjectDivisionItem", "CostSet", entity_relationships) + + if relationship_type: # 只有当关系类型不为None时才创建关系 + # 建立ProjectDivisionItem与CostSet的关系 + query_division_item = f""" + MATCH (pdi:ProjectDivisionItem), (cs:CostSet) + WHERE pdi.GUID = cs.GUID AND pdi.GUID <> "" + CREATE (pdi)-[:{relationship_type}]->(cs) + RETURN count(*) as count + """ + try: + result = graph.run(query_division_item) + count = result.data()[0]["count"] + logger.info(f"创建了 {count} 个 ProjectDivisionItem {relationship_type} CostSet 关系") + except Exception as e: + logger.error(f"创建ProjectDivisionItem与CostSet关系失败: {e}") + else: + logger.info("本体层中未定义ProjectDivisionItem到CostSet的关系,跳过创建") + + # 获取从ProjectQuantity到CostSet的关系类型 + relationship_type = get_relationship_type("ProjectQuantity", "CostSet", entity_relationships) + + if relationship_type: # 只有当关系类型不为None时才创建关系 + # 建立ProjectQuantity与CostSet的关系 + query_quantity = f""" + MATCH (pq:ProjectQuantity), (cs:CostSet) + WHERE pq.id = cs.GUID AND pq.id <> "" + CREATE (pq)-[:{relationship_type}]->(cs) + RETURN count(*) as count + """ + try: + result = graph.run(query_quantity) + count = result.data()[0]["count"] + logger.info(f"创建了 {count} 个 ProjectQuantity {relationship_type} CostSet 关系") + except Exception as e: + logger.error(f"创建ProjectQuantity与CostSet关系失败: {e}") + else: + logger.info("本体层中未定义ProjectQuantity到CostSet的关系,跳过创建") + + +# 处理取费表模板集(FeeTableTemplateSet) +def process_fee_table_template_set(data, root_node, entity_relationships): + # 根据JSON结构,访问costSetting数据 + if "projectData" in data and "costSetting" in data["projectData"]: + cost_setting = data["projectData"]["costSetting"] + elif "costSetting" in data: + cost_setting = data["costSetting"] + else: + logger.warning("JSON中未找到costSetting数据") + logger.info(f"JSON顶层键: {list(data.keys())}") + return + + logger.info(f"开始处理costSetting,包含 {len(cost_setting)} 个取费表模板集") + + # 只创建一个取费表模板集节点 + fee_template_set_node = Node("FeeTableTemplateSet", name="取费表模板集") + graph.create(fee_template_set_node) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type("EngineeringData", "FeeTableTemplateSet", entity_relationships) + graph.create(Relationship(root_node, relationship_type, fee_template_set_node)) + logger.info("创建FeeTableTemplateSet节点: 取费表模板集") + + # 处理每个取费表模板集 + for template_set_name, template_set_content in cost_setting.items(): + + # 直接处理取费表模板项 + if "tables" in template_set_content and isinstance(template_set_content["tables"], list): + for template_item in template_set_content["tables"]: + process_fee_table_template_item(template_item, fee_template_set_node, entity_relationships) + + +# 处理取费表模板项(FeeTableTemplateItem) +def process_fee_table_template_item(template_item, parent_node, entity_relationships): + # 提取必要属性 + name = template_item.get("name", "") + outlay_id = template_item.get("OutlayID", "") + type_name = template_item.get("类型", "") + profession = template_item.get("专业", "") + + if not name: + logger.warning("FeeTableTemplateItem缺少name") + return + + # 创建取费表模板项节点 + template_item_node = Node( + "FeeTableTemplateItem", name=name, outlayID=outlay_id, type=type_name, profession=profession + ) + + graph.create(template_item_node) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type("FeeTableTemplateSet", "FeeTableTemplateItem", entity_relationships) + graph.create(Relationship(parent_node, relationship_type, template_item_node)) + logger.info(f"创建FeeTableTemplateItem节点: {name} (OutlayID: {outlay_id})") + + # 处理取费项 + if "children" in template_item and isinstance(template_item["children"], list): + for fee_item in template_item["children"]: + process_fee(fee_item, template_item_node, entity_relationships) + + +# 处理取费(FeeCollection) +def process_fee(fee_item, parent_node, entity_relationships): + # 提取必要属性 + serial_number = fee_item.get("序号", "") + fee_name = fee_item.get("费用名称", "") + code = fee_item.get("代码", "") + rate = fee_item.get("费率(%)", "") + base = fee_item.get("取费基数", "") + remark = fee_item.get("备注", "") + + if not fee_name: + logger.warning("Fee缺少费用名称") + return + + # 创建取费节点 + fee_node = Node("FeeCollection", serialNumber=serial_number, name=fee_name, code=code) + + # 添加path属性 + if "FeeCollection" in parent_node.labels: + # 如果父节点是FeeCollection节点,使用父节点的path加上当前节点名称 + parent_path = parent_node.get("path", "") + fee_node["path"] = f"{parent_path}/{fee_name}" + else: + # 如果父节点是FeeTableTemplateItem,直接使用父节点名称作为路径的开始 + parent_name = parent_node.get("name", "") + fee_node["path"] = f"{parent_name}/{fee_name}" + + logger.info(f"为FeeCollection节点 {fee_name} 设置path: {fee_node['path']}") + + # 添加其他属性 + if rate: + fee_node["rate"] = rate + if base: + fee_node["base"] = base + if remark: + fee_node["remark"] = remark + + graph.create(fee_node) + + # 从本体层获取关系类型 + parent_label = list(parent_node.labels)[0] + relationship_type = get_relationship_type(parent_label, "FeeCollection", entity_relationships) + if relationship_type: + graph.create(Relationship(parent_node, relationship_type, fee_node)) + logger.info(f"创建Fee节点: {fee_name} (序号: {serial_number}, 代码: {code})") + else: + logger.info(f"不创建关系: {parent_node['name']} 到 {fee_name}") + + # 处理子费用项 + if "children" in fee_item and isinstance(fee_item["children"], list): + for child_fee in fee_item["children"]: + process_fee(child_fee, fee_node, entity_relationships) + + +# 处理费用表集(FeeScheduleSet) +def process_fee_schedule_set(data, root_node, entity_relationships): + """处理费用表集、费用表项和费用""" + # 检查projectCost是否存在 + if "projectData" in data and "projectCost" in data["projectData"]: + project_cost = data["projectData"]["projectCost"] + elif "projectCost" in data: + project_cost = data["projectCost"] + else: + logger.warning("JSON中未找到projectCost数据") + logger.info(f"JSON顶层键: {list(data.keys())}") + return + + logger.info(f"开始处理projectCost,包含 {len(project_cost)} 个费用表项") + + # 创建FeeScheduleSet节点 - 工程费用 + fee_schedule_set = Node("FeeScheduleSet", name="工程费用") + graph.create(fee_schedule_set) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type("EngineeringData", "FeeScheduleSet", entity_relationships) + graph.create(Relationship(root_node, relationship_type, fee_schedule_set)) + logger.info(f"创建FeeScheduleSet节点: 工程费用") + + # 处理费用表集下的费用表项 + for fee_table_name, fee_table_content in project_cost.items(): + # 创建FeeScheduleItem节点 + fee_schedule_item = Node("FeeScheduleItem", name=fee_table_name) + graph.create(fee_schedule_item) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type("FeeScheduleSet", "FeeScheduleItem", entity_relationships) + graph.create(Relationship(fee_schedule_set, relationship_type, fee_schedule_item)) + logger.info(f"创建FeeScheduleItem节点: {fee_table_name}") + + # 处理费用表项下的费用列表 + if isinstance(fee_table_content, list): + logger.info(f"FeeScheduleItem {fee_table_name} 包含 {len(fee_table_content)} 个费用项") + for fee_item in fee_table_content: + process_fee_item(fee_item, fee_schedule_item, entity_relationships) + else: + logger.warning(f"FeeScheduleItem {fee_table_name} 的内容类型未知: {type(fee_table_content)}") + + +# 处理费用项(Fee) +def process_fee_item(fee, parent_node, entity_relationships): + """处理费用项""" + # 提取必要属性 + serial_number = fee.get("序号", "") + name = fee.get("费用名称", "") + code = fee.get("代码", "") + rate = fee.get("费率(%)", "") + amount = fee.get("金额", "") + + if not name: + logger.warning("Fee缺少费用名称") + return + + # 创建Fee节点 + fee_node = Node("Fee", serialNumber=serial_number, name=name, code=code) + + # 添加path属性 + if "Fee" in parent_node.labels: + # 如果父节点是Fee节点,使用父节点的path加上当前节点名称 + parent_path = parent_node.get("path", "") + fee_node["path"] = f"{parent_path}/{name}" + else: + # 如果父节点是FeeScheduleItem,直接使用父节点名称作为路径的开始 + parent_name = parent_node.get("name", "") + fee_node["path"] = f"{parent_name}/{name}" + + logger.info(f"为Fee节点 {name} 设置path: {fee_node['path']}") + + # 添加其他属性 + if rate: + fee_node["rate"] = rate + if amount: + fee_node["amount"] = amount + + # 添加其他属性 + for key, value in fee.items(): + if key not in ["序号", "费用名称", "代码", "费率(%)", "金额", "children"] and value is not None: + if isinstance(value, (str, int, float, bool)): + fee_node[key] = value + + graph.create(fee_node) + logger.info(f"创建Fee节点: {name} (序号: {serial_number})") + + # 创建与父节点的关系 + # 从本体层获取关系类型 + parent_label = list(parent_node.labels)[0] + relationship_type = get_relationship_type(parent_label, "Fee", entity_relationships) + if relationship_type: + graph.create(Relationship(parent_node, relationship_type, fee_node)) + logger.info(f"创建关系: {parent_node['name']} {relationship_type} {name}") + else: + logger.info(f"不创建关系: {parent_node['name']} 到 {name}") + + # 处理子费用项 + if "children" in fee and fee["children"]: + children = fee["children"] + logger.info(f"Fee {name} 有 {len(children)} 个子费用项") + + for child in children: + process_fee_item(child, fee_node, entity_relationships) + + +# 处理工程属性集(ProjectPropertySet)和工程属性(ProjectProperty) +def process_project_property_set(data, root_node, entity_relationships): + # 检查projectInfo是否存在 + if "projectData" in data and "projectInfo" in data["projectData"]: + project_info = data["projectData"]["projectInfo"] + elif "projectInfo" in data: + project_info = data["projectInfo"] + else: + logger.warning("JSON中未找到projectInfo数据") + logger.info(f"JSON顶层键: {list(data.keys())}") + return + + logger.info("开始处理projectInfo") + + # 创建工程属性集节点 + property_set_node = Node("ProjectPropertySet", name="工程属性") + graph.create(property_set_node) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type("EngineeringData", "ProjectPropertySet", entity_relationships) + graph.create(Relationship(root_node, relationship_type, property_set_node)) + logger.info("创建ProjectPropertySet节点: 工程属性") + + # 为每个属性创建单独的节点 + for key, value in project_info.items(): + if value is not None: + # 处理复杂类型的值 + if isinstance(value, list): + # 对于列表类型,创建一个包含列表摘要的节点 + property_node = Node("ProjectProperty", name=key, value=f"列表({len(value)}项)") + graph.create(property_node) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type("ProjectPropertySet", "ProjectProperty", entity_relationships) + graph.create(Relationship(property_set_node, relationship_type, property_node)) + logger.info(f"创建ProjectProperty节点: {key} = 列表({len(value)}项)") + + # 为列表中的每个项创建子节点 + for i, item in enumerate(value): + if isinstance(item, dict): + # 对于字典类型的列表项,创建包含键值对的节点 + for sub_key, sub_value in item.items(): + if sub_value is not None: + sub_property_node = Node( + "ProjectProperty", name=f"{key}[{i}].{sub_key}", value=str(sub_value) + ) + graph.create(sub_property_node) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type( + "ProjectProperty", "ProjectProperty", entity_relationships + ) + graph.create(Relationship(property_node, relationship_type, sub_property_node)) + logger.info(f"创建ProjectProperty子节点: {key}[{i}].{sub_key} = {sub_value}") + else: + # 对于基本类型的列表项,创建简单节点 + sub_property_node = Node("ProjectProperty", name=f"{key}[{i}]", value=str(item)) + graph.create(sub_property_node) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type( + "ProjectProperty", "ProjectProperty", entity_relationships + ) + graph.create(Relationship(property_node, relationship_type, sub_property_node)) + logger.info(f"创建ProjectProperty子节点: {key}[{i}] = {item}") + elif isinstance(value, dict): + # 对于字典类型,创建一个包含字典摘要的节点 + property_node = Node("ProjectProperty", name=key, value=f"字典({len(value)}项)") + graph.create(property_node) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type("ProjectPropertySet", "ProjectProperty", entity_relationships) + graph.create(Relationship(property_set_node, relationship_type, property_node)) + logger.info(f"创建ProjectProperty节点: {key} = 字典({len(value)}项)") + + # 为字典中的每个键值对创建子节点 + for sub_key, sub_value in value.items(): + if sub_value is not None: + sub_property_node = Node("ProjectProperty", name=f"{key}.{sub_key}", value=str(sub_value)) + graph.create(sub_property_node) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type( + "ProjectProperty", "ProjectProperty", entity_relationships + ) + graph.create(Relationship(property_node, relationship_type, sub_property_node)) + logger.info(f"创建ProjectProperty子节点: {key}.{sub_key} = {sub_value}") + else: + # 对于基本类型,直接创建节点 + property_node = Node("ProjectProperty", name=key, value=str(value)) + graph.create(property_node) + + # 从本体层获取关系类型 + relationship_type = get_relationship_type("ProjectPropertySet", "ProjectProperty", entity_relationships) + graph.create(Relationship(property_set_node, relationship_type, property_node)) + logger.info(f"创建ProjectProperty节点: {key} = {value}") + + +# 在main函数中添加对这些函数的调用 +def main(): + # 解析本体层文件 + entity_types, entity_relationships = parse_ontology_file() + + # 创建根节点 + root_node = create_root_node() + + # 读取JSON文件 + json_file_path = "dataset/json/主网预算/output.json" + with open(json_file_path, "r", encoding="utf-8") as f: + data = json.load(f) + + # 先处理费用预览,创建CostSet节点 + process_cost_set(data, root_node, entity_relationships) + + # 再处理项目划分,创建ProjectDivisionSet和ProjectDivisionItem节点 + process_project_division_set(data, root_node, entity_relationships) + + # 处理取费表模板集 + process_fee_table_template_set(data, root_node, entity_relationships) + + # 处理费用表集 + process_fee_schedule_set(data, root_node, entity_relationships) + + # 处理工程属性集 + process_project_property_set(data, root_node, entity_relationships) + + # 建立实体间的关系 + establish_relationships(entity_relationships) + + # 统计节点和关系数量 + count_nodes_and_relationships() + + logger.info("知识图谱构建完成") + + +# 添加统计节点和关系数量的函数 +def count_nodes_and_relationships(): + # 统计节点数量 + node_count_query = """ + MATCH (n) + RETURN labels(n) AS labels, count(*) AS count + """ + node_counts = graph.run(node_count_query).data() + logger.info("节点类型统计:") + for count_info in node_counts: + labels = count_info["labels"] + count = count_info["count"] + for label in labels: + logger.info(f" {label}: {count}个节点") + + # 统计关系数量 + rel_count_query = """ + MATCH ()-[r]->() + RETURN type(r) AS type, count(*) AS count + """ + rel_counts = graph.run(rel_count_query).data() + logger.info("关系类型统计:") + for count_info in rel_counts: + rel_type = count_info["type"] + count = count_info["count"] + logger.info(f" {rel_type}: {count}个关系") + + +if __name__ == "__main__": + main() diff --git a/tools/streamlt_showcode.py b/tools/streamlt_showcode.py new file mode 100644 index 0000000..ccf276d --- /dev/null +++ b/tools/streamlt_showcode.py @@ -0,0 +1,167 @@ +import streamlit as st +import os +import sys +import json +import logging +import os +from datetime import datetime +sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + +# 获取当前时间,格式化为字符串 +now_str = datetime.now().strftime("%Y%m%d%H%M%S") + +current_file = os.path.splitext(os.path.basename(__file__))[0] +log_filename = f"{current_file}_{now_str}.log" + +logging.basicConfig( + level=logging.DEBUG, + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + handlers=[ + logging.FileHandler(os.path.join("logs", log_filename), encoding="utf-8"), + logging.StreamHandler() + ], +) + +logger = logging.getLogger(current_file) + +def setup_logger(logger_name): + """ + 设置指定名称的logger,将其级别设置为WARNING并禁用传播 + :param logger_name: logger的名称 + """ + logger = logging.getLogger(logger_name) + logger.setLevel(logging.WARNING) # 设置httpcore及其子模块的级别 + logger.propagate = False # 可选:禁用传播(防止被根logger处理) + return logger + + +logger_names = ["httpx", "openai", "langsmith.client", "neo4j", "urllib3", "httpcore"] +for name in logger_names: + setup_logger(name) + +from src.config import Config +from src.document_loader import load_file +from src.embedding_client import EmbeddingClient +from src.multi_llm_client import MultiAPIKeyChatOpenAI +from src.code_executor import CodeExecutor +from src.neo4j_raw_retriever import Neo4jRawRetriever +from src.prompt_manager import PromptManager +from src.project import ProjectBuilder, ProjectToolkit +from src.project_implementation import ProjectToolkitNeo4j +from src.code_executor import CodeExecutor + +config = Config() + +business_structure = load_file(config.business_object_structure_path) +bowei_api_docs = load_file(config.bowei_api_docs_path) + +#llm_client = MultiAPIKeyChatOpenAI(config.openai) + +llm_client_coder = MultiAPIKeyChatOpenAI(config.openai_coder) + +prompt_manager = PromptManager() + +neo4j_conf = config.neo4j_conf +embedding_conf = config.embedding + +embedding_client = EmbeddingClient(embedding_conf) + +# 创建Neo4j检索器 +knowledge_retriever = Neo4jRawRetriever(neo4j_conf) + +ProjectBuilder.register(ProjectToolkitNeo4j, knowledge_retriever.driver) + +code_executor = CodeExecutor(prompt_manager.prompts, llm_client_coder, config.max_retries) + +def load_jsonl(file_path): + """加载JSONL文件并返回JSON记录列表""" + records = [] + try: + with open(file_path, 'r', encoding='utf-8') as file: + for line in file: + if line.strip(): + records.append(json.loads(line)) + return records + except Exception as e: + st.error(f"加载文件失败: {str(e)}") + return [] + +def run_code(data): + global code_executor + + """运行JSON记录中的代码并返回结果""" + if not data or 'code' not in data: + return { + "code": 40000, + "message": "没有可执行的代码", + "status": False, + "data": None + } + + result = code_executor.execute_code(data['code']) + +def main(): + st.set_page_config(layout="wide", page_title="JSONL查看器") + + st.title("JSONL文件查看器") + + # 设置默认文件路径 + default_file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "../tests", "code.jsonl") + + # 文件路径输入 + file_path = st.text_input("JSONL文件路径", value=default_file_path) + + if not os.path.exists(file_path): + st.warning(f"文件不存在: {file_path}") + return + + # 加载JSONL文件 + records = load_jsonl(file_path) + + if not records: + st.warning("没有找到有效的记录") + return + + # 创建两列布局 + col1, col2 = st.columns([1, 3]) + + # 左侧列表 + with col1: + st.subheader("记录列表") + selected_index = None + + for i, record in enumerate(records): + if st.button(record.get('name', f"记录 {i+1}"), key=f"btn_{i}"): + selected_index = i + + # 右侧详细信息 + with col2: + if 'selected_index' not in st.session_state: + st.session_state.selected_index = 0 + + if selected_index is not None: + st.session_state.selected_index = selected_index + + if st.session_state.selected_index < len(records): + selected_record = records[st.session_state.selected_index] + + st.subheader(f"查询问题: {selected_record.get('name', '无名称')}") + st.info(selected_record.get('query', '无查询信息')) + + st.subheader("代码") + st.code(selected_record.get('code', '无代码'), language='python') + + # 运行代码按钮 + if st.button("运行代码"): + with st.spinner('正在执行代码...'): + result = run_code(selected_record) + + st.subheader("运行结果") + if result.get('status'): + st.success("执行成功") + st.json(result.get('data')) + else: + st.error(f"执行失败: {result.get('message', '未知错误')}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/supplement_kg.py b/tools/supplement_kg.py similarity index 95% rename from supplement_kg.py rename to tools/supplement_kg.py index 3e13eb1..1e1fec5 100644 --- a/supplement_kg.py +++ b/tools/supplement_kg.py @@ -1,117 +1,117 @@ -import json -from typing import Dict, List, Any -import copy - - -class ExpenseProcessor: - def __init__(self): - pass - - @staticmethod - def calculate_parent_costs(node: Dict[str, Any]) -> List[Dict[str, Any]]: - if "children" not in node: - if "id" in node and "cost" in node: - return [{"id": node["id"], "cost": node["cost"]}] - elif "cost" in node: - return [{"cost": node["cost"]}] - return [] - - result_nodes = [] - processed_ids = set() - - for child in node["children"]: - child_costs = ExpenseProcessor.calculate_parent_costs(child) - - for cost_item in child_costs: - if "id" in cost_item: - found = False - for existing in result_nodes: - if "id" in existing and existing["id"] == cost_item["id"]: - existing["cost"] = str(float(existing["cost"]) + float(cost_item["cost"])) - found = True - break - if not found: - result_nodes.append(copy.deepcopy(cost_item)) - processed_ids.add(cost_item["id"]) - else: - found = False - for existing in result_nodes: - if "id" not in existing: - existing["cost"] = str(float(existing["cost"]) + float(cost_item["cost"])) - found = True - break - if not found: - result_nodes.append(copy.deepcopy(cost_item)) - - return result_nodes - - @staticmethod - def process_node(node: Dict[str, Any]) -> Dict[str, Any]: - result = copy.deepcopy(node) - if "children" not in node or not node["children"]: - return result - cost_items = ExpenseProcessor.calculate_parent_costs(node) - if cost_items: - result["sum"] = cost_items - result["children"] = [ExpenseProcessor.process_node(child) for child in node["children"]] - return result - - @staticmethod - def process_expense_preview(expense_preview: Dict[str, Any]) -> Dict[str, Any]: - result = copy.deepcopy(expense_preview) - for category_key, category_value in expense_preview.items(): - for subcategory_key, subcategory_value in category_value.items(): - if isinstance(subcategory_value, list): - result[category_key][subcategory_key] = [ - ExpenseProcessor.process_node(item) for item in subcategory_value - ] - return result - - @classmethod - def load_and_process_from_file(cls, input_path: str, output_path: str = None) -> Dict[str, Any]: - """ - 从文件加载 JSON 并处理 - :param input_path: 输入文件路径 - :param output_path: 输出文件路径(可选) - :return: 处理后的完整数据 - """ - with open(input_path, "r", encoding="utf-8") as f: - data = json.load(f) - - if "projectData" in data and "expensePreview" in data["projectData"]: - processed_data = copy.deepcopy(data) - processed_data["projectData"]["expensePreview"] = cls.process_expense_preview( - data["projectData"]["expensePreview"] - ) - - if output_path: - with open(output_path, "w", encoding="utf-8") as f: - json.dump(processed_data, f, ensure_ascii=False, indent=4) - print(f"处理完成,结果已保存到 {output_path}") - return processed_data - else: - raise ValueError("未找到 projectData.expensePreview 路径") - - @classmethod - def process_raw_data(cls, raw_data: Dict[str, Any]) -> Dict[str, Any]: - """ - 直接处理原始数据(不涉及文件读写) - :param raw_data: 原始数据,格式应包含 projectData.expensePreview - :return: 处理后的数据 - """ - if "projectData" in raw_data and "expensePreview" in raw_data["projectData"]: - processed_data = copy.deepcopy(raw_data) - processed_data["projectData"]["expensePreview"] = cls.process_expense_preview( - raw_data["projectData"]["expensePreview"] - ) - return processed_data - else: - raise ValueError("未找到 projectData.expensePreview 路径") - - -if __name__ == "__main__": - input_file = "架空_clean.json" # 输入 JSON 文件路径 - output_file = "output.json" # 输出 JSON 文件路径 - - # 使用类方法加载并处理 JSON 文件 - ExpenseProcessor.load_and_process_from_file(input_file, output_file) +import json +from typing import Dict, List, Any +import copy + + +class ExpenseProcessor: + def __init__(self): + pass + + @staticmethod + def calculate_parent_costs(node: Dict[str, Any]) -> List[Dict[str, Any]]: + if "children" not in node: + if "id" in node and "cost" in node: + return [{"id": node["id"], "cost": node["cost"]}] + elif "cost" in node: + return [{"cost": node["cost"]}] + return [] + + result_nodes = [] + processed_ids = set() + + for child in node["children"]: + child_costs = ExpenseProcessor.calculate_parent_costs(child) + + for cost_item in child_costs: + if "id" in cost_item: + found = False + for existing in result_nodes: + if "id" in existing and existing["id"] == cost_item["id"]: + existing["cost"] = str(float(existing["cost"]) + float(cost_item["cost"])) + found = True + break + if not found: + result_nodes.append(copy.deepcopy(cost_item)) + processed_ids.add(cost_item["id"]) + else: + found = False + for existing in result_nodes: + if "id" not in existing: + existing["cost"] = str(float(existing["cost"]) + float(cost_item["cost"])) + found = True + break + if not found: + result_nodes.append(copy.deepcopy(cost_item)) + + return result_nodes + + @staticmethod + def process_node(node: Dict[str, Any]) -> Dict[str, Any]: + result = copy.deepcopy(node) + if "children" not in node or not node["children"]: + return result + cost_items = ExpenseProcessor.calculate_parent_costs(node) + if cost_items: + result["sum"] = cost_items + result["children"] = [ExpenseProcessor.process_node(child) for child in node["children"]] + return result + + @staticmethod + def process_expense_preview(expense_preview: Dict[str, Any]) -> Dict[str, Any]: + result = copy.deepcopy(expense_preview) + for category_key, category_value in expense_preview.items(): + for subcategory_key, subcategory_value in category_value.items(): + if isinstance(subcategory_value, list): + result[category_key][subcategory_key] = [ + ExpenseProcessor.process_node(item) for item in subcategory_value + ] + return result + + @classmethod + def load_and_process_from_file(cls, input_path: str, output_path: str = None) -> Dict[str, Any]: + """ + 从文件加载 JSON 并处理 + :param input_path: 输入文件路径 + :param output_path: 输出文件路径(可选) + :return: 处理后的完整数据 + """ + with open(input_path, "r", encoding="utf-8") as f: + data = json.load(f) + + if "projectData" in data and "expensePreview" in data["projectData"]: + processed_data = copy.deepcopy(data) + processed_data["projectData"]["expensePreview"] = cls.process_expense_preview( + data["projectData"]["expensePreview"] + ) + + if output_path: + with open(output_path, "w", encoding="utf-8") as f: + json.dump(processed_data, f, ensure_ascii=False, indent=4) + print(f"处理完成,结果已保存到 {output_path}") + return processed_data + else: + raise ValueError("未找到 projectData.expensePreview 路径") + + @classmethod + def process_raw_data(cls, raw_data: Dict[str, Any]) -> Dict[str, Any]: + """ + 直接处理原始数据(不涉及文件读写) + :param raw_data: 原始数据,格式应包含 projectData.expensePreview + :return: 处理后的数据 + """ + if "projectData" in raw_data and "expensePreview" in raw_data["projectData"]: + processed_data = copy.deepcopy(raw_data) + processed_data["projectData"]["expensePreview"] = cls.process_expense_preview( + raw_data["projectData"]["expensePreview"] + ) + return processed_data + else: + raise ValueError("未找到 projectData.expensePreview 路径") + + +if __name__ == "__main__": + input_file = "dataset/json/主网预算/架空_clean.json" # 输入 JSON 文件路径 + output_file = "dataset/json/主网预算/output.json" # 输出 JSON 文件路径 + + # 使用类方法加载并处理 JSON 文件 + ExpenseProcessor.load_and_process_from_file(input_file, output_file) diff --git a/tools/xml_to_json.py b/tools/xml_to_json.py new file mode 100644 index 0000000..bde305d --- /dev/null +++ b/tools/xml_to_json.py @@ -0,0 +1,206 @@ +import chardet +import xml.etree.ElementTree as ET +import json +import re + +def clean_bracketed_strings(input_str: str) -> str: + # 替换【'xxx'】为【xxx】 + result = re.sub(r"【'([^']+)'】", r"【\1】", input_str) + # 替换【['xxx']】为【xxx】 + result = re.sub(r"【\['([^']+)'\]】", r"【\1】", result) + # 替换【['xxx','yyy']】为【xxx,yyy】(多个项的情况) + result = re.sub(r"【\[((?:'[^']+',?)+)\]】", lambda m: "【" + m.group(1).replace("'", "") + "】", result) + return result + + +def read_xml_as_string(file_path): + # 先读取部分字节探测编码 + with open(file_path, 'rb') as f: + raw_data = f.read() + result = chardet.detect(raw_data) + encoding = result['encoding'] + + # 使用探测到的编码重新读取为字符串 + return raw_data.decode(encoding) + +def parse_keyword(keyword, indicator_name): + # 特殊处理:电压等级 + # if indicator_name == "电压等级": + # return {"映射规则": "1", "指标映射": [keyword]} + + # 处理范围表达式(包含"||"分隔符) + if "||" in keyword: + parts = keyword.split("||") + table_rows = [] + all_codes = [] + + for part in parts: + if "@@" not in part: + continue + codes_str, value = part.split("@@", 1) + code_ranges = codes_str.split("、") + + for code_range in code_ranges: + # 处理连续编号(如YX5-67~69) + if "~" in code_range: + prefix, range_part = code_range.rsplit("-", 1) + start_str, end_str = range_part.split("~") + try: + start = int(start_str) + end = int(end_str) + for num in range(start, end + 1): + all_codes.append(f"{prefix}-{num}") + except ValueError: + all_codes.append(code_range) + else: + all_codes.append(code_range) + + table_rows.append(f"| {codes_str} | {value} |") + + rule_table = "| 资源识别规则 | 指标值 |\n|-------|-------|\n" + "\n".join(table_rows) + return {"映射规则": rule_table, "指标映射": all_codes} + + # 处理数学公式(包含"/"和括号) + if "/" in keyword and "(" in keyword and ")" in keyword: + # 提取分子(括号前部分) + molecule = keyword.split("/")[0].strip() + + # 提取分母(括号内部分) + denominator_start = keyword.find("(") + 1 + denominator_end = keyword.find(")") + denominator_expr = keyword[denominator_start:denominator_end] + + # 分割分母中的加法项 + denominator_items = [item.strip() for item in denominator_expr.split("+")] + return {"映射规则": keyword, "指标映射": [molecule] + denominator_items} + + # 处理加法表达式 + if "+" in keyword: + items = [item.strip() for item in keyword.split("+")] + return {"映射规则": keyword, "指标映射": items} + + # 默认处理(普通关键字) + return {"映射规则": keyword, "指标映射": [keyword]} + + +def xml_to_json(xml_content, output_path): + root = ET.fromstring(xml_content) + records = root.findall('.//records/record') + result = [] + + # 定义需要特殊处理的数据来源类型 + scope_based_sources = ["主材单价", "主材参数", "主材数量", "定额参数", "定额数量", "工程费用"] + direct_sources = ["报表指标", "指标库"] + project_division = ["项目划分费用"] + + + for record in records: + unit = record.get("单位") + unit_type = record.get("单价类型") + order = record.get("序号") + extraction_method = record.get("提取方式") + indicator_type = record.get("指标类型") + index_extraction_scope = record.get("指标提取范围") + data_sources = record.get("数据来源") + indicator_name = record.get("指标名称") + keyword = record.get("关键字") + parsed = parse_keyword(keyword, indicator_name) + + base_item = { + "指标名称": indicator_name, + "code": "", + "单位": unit, + "单价类型": unit_type, + "序号": order, + "提取方式": extraction_method, + "指标类型": indicator_type, + "数据来源": data_sources + } + + if data_sources in direct_sources: + base_item["指标描述"] = { + "指标映射": parsed["指标映射"], + "映射规则": parsed["映射规则"] + } + result.append(base_item) + + elif data_sources in project_division: + mapping_desc = f"从【{index_extraction_scope}】项目划分中获取名称属于【{indicator_name}】的费用" + base_item["指标描述"] = { + "指标映射": mapping_desc, + "映射规则": parsed["映射规则"] + } + result.append(base_item) + + elif data_sources in scope_based_sources: + temp0 = parsed["指标映射"] + temp1 = parsed["映射规则"] + + if index_extraction_scope: + # 取数据来源的最后两个字(如"单价"、"参数"等) + temp2 = data_sources[-2:] + # 取数据来源的开头两个字(如"定额"、"清单"等) + temp3 = data_sources[0:2] + if temp3 in ["清单", "定额", "人材机"]: + mapping_desc = f"从【{index_extraction_scope}】及其子孙项目划分中查找编码中包含【{temp0}】的所有【{temp3}】的【{temp2}】之和" + elif temp3 in ["主材", "设备"]: + mapping_desc = f"从【{index_extraction_scope}】及其子孙项目划分中查找名称中包含【{temp0}】的所有【{temp3}】的【{temp2}】之和" + else: + mapping_desc = f"从【{data_sources}】中获取{temp0}的属性" + + base_item["指标描述"] = { + "指标映射": mapping_desc, + "映射规则": temp1 + } + result.append(base_item) + + else: + # 处理未定义的数据来源类型 + base_item["指标描述"] = { + "指标映射": parsed["指标映射"], + "映射规则": parsed["映射规则"] + } + result.append(base_item) + + for item in result: + desc = item.get("指标描述", {}) + mapping_rule = desc.get("映射规则") + indicator_map = desc.get("指标映射") + + if isinstance(mapping_rule, str) and isinstance(indicator_map, str): + match = re.search(r"@([^\.]+)\.", mapping_rule) + if match: + source = match.group(1) + # 替换【工程费用】为提取的 source(如【其他费用】) + new_mapping = re.sub(r"【.*?】", f"【{source}】", indicator_map) + new_mapping = re.sub(r"@[^.]+\.", "", new_mapping) + item["指标描述"]["指标映射"] = new_mapping.replace('[', '【').replace(']', '】') + if isinstance(indicator_map, list): + first_elem = indicator_map[0] + if first_elem.startswith("(") and first_elem.endswith(")"): + del indicator_map[0] + + # 保存为 JSON 文件 + with open(output_path, 'w', encoding='utf-8') as f: + json.dump(result, f, ensure_ascii=False, indent=2) + + for item in result: + desc = item.get("指标描述", {}) + mapping_rule = desc.get("映射规则") + indicator_map = desc.get("指标映射") + + if isinstance(indicator_map, str): + new_mapping = clean_bracketed_strings(indicator_map) + item["指标描述"]["指标映射"] = new_mapping + + # 保存为 JSON 文件 + with open(output_path, 'w', encoding='utf-8') as f: + json.dump(result, f, ensure_ascii=False, indent=2) + + return "结果已保存" + + +xml_content = read_xml_as_string('dataset/主网架空线路造价分析指标.xml') +json_output = xml_to_json(xml_content, output_path= "./tests/zhibiao.json") +print("转换完毕!") +