﻿<?xml version="1.0" encoding="utf-8"?>
<Report>
  <Version>3.65.1</Version>
  <BuildNumber>36508</BuildNumber>
  <Type>15</Type>
  <Entity>2</Entity>
  <DataSourceMask>TotalsStartEnd, Node, NodeMeasurePoints, NodeConsumption, Hierarchy</DataSourceMask>
  <MeasurePointCountHeat>4</MeasurePointCountHeat>
  <MeasurePointCountHotWater>4</MeasurePointCountHotWater>
  <MeasurePointCountColdWater>0</MeasurePointCountColdWater>
  <MeasurePointCountSewage>0</MeasurePointCountSewage>
  <MeasurePointCountSteam>0</MeasurePointCountSteam>
  <MeasurePointCountGas>0</MeasurePointCountGas>
  <MeasurePointCountElectricity>0</MeasurePointCountElectricity>
  <MeasurePointCountControl>0</MeasurePointCountControl>
  <SectionsMask>1</SectionsMask>
  <EstimationAlgorithm>1</EstimationAlgorithm>
  <DailyAverageCalculatingPeriod>72</DailyAverageCalculatingPeriod>
  <DeviceModel>0</DeviceModel>
  <ReportUnits>0</ReportUnits>
  <Engine>0</Engine>
  <Template>﻿&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;XtraReportsLayoutSerializer SerializerVersion="25.1.5.0" Ref="1" ControlType="DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v25.1, Version=25.1.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Name="BaseReport" Dpi="254" ScriptsSource="using DevExpress.XtraPrinting.BarCode;&amp;#xD;&amp;#xA;using System.Collections.Generic;&amp;#xD;&amp;#xA;using System.Text;&amp;#xD;&amp;#xA;using System.Data;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;// Ссылка на экземпляр формируемого отчета &amp;#xD;&amp;#xA;private XtraReport report = null;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;// Набор значений из строки итого&amp;#xD;&amp;#xA;private Dictionary&amp;lt;string, double&amp;gt; rowFooterValues = new Dictionary&amp;lt;string, double&amp;gt;();&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;// Строка с форматом вывода даты/времени&amp;#xD;&amp;#xA;private string formatString = &amp;quot;&amp;quot;;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;// Парамер задаваемый пользователем&amp;#xD;&amp;#xA;private string userParameter = &amp;quot;&amp;quot;;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;private void BaseReport_DataSourceDemanded(object sender, System.EventArgs e) &amp;#xD;&amp;#xA;{&amp;#xD;&amp;#xA;&amp;#x9;// Ссылка на экземпляр формируемого отчета &amp;#xD;&amp;#xA;&amp;#x9;this.report = (XtraReport)sender;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// Возможно параметров нет, например, для реестра&amp;#xD;&amp;#xA;&amp;#x9;if (this.report.Parameters[&amp;quot;DATA_TYPE&amp;quot;] != null)&amp;#xD;&amp;#xA;&amp;#x9;{&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;int dataType = (int)this.report.Parameters[&amp;quot;DATA_TYPE&amp;quot;].Value;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;// Создаем строку формата для вывода даты/времени в ячейке DataDate секции Detail, &amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;// если ее пользователь СВЯЗАЛ с вычисляемым полем calculatedFieldDataDate&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;// Месячные данные&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;if (dataType == 32) &amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;this.formatString = &amp;quot;{0:MMM yyyy}&amp;quot;;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;// Суточные данные&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;else if (dataType == 64)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;&amp;#x9;this.formatString = &amp;quot;{0:dd.MM.yyyy}&amp;quot;;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;// Часовые данные&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;else if (dataType == 128)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;&amp;#x9;this.formatString = &amp;quot;{0:dd.MM.yy HH:mm}&amp;quot;;&amp;#xD;&amp;#xA;&amp;#x9;}&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// Получаем значение параметра задаваемого пользователем при формировании отчета&amp;#xD;&amp;#xA;&amp;#x9;// Переменную userParameter можно использовать в обработчиках события 'Получить значение' &amp;#xD;&amp;#xA;&amp;#x9;// для вычисляемых полей создаваемых в любых узлах.&amp;#xD;&amp;#xA;&amp;#x9;if (this.report.Parameters[&amp;quot;USER_PARAMETER&amp;quot;] != null)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;this.userParameter = Convert.ToString(this.report.Parameters[&amp;quot;USER_PARAMETER&amp;quot;].Value);&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// Проверяем наличие контрола с итогами&amp;#xD;&amp;#xA;&amp;#x9;// Контрол должен находиться в секции ReportFooter и иметь имя rowFooter&amp;#xD;&amp;#xA;&amp;#x9;XRTableRow rowFooterControl = (this.report.FindControl(&amp;quot;rowFooter&amp;quot;, true) as XRTableRow);&amp;#xD;&amp;#xA;&amp;#x9;if (rowFooterControl != null)&amp;#xD;&amp;#xA;&amp;#x9;{&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;// Обнуляем список итоговых значений&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;foreach(XRTableCell cell in rowFooterControl.Cells)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;{&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;&amp;#x9;this.rowFooterValues[cell.Name] = 0;&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;&amp;#x9;cell.Scripts.OnSummaryCalculated = &amp;quot;OnSummaryCalculated&amp;quot;;&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;}&amp;#xD;&amp;#xA;&amp;#x9;}&amp;#xD;&amp;#xA;}&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;// Возвращает результат вычисляемого поля calculatedFieldDataDate в нужном формате&amp;#xD;&amp;#xA;private void calculatedFieldDataDate_GetValue(object sender, DevExpress.XtraReports.UI.GetValueEventArgs e) &amp;#xD;&amp;#xA;{&amp;#xD;&amp;#xA;&amp;#x9;// Возможно параметров c типом дат нет, например, для реестра, тогда formatString будет пустой&amp;#xD;&amp;#xA;&amp;#x9;if (String.IsNullOrEmpty(this.formatString))&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;return;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;DataRowView dataRowView = (e.Row as DataRowView);&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;if (dataRowView == null)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;return;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;if (!dataRowView.DataView.Table.Columns.Contains(&amp;quot;DataDate&amp;quot;))&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;return;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// Получаем значение, которое является результатом вычисляемого поля&amp;#xD;&amp;#xA;&amp;#x9;e.Value = String.Format(this.formatString, dataRowView.Row[&amp;quot;DataDate&amp;quot;]);&amp;#xD;&amp;#xA;}&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;// Меняем формат вывода дат отчетного периода в заголовке отчета в зависимости от типа данных&amp;#xD;&amp;#xA;private void labelReportPeriod_BeforePrint(object sender, System.ComponentModel.CancelEventArgs e) &amp;#xD;&amp;#xA;{&amp;#xD;&amp;#xA;&amp;#x9;if (this.report == null)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;return;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;if (this.report.Parameters[&amp;quot;DATE_START&amp;quot;] != null &amp;amp;&amp;amp; ((XRLabel)sender).Name == &amp;quot;labelDateFrom&amp;quot;)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;labelDateFrom.Text = String.Format(this.formatString, (DateTime)this.report.Parameters[&amp;quot;DATE_START&amp;quot;].Value);&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;if (this.report.Parameters[&amp;quot;DATE_END&amp;quot;] != null &amp;amp;&amp;amp; ((XRLabel)sender).Name == &amp;quot;labelDateTo&amp;quot;)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;labelDateTo.Text = String.Format(this.formatString, (DateTime)this.report.Parameters[&amp;quot;DATE_END&amp;quot;].Value);&amp;#xD;&amp;#xA;}&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;// Все ячейки в строке итого подписаны на событие Summary Calculated (Вычисление итога завершено).&amp;#xD;&amp;#xA;// Скрипт OnSummaryCalculated вызывается для каждой колонки, когда для нее подсчитана сумма.&amp;#xD;&amp;#xA;private void OnSummaryCalculated(object sender, DevExpress.XtraReports.UI.TextFormatEventArgs e) &amp;#xD;&amp;#xA;{&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// e.Text - содержит отформатированное (округленное) значение накопленной суммы, &amp;#xD;&amp;#xA;&amp;#x9;// e.Value - содержит истинное значение накопленной суммы.&amp;#xD;&amp;#xA;&amp;#x9;double value = 0;&amp;#xD;&amp;#xA;&amp;#x9;double.TryParse(e.Text, out value);&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// Проставляем прочерк для пустых полей в строке Итого&amp;#xD;&amp;#xA;&amp;#x9;if (String.IsNullOrEmpty(e.Text))&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;e.Text = &amp;quot; - &amp;quot;;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// Наименование ячейки, для которой поднято событие об окончании расчета суммы&amp;#xD;&amp;#xA;&amp;#x9;string cellName = ((XRControl)sender).Name;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// Запоминаем вычисленную сумму для ее последующей записи в штрих-код&amp;#xD;&amp;#xA;&amp;#x9;this.rowFooterValues[cellName] = value;&amp;#xD;&amp;#xA;}&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;// Заполняем штрих-код в обработчике события Печать на странице&amp;#xD;&amp;#xA;private void barCode_PrintOnPage(object sender, DevExpress.XtraReports.UI.PrintOnPageEventArgs e) &amp;#xD;&amp;#xA;{&amp;#xD;&amp;#xA;&amp;#x9;SetBarCodeValue();&amp;#xD;&amp;#xA;}&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;// Записываем информацию в штрих-код&amp;#xD;&amp;#xA;private void SetBarCodeValue() &amp;#xD;&amp;#xA;{&amp;#xD;&amp;#xA;&amp;#x9;if (this.report == null || this.report.DataSource == null) &amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;return;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// Проверяем наличие контрола со штрих-кодом. &amp;#xD;&amp;#xA;&amp;#x9;// Контрол должен иметь имя barCode&amp;#xD;&amp;#xA;&amp;#x9;XRControl barcode = this.report.FindControl(&amp;quot;barCode&amp;quot;, true);&amp;#xD;&amp;#xA;&amp;#x9;if (barcode == null) &amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;return;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;string barText = &amp;quot;&amp;quot;;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// Источник данных отчета&amp;#xD;&amp;#xA;&amp;#x9;DataSet dataSet = (DataSet)this.report.DataSource;&amp;#xD;&amp;#xA;&amp;#x9;if (dataSet.Tables.Contains(&amp;quot;Объект учета&amp;quot;))&amp;#xD;&amp;#xA;&amp;#x9;{&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;DataTable table = dataSet.Tables[&amp;quot;Объект учета&amp;quot;];&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;if (table.Rows.Count == 0)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;&amp;#x9;return;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;DataRow row = table.Rows[0];&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;// Информация из 'шапки' отчета, котрая будет записана в штрих-код&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;barText =  &amp;quot;Title:&amp;quot; + row[&amp;quot;NodeTitle&amp;quot;]; &amp;#x9;&amp;#xD;&amp;#xA;&amp;#x9;}&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;if (this.report.Parameters[&amp;quot;DATE_START&amp;quot;] != null)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;barText += &amp;quot;\nFrom:&amp;quot; + String.Format(this.formatString, this.report.Parameters[&amp;quot;DATE_START&amp;quot;].Value);&amp;#x9;// дата начала отчетного периода&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;if (this.report.Parameters[&amp;quot;DATE_END&amp;quot;] != null)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;barText += &amp;quot;\nTo:&amp;quot; + String.Format(this.formatString, this.report.Parameters[&amp;quot;DATE_END&amp;quot;].Value);&amp;#x9;// дата окончания отчетного периода&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// В QRCode можно записать до 4296 символов или 2953 байт или 7089 цифр (свойство Версия = 'Версия 40 (177x177)')&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// Проверяем наличие строки с итогами. &amp;#xD;&amp;#xA;&amp;#x9;// Строка должна иметь имя rowFooter&amp;#xD;&amp;#xA;&amp;#x9;XRTableRow rowFooterControl = (this.report.FindControl(&amp;quot;rowFooter&amp;quot;, true) as XRTableRow);&amp;#xD;&amp;#xA;&amp;#x9;if (rowFooterControl != null)&amp;#xD;&amp;#xA;&amp;#x9;{&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;// Добавляем информацию из строки Итого по формату &amp;lt;наименование ячейки&amp;gt;:&amp;lt;значение&amp;gt;&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;foreach(XRTableCell cell in rowFooterControl.Cells)&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;{&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;&amp;#x9;// Пропускаем колонки, по которым не вычислялись итоги&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;&amp;#x9;if(cell.DataBindings.Count == 0 || String.IsNullOrEmpty(cell.Scripts.OnSummaryCalculated))&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;&amp;#x9;&amp;#x9;continue;&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;&amp;#x9;barText += String.Format(&amp;quot;\n{0}:{1}&amp;quot;, cell.Name, rowFooterValues[cell.Name]);&amp;#xD;&amp;#xA;&amp;#x9;&amp;#x9;}&amp;#xD;&amp;#xA;&amp;#x9;}&amp;#xD;&amp;#xA;&amp;#xD;&amp;#xA;&amp;#x9;// Информацию в штрих-код записываем в виде строки&amp;#xD;&amp;#xA;&amp;#x9;((XRBarCode)barcode).Text = barText;&amp;#xD;&amp;#xA;}&amp;#xD;&amp;#xA;" SnapGridSize="15.875" ReportUnit="TenthsOfAMillimeter" Margins="64, 69, 121.1667, 525.26074" PaperKind="A4" PageWidthF="2100" PageHeightF="2970" Version="25.1" RequestParameters="false" DataSource="#Ref-0" Font="Times New Roman, 9.75pt" Tag_type="System.String" Tag="9|28676"&gt;
  &lt;FormattingRuleSheet&gt;
    &lt;Item1 Ref="2" Name="HourFormat" DataMember="Потребление" Condition="[Parameters.DATA_TYPE] == 128"&gt;
      &lt;Formatting Ref="3" BorderStyle="Inset" StringFormat="Near;Near;0;None;Character;Default" /&gt;
    &lt;/Item1&gt;
  &lt;/FormattingRuleSheet&gt;
  &lt;Parameters&gt;
    &lt;Item1 Ref="5" Description="Дата начала отчетного периода" ValueInfo="2026-02-24" Name="DATE_START" Type="#Ref-4" /&gt;
    &lt;Item2 Ref="6" Description="Дата окончания отчетного периода" ValueInfo="2026-02-24" Name="DATE_END" Type="#Ref-4" /&gt;
    &lt;Item3 Ref="8" Description="Идентификатор учетной записи" ValueInfo="0" Name="ACCOUNT_ID" Type="#Ref-7" /&gt;
    &lt;Item4 Ref="9" Description="Тип данных" ValueInfo="0" Name="DATA_TYPE" Type="#Ref-7" /&gt;
    &lt;Item5 Ref="11" Description="Параметр отчета задаваемый пользователем при формировании отчета." Name="USER_PARAMETER" /&gt;
    &lt;Item6 Ref="13" Description="Признак использования расчетного часа при получении показаний интеграторов." ValueInfo="False" Name="UseReportingHour" Type="#Ref-12" /&gt;
    &lt;Item7 Ref="14" Description="Порядковый номер секции объекта учета" ValueInfo="1" AllowNull="true" Name="SectionOrderNumber" Type="#Ref-7" /&gt;
    &lt;Item8 Ref="15" Description="Проверка" Name="test" Type="#Ref-7" /&gt;
    &lt;Item9 Ref="16" Description="Не отображать скрытые параметры." ValueInfo="False" Name="HideNotSelectedParameters" Type="#Ref-12" /&gt;
    &lt;Item10 Ref="17" Description="Удельная теплота сгорания газа по паспорту" Name="ПГ" Type="#Ref-7" /&gt;
    &lt;Item11 Ref="19" Description="КПД котла на котельной" Name="КПД" Type="#Ref-18" /&gt;
    &lt;Item12 Ref="20" Name="Номер_секции" Type="#Ref-7" /&gt;
    &lt;Item13 Ref="21" Name="parameter1" /&gt;
    &lt;Item14 Ref="22" Name="parameter2" /&gt;
    &lt;Item15 Ref="23" Description="Отображаемое имя пользователя" Name="ACCOUNT_DISPLAY_NAME" /&gt;
  &lt;/Parameters&gt;
  &lt;CalculatedFields&gt;
    &lt;Item1 Ref="24" Name="calculatedFieldDataDate" FieldType="DateTime" DataMember="ArchiveParent"&gt;
      &lt;Scripts Ref="25" OnGetValue="calculatedFieldDataDate_GetValue" /&gt;
    &lt;/Item1&gt;
    &lt;Item2 Ref="26" Name="currentDataTime" FieldType="DateTime" Expression="LocalDateTimeNow()" DataMember="ArchiveParent" /&gt;
    &lt;Item3 Ref="27" Name="systemHeat" FieldType="String" Expression="'Система отопления: ' + Iif([IsOpenSystem], 'Открытая', 'Закрытая') + '.    Подключение: ' + [HeatSystemType] + '.'" DataMember="ArchiveParent.Section" /&gt;
    &lt;Item4 Ref="28" Name="heatDevice" FieldType="String" Expression="'Тепловычислитель: ' + [HeatMeterTitle] + '     №  ' + [SerialNumber]" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета)" /&gt;
    &lt;Item5 Ref="29" Name="toPresentation" FieldType="String" Expression="FormatString('Тепловая энергия к начислению: &amp;#xA; &amp;#xA;Q общее = Qот + Qпотери - Qгвс = {0:F3} Гкал,&amp;#xA;G общее = Gгвс + Gпотери = {1:F3} Гкал',&amp;#xA;&amp;#xA;Sum(IsNull([Section].[Section_Heat].[Q],0)) &amp;#xA;&amp;#x9;- Sum(IsNull([Section].[Section_HotWater].[Q],0)) &amp;#xA;&amp;#x9; - [Section].[Section_HotWater].[Section_HotWater_CalculatedValuesRelation].[Section_HotWater_ContingencyConsumptionValuesRelation].[Q] &amp;#xA;&amp;#x9;  - [Section].[Section_HotWater].[Section_HotWater_CalculatedValuesRelation].[Section_HotWater_WithoutDataConsumptionValuesRelation].[Q]&amp;#xA;&amp;#x9;&amp;#x9;+ ([Section].[Section_Heat].[NormHourHeatLoss] * [Section].[Section_Heat].[ReportPeriodDuration]),&amp;#xA;&amp;#xA;Sum(IsNull([Section].[Section_HotWater].[M], 0))&amp;#xA;&amp;#x9;&amp;#x9;&amp;#x9;&amp;#x9;+[Section].[Section_HotWater].[Section_HotWater_CalculatedValuesRelation].[Section_HotWater_ContingencyConsumptionValuesRelation].[M]&amp;#xA;&amp;#x9;&amp;#x9;&amp;#x9;&amp;#x9;&amp;#x9;&amp;#x9;+[Section].[Section_HotWater].[Section_HotWater_CalculatedValuesRelation].[Section_HotWater_WithoutDataConsumptionValuesRelation].[M]&amp;#xA;+ ([Section].[Section_HotWater].[NormHourHeatLoss] * [Section].[Section_HotWater].[ReportPeriodDuration])&amp;#xA;)" DataMember="ArchiveParent" /&gt;
    &lt;Item6 Ref="30" Name="Qotopl" Expression="[HeatLoss]" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета)" /&gt;
    &lt;Item7 Ref="31" Name="ИтогоГкал" Expression="Sum(IsNull([Section].[Section_Heat].[Q],0))  &amp;#xA;   +[CalculatedValuesArchiveParent].[Потребления за время действия НС_].[Теплоснабжение Точка учета1 (Потребления за время действия НС)].[Q]&amp;#xA;         +[CalculatedValuesArchiveParent].[Потребления за время отсутствия данных в конце отчетного периода_].[Теплоснабжение Точка учета1 (Потребления за время отсутствия данных в конце отчетного периода)].[Q]" DataMember="ArchiveParent" /&gt;
    &lt;Item8 Ref="32" Name="ИтогоТн" Expression="Sum(IsNull([Потребление].[Теплоснабжение Точка учета1 (Потребление)].[M],0))  &amp;#xA;  +[CalculatedValuesArchiveParent].[Потребления за время действия НС_].[Теплоснабжение Точка учета1 (Потребления за время действия НС)].[M]&amp;#xA;+[CalculatedValuesArchiveParent].[Потребления за время отсутствия данных в конце отчетного периода_].[Теплоснабжение Точка учета1 (Потребления за время отсутствия данных в конце отчетного периода)].[M]" DataMember="ArchiveParent" /&gt;
  &lt;/CalculatedFields&gt;
  &lt;Bands&gt;
    &lt;Item1 Ref="33" ControlType="ReportHeaderBand" Name="ReportHeader" Dpi="254" HeightF="302.37836" Padding="0,0,0,0,254" Tag_type="System.Int32" Tag="25647"&gt;
      &lt;Controls&gt;
        &lt;Item1 Ref="34" ControlType="XRLabel" Name="label53" Dpi="254" Multiline="true" Text="label53" TextAlignment="TopRight" SizeF="254,55.32744" LocationFloat="1055.777,222.05113" Font="Times New Roman, 11pt, style=Bold" Padding="5,5,0,0,254"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="35" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).ServiceNumber" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="36" UseFont="false" /&gt;
        &lt;/Item1&gt;
        &lt;Item2 Ref="37" ControlType="XRLabel" Name="label45" Dpi="254" Text="Код адреса:" TextAlignment="MiddleLeft" SizeF="451.30933,55.32744" LocationFloat="604.46765,222.05089" Font="Arial, 9pt" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="38" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item2&gt;
        &lt;Item3 Ref="39" ControlType="XRLabel" Name="label43" Dpi="254" Multiline="true" Text="label43" SizeF="253.99988,55.327652" LocationFloat="311.14993,222.05089" Font="Times New Roman, 11pt, style=Bold" Padding="5,5,0,0,254"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="40" PropertyName="Text" DataMember="Объект учета.CustomId" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="41" UseFont="false" /&gt;
        &lt;/Item3&gt;
        &lt;Item4 Ref="42" ControlType="XRLabel" Name="label44" Dpi="254" Text="N абонента:" TextAlignment="MiddleLeft" SizeF="306.35834,55.32744" LocationFloat="4.791697,222.05089" Font="Arial, 9pt" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="43" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item4&gt;
        &lt;Item5 Ref="44" ControlType="XRLabel" Name="label33" Dpi="254" Multiline="true" Text="Сумарная нагрузка по секции" TextAlignment="MiddleLeft" SizeF="409.17834,55.32744" LocationFloat="1445.758,222.05089" Font="Arial, 8pt" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="45" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item5&gt;
        &lt;Item6 Ref="46" ControlType="XRLabel" Name="label40" Dpi="254" TextFormatString="{0:F3}" Multiline="true" Text="label40" TextAlignment="TopLeft" SizeF="92.604126,55.32744" LocationFloat="1854.9365,238.05092" Font="Times New Roman, 8pt" Padding="5,5,0,0,254"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="47" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.ContractHeat" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="48" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item6&gt;
        &lt;Item7 Ref="49" ControlType="XRLabel" Name="label42" Dpi="254" Multiline="true" Text="label42" SizeF="254,44.46228" LocationFloat="1508.8798,177.58887" Padding="5,5,0,0,254"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="50" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Section_Heat_DeviceRelation.SettingsChecksum" /&gt;
          &lt;/DataBindings&gt;
        &lt;/Item7&gt;
        &lt;Item8 Ref="51" ControlType="XRLabel" Name="label41" Dpi="254" Multiline="true" Text="Контрольная сумма: " TextAlignment="MiddleLeft" SizeF="341.0559,42.333313" LocationFloat="1167.8239,177.58884" Font="Arial, 9pt, charSet=204" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="52" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item8&gt;
        &lt;Item9 Ref="53" ControlType="XRLabel" Name="label37" Dpi="254" Multiline="true" Text="label37" SizeF="112.04767,42.33336" LocationFloat="1055.7769,178.43536" Padding="5,5,0,0,254"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="54" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Section_Heat_DeviceRelation.Scheme" /&gt;
          &lt;/DataBindings&gt;
        &lt;/Item9&gt;
        &lt;Item10 Ref="55" ControlType="XRLabel" Name="label36" Dpi="254" Multiline="true" Text="label36" SizeF="505.5653,43.18004" LocationFloat="1165.258,126.89458" Padding="5,5,0,0,254"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="56" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Section_Heat_DeviceRelation.PollConnections" /&gt;
          &lt;/DataBindings&gt;
        &lt;/Item10&gt;
        &lt;Item11 Ref="57" ControlType="XRLabel" Name="label39" Dpi="254" Multiline="true" Text="label39" SizeF="254,43.179886" LocationFloat="1416.8234,76.200226" Padding="5,5,0,0,254"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="58" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Section_Heat_DeviceRelation.SerialNumber" /&gt;
          &lt;/DataBindings&gt;
        &lt;/Item11&gt;
        &lt;Item12 Ref="59" ControlType="XRLabel" Name="label34" Dpi="254" Multiline="true" Text="label34" SizeF="253.99988,43.92064" LocationFloat="1162.8235,75.45947" Padding="5,5,0,0,254"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="60" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Section_Heat_DeviceRelation.Model" /&gt;
          &lt;/DataBindings&gt;
        &lt;/Item12&gt;
        &lt;Item13 Ref="61" ControlType="XRLabel" Name="label13" Dpi="254" Text="Номер :" TextAlignment="MiddleLeft" SizeF="242.35832,43.180023" LocationFloat="915.9396,76.200226" Font="Arial, 9pt" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="62" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item13&gt;
        &lt;Item14 Ref="63" ControlType="XRLabel" Name="label15" Dpi="254" Text="IP адрес:" TextAlignment="MiddleLeft" SizeF="242.35834,43.179993" LocationFloat="918.79706,126.89458" Font="Arial, 9pt" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="64" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item14&gt;
        &lt;Item15 Ref="65" ControlType="XRLabel" Name="label30" Dpi="254" Multiline="true" Text="Схема: " TextAlignment="MiddleLeft" SizeF="135.0456,42.33333" LocationFloat="920.73126,178.4354" Font="Arial, 9pt, charSet=204" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="66" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item15&gt;
        &lt;Item16 Ref="67" ControlType="XRLabel" Name="label14" Dpi="254" Multiline="true" Text="Секция: " TextAlignment="MiddleLeft" SizeF="235.47917,42.33333" LocationFloat="4.791657,179.71759" Font="Arial, 9pt, charSet=204" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="68" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item16&gt;
        &lt;Item17 Ref="69" ControlType="XRLabel" Name="label1" Dpi="254" TextFormatString="{0}" Multiline="true" Text="label13" SizeF="470.95956,43.180023" LocationFloat="258.02164,177.5887" Font="Arial, 9pt, charSet=204" Padding="5,5,0,0,254"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="70" PropertyName="Text" DataMember="ArchiveParent.Section.Title" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="71" UseFont="false" /&gt;
        &lt;/Item17&gt;
        &lt;Item18 Ref="72" ControlType="XRLabel" Name="label6" Dpi="254" Text="Адрес:" TextAlignment="MiddleLeft" SizeF="242.35834,43.179993" LocationFloat="2.8575048,126.89444" Font="Arial, 9pt" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="73" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item18&gt;
        &lt;Item19 Ref="74" ControlType="XRLabel" Name="label7" Dpi="254" Text="label7" TextAlignment="MiddleLeft" SizeF="470.95956,43.180023" LocationFloat="258.02164,126.89444" Font="Arial, 9pt" Padding="5,5,0,0,254"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="75" PropertyName="Text" DataMember="Объект учета.NodeAddress" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="76" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item19&gt;
        &lt;Item20 Ref="77" ControlType="XRLabel" Name="label4" Dpi="254" Text="label3" TextAlignment="MiddleLeft" SizeF="470.9595,43.179993" LocationFloat="258.02176,76.20003" Font="Arial, 9pt" Padding="5,5,0,0,254"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="78" PropertyName="Text" DataMember="Объект учета.NodeTitle" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="79" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item20&gt;
        &lt;Item21 Ref="80" ControlType="XRLabel" Name="label5" Dpi="254" Text="Объект учёта:" TextAlignment="MiddleLeft" SizeF="242.35832,43.180023" LocationFloat="0,76.20009" Font="Arial, 9pt" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="81" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item21&gt;
        &lt;Item22 Ref="82" ControlType="XRBarCode" Name="barCode" Dpi="254" Module="5.08" AutoModule="true" Alignment="MiddleCenter" ShowText="false" AnchorVertical="Top" SizeF="198.12097,219.92212" LocationFloat="1762.8795,0" Padding="5,5,5,5,254" Borders="None"&gt;
          &lt;Symbology Ref="83" Name="QRCode" CompactionMode="Byte" Version="Version15" /&gt;
          &lt;StylePriority Ref="84" UsePadding="false" UseBorders="false" /&gt;
          &lt;Scripts Ref="85" OnPrintOnPage="barCode_PrintOnPage" /&gt;
        &lt;/Item22&gt;
        &lt;Item23 Ref="86" ControlType="XRPictureBox" Name="pictureBox1" Dpi="254" ImageSource="img,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAAAQwAAAEMAHCH6s1AAACX0lEQVRYR72VQUvbYBjHu+twX8G5zXnxC2xoN0Uv+wATehGG0N70MnADx3YWYSDowYvb2ER22U0PEw9D8DZERC8iW6vtUNZS201pa/4+T5qnTZM3iU2a/OFfNH3z/H5NXpJYkAAYoK5T7xiHoosBP6dytqjRSRBMh/8+r+DN9hk0VohKgiA6PF2q4MHHQ8TmDzCxkcNV3SJcCRpug0tDl6ChjvDQJWhY4547waUdl6AhDfh9D7i0YxJ0cttwaWAJOsk3XOpbghbr8F8Ev/fBGX6L2v/5SPmdNLmZa+85QYvi1BKfsbhbUA7lMnxpr4D/VQ0j39LKNdJUU+IHtctA2UNf6r+8dnyM/MtpaBcXmPv51zaQ4Qu7eR6ohyVGPSQ8bwcdrMNPTpAbHEamuxenzxPQyv9aJFrgs7NAMgloWjAJ+scGl5olbHA+lRtEgj70e66CWyV2zi75xFa4NJVqSHjtCX6BGVljgTX+qzj3XgmXnibG9T2hZ3LSLpBIALUaKvsHrleie/kQR8UKT+GNHmeB29RNti/MvFPCpXIleC2mpprwsTGgWkV59SsyPX0ozi8oJUxwGoJhYwfwhAASFriss0o4wiW+JeiyW+FSkXjxPQt+qDnCJWaJ/OsZ20BzZU+UV1aRuftQuYZb+vSFwRx3uIQWNSVeuUv8GX3mCs8NDIEfajeGS8wSXrfDqdlHT1BNZ9qHS1ol3iohTjXBy77gEj8SFviQMcp/2pHIPn7aWbjkJhKhwSVuEqHDJSqJyOASswS/wPgtGhlc0pCoJ1q4hKBdVH6Vx41DPhKLXQPKvn2IgVE57wAAAABJRU5ErkJggg==" Sizing="Squeeze" AnchorVertical="Top" SizeF="64.029205,60.95999" LocationFloat="0.91434985,0" /&gt;
        &lt;Item24 Ref="87" ControlType="XRLabel" Name="label8" Dpi="254" Text="Отчет по секции учёта тепловой энергии" TextAlignment="MiddleCenter" SizeF="899.65436,53.34" LocationFloat="64.94371,7.6200128" Font="Arial, 12pt, style=Bold" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="88" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item24&gt;
        &lt;Item25 Ref="89" ControlType="XRLabel" Name="labelDateFrom" Dpi="254" Text="labelDateFrom" TextAlignment="MiddleCenter" SizeF="262.71997,53.339973" LocationFloat="1183.038,7.6200128" Font="Arial, 9pt, style=Bold" Padding="5,5,0,0,254"&gt;
          &lt;Scripts Ref="90" OnBeforePrint="labelReportPeriod_BeforePrint" /&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="92" Parameter="#Ref-5" FormatString="{0:dd.MM.yyyy}" PropertyName="Text" DataMember="DATE_START" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="93" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item25&gt;
        &lt;Item26 Ref="94" ControlType="XRLabel" Name="label9" Dpi="254" Text="по" TextAlignment="MiddleCenter" SizeF="63.5,53.339977" LocationFloat="1445.7579,7.6200128" Font="Arial, 9pt" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="95" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item26&gt;
        &lt;Item27 Ref="96" ControlType="XRLabel" Name="labelDateTo" Dpi="254" Text="labelDateTo" TextAlignment="MiddleCenter" SizeF="253.6217,53.339977" LocationFloat="1509.258,7.6200128" Font="Arial, 9pt, style=Bold" Padding="5,5,0,0,254"&gt;
          &lt;Scripts Ref="97" OnBeforePrint="labelReportPeriod_BeforePrint" /&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="98" Parameter="#Ref-6" FormatString="{0:dd.MM.yyyy}" PropertyName="Text" DataMember="DATE_END" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="99" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item27&gt;
        &lt;Item28 Ref="100" ControlType="XRLabel" Name="label10" Dpi="254" Text="за период с" TextAlignment="MiddleCenter" SizeF="218.44,53.339977" LocationFloat="964.59796,7.6200128" Font="Arial, 9pt" Padding="5,5,0,0,254"&gt;
          &lt;StylePriority Ref="101" UseFont="false" UseTextAlignment="false" /&gt;
        &lt;/Item28&gt;
      &lt;/Controls&gt;
      &lt;StylePriority Ref="102" UsePadding="false" /&gt;
    &lt;/Item1&gt;
    &lt;Item2 Ref="103" ControlType="DetailBand" Name="Detail" Dpi="254" HeightF="50.799995" TextAlignment="TopLeft" Padding="0,0,0,0,254" Tag_type="System.String" Tag="1;1|2;1|3;1|5;1|6;1|"&gt;
      &lt;Controls&gt;
        &lt;Item1 Ref="104" ControlType="XRTable" Name="tableDetail" Dpi="254" SizeF="1338.4329,50.799995" LocationFloat="0,0"&gt;
          &lt;Rows&gt;
            &lt;Item1 Ref="105" ControlType="XRTableRow" Name="rowDetail" Dpi="254" Weight="0.8" Font="Times New Roman, 8.25pt"&gt;
              &lt;Cells&gt;
                &lt;Item1 Ref="106" ControlType="XRTableCell" Name="DataDate" Dpi="254" Weight="0.7408108713820307" Text="DataDate" TextAlignment="MiddleCenter" Font="Arial, 6.75pt" Padding="0,0,0,0,254" Borders="Left, Right, Bottom" Tag_type="System.String" Tag="0"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="107" FormatString="{0:dd.MM.yyyy}" PropertyName="Text" DataMember="ArchiveParent.calculatedFieldDataDate" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="108" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item1&gt;
                &lt;Item2 Ref="109" ControlType="XRTableCell" Name="T1_Heat" Dpi="254" Weight="0.3994366253671824" TextFormatString="{0:F2}" NullValueText="-   " TextAlignment="MiddleRight" Font="Arial, 6.75pt" BackColor="WhiteSmoke" Padding="0,5,0,0,254" Borders="Right, Bottom" Tag_type="System.Byte" Tag="1"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="110" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.T1" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="111" UseFont="false" UseBackColor="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item2&gt;
                &lt;Item3 Ref="112" ControlType="XRTableCell" Name="M1_Heat" Dpi="254" Weight="0.3994366284961724" NullValueText="-   " Text="M1_Heat" TextAlignment="MiddleRight" Font="Arial, 6.75pt" Padding="0,5,0,0,254" Borders="Right, Bottom" Tag_type="System.Byte" Tag="1"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="113" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.M1" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="114" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item3&gt;
                &lt;Item4 Ref="115" ControlType="XRTableCell" Name="T2_Heat" Dpi="254" Weight="0.39943662849617245" TextFormatString="{0:F2}" Multiline="true" Text="T2_Heat" TextAlignment="MiddleRight" Font="Arial, 6.75pt" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="116" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.T2" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="117" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item4&gt;
                &lt;Item5 Ref="118" ControlType="XRTableCell" Name="M2_Heat" Dpi="254" Weight="0.3994366080705798" TextFormatString="{0:F2}" Multiline="true" Text="M2_Heat" TextAlignment="MiddleRight" Font="Arial, 6.75pt" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="119" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.M2" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="120" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item5&gt;
                &lt;Item6 Ref="121" ControlType="XRTableCell" Name="tableCell3" Dpi="254" Weight="0.3994366080705798" TextFormatString="{0:F2}" Multiline="true" Text="Δt" TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="122" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).T_delta" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="123" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item6&gt;
                &lt;Item7 Ref="124" ControlType="XRTableCell" Name="Q_Heat" Dpi="254" Weight="0.3994366080705798" TextFormatString="{0:F2}" Multiline="true" Text="Q_Heat" TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="125" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Q" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="126" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item7&gt;
                &lt;Item8 Ref="127" ControlType="XRTableCell" Name="M1_HotWater" Dpi="254" Weight="0.39943662968067295" NullValueText="-   " Text="M1_HotWater" TextAlignment="MiddleRight" Font="Arial, 6.75pt" Padding="0,5,0,0,254" Borders="Right, Bottom" Tag_type="System.Byte" Tag="2"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="128" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Section.Section_HotWater.M1" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="129" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item8&gt;
                &lt;Item9 Ref="130" ControlType="XRTableCell" Name="Q1_HotWater" Dpi="254" Weight="0.39943628234993633" NullValueText="-   " Text="Q1_HotWater" TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" Padding="0,5,0,0,254" Borders="Right, Bottom" Tag_type="System.Byte" Tag="2"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="131" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Section.Section_HotWater.Q" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="132" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item9&gt;
                &lt;Item10 Ref="133" ControlType="XRTableCell" Name="tableCell11" Dpi="254" Weight="0.3573633106699674" TextFormatString="{0:F2}" Multiline="true" Text="tableCell11" TextAlignment="MiddleRight" Font="Arial, 6.75pt" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="134" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.WorkTime" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="135" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item10&gt;
              &lt;/Cells&gt;
              &lt;StylePriority Ref="136" UseFont="false" /&gt;
            &lt;/Item1&gt;
          &lt;/Rows&gt;
        &lt;/Item1&gt;
      &lt;/Controls&gt;
    &lt;/Item2&gt;
    &lt;Item3 Ref="137" ControlType="PageHeaderBand" Name="PageHeader" Dpi="254" HeightF="192.93416"&gt;
      &lt;Controls&gt;
        &lt;Item1 Ref="138" ControlType="XRTable" Name="tablePageHeader" Dpi="254" SizeF="1338.4329,190.5" LocationFloat="0,0" Font="Times New Roman, 9.75pt"&gt;
          &lt;Rows&gt;
            &lt;Item1 Ref="139" ControlType="XRTableRow" Name="tablePageHeaderRow" Dpi="254" Weight="1"&gt;
              &lt;Cells&gt;
                &lt;Item1 Ref="140" ControlType="XRTableCell" Name="tableCell1" Dpi="254" Weight="73.2039428356996" Borders="Left, Top, Right" Tag_type="System.Int32" Tag="0"&gt;
                  &lt;StylePriority Ref="141" UseBorders="false" /&gt;
                &lt;/Item1&gt;
                &lt;Item2 Ref="142" ControlType="XRTableCell" Name="System1" Dpi="254" Weight="236.82464932164336" Text="Теплоснабжение" TextAlignment="MiddleCenter" Font="Arial, 9pt" Borders="Top, Right, Bottom" Tag_type="System.Byte" Tag="1"&gt;
                  &lt;StylePriority Ref="143" UseFont="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item2&gt;
                &lt;Item3 Ref="144" ControlType="XRTableCell" Name="System2" Dpi="254" Weight="78.94133675743903" Text="ГВС" TextAlignment="MiddleCenter" Font="Arial, 9pt" Borders="Top, Right, Bottom" Tag_type="System.Byte" Tag="2"&gt;
                  &lt;StylePriority Ref="145" UseFont="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item3&gt;
                &lt;Item4 Ref="146" ControlType="XRTableCell" Name="tableCell5" Dpi="254" Weight="35.313282406658104" Multiline="true" TextAlignment="MiddleCenter" Font="Arial, 9pt" Borders="Top, Right"&gt;
                  &lt;StylePriority Ref="147" UseFont="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item4&gt;
              &lt;/Cells&gt;
            &lt;/Item1&gt;
            &lt;Item2 Ref="148" ControlType="XRTableRow" Name="tablePageHeaderRow1" Dpi="254" Weight="1"&gt;
              &lt;Cells&gt;
                &lt;Item1 Ref="149" ControlType="XRTableCell" Name="tableCell4" Dpi="254" Weight="0.7855336268233215" Text="Дата" TextAlignment="MiddleCenter" Font="Microsoft Sans Serif, 8.25pt" Borders="Left, Right" Tag_type="System.Int32" Tag="0"&gt;
                  &lt;StylePriority Ref="150" UseFont="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item1&gt;
                &lt;Item2 Ref="151" ControlType="XRTableCell" Name="Input_1_1" Dpi="254" Weight="2.541304334342131" TextAlignment="MiddleCenter" Font="Arial, 9pt" Borders="Right, Bottom" Tag_type="System.Byte" Tag="1"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="152" PropertyName="Text" DataMember="ArchiveParent.Section.HeatMeasurePoint" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="153" UseFont="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item2&gt;
                &lt;Item3 Ref="154" ControlType="XRTableCell" Name="Input_2_1" Dpi="254" Weight="0.8471003293652276" TextAlignment="MiddleCenter" Font="Arial, 9pt" Borders="Right, Bottom" Tag_type="System.Byte" Tag="2"&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="155" PropertyName="Text" DataMember="ArchiveParent.Section.HotWaterMeasurePoint" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="156" UseFont="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item3&gt;
                &lt;Item4 Ref="157" ControlType="XRTableCell" Name="tableCell6" Dpi="254" Weight="0.3789384164870462" Multiline="true" Text="Время раб. (ч)" TextAlignment="MiddleCenter" Font="Arial, 9pt" Borders="Right"&gt;
                  &lt;StylePriority Ref="158" UseFont="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item4&gt;
              &lt;/Cells&gt;
            &lt;/Item2&gt;
            &lt;Item3 Ref="159" ControlType="XRTableRow" Name="tablePageHeaderRow2" Dpi="254" Weight="1" Font="Times New Roman, 11.25pt"&gt;
              &lt;Cells&gt;
                &lt;Item1 Ref="160" ControlType="XRTableCell" Name="tableCell7" Dpi="254" Weight="0.7595899816327646" TextAlignment="MiddleCenter" Font="Microsoft Sans Serif, 8.25pt" Borders="Left, Right, Bottom" Tag_type="System.String" Tag="0"&gt;
                  &lt;StylePriority Ref="161" UseFont="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item1&gt;
                &lt;Item2 Ref="162" ControlType="XRTableCell" Name="_T1_Heat" Dpi="254" Weight="0.40956217947622425" Text="T1, °С" TextAlignment="MiddleCenter" Font="Arial, 6.75pt" BackColor="WhiteSmoke" Borders="Right, Bottom" Tag_type="System.Byte" Tag="1"&gt;
                  &lt;StylePriority Ref="163" UseFont="false" UseBackColor="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item2&gt;
                &lt;Item3 Ref="164" ControlType="XRTableCell" Name="_M1_Heat" Dpi="254" Weight="0.40956203459341856" Text="M1, т" TextAlignment="MiddleCenter" Font="Arial, 6.75pt" Padding="0,5,0,0,254" Borders="Right, Bottom" Tag_type="System.Byte" Tag="1"&gt;
                  &lt;StylePriority Ref="165" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item3&gt;
                &lt;Item4 Ref="166" ControlType="XRTableCell" Name="tableCell15" Dpi="254" Weight="0.4095623254912075" Multiline="true" Text="T2, °С" TextAlignment="MiddleCenter" Font="Arial, 6.75pt" BackColor="WhiteSmoke" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;StylePriority Ref="167" UseFont="false" UseBackColor="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item4&gt;
                &lt;Item5 Ref="168" ControlType="XRTableCell" Name="tableCell16" Dpi="254" Weight="0.409562343428187" Multiline="true" Text="M2, т" TextAlignment="MiddleCenter" Font="Arial, 6.75pt" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;StylePriority Ref="169" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item5&gt;
                &lt;Item6 Ref="170" ControlType="XRTableCell" Name="tableCell2" Dpi="254" Weight="0.409562343428187" Multiline="true" Text="Δt" TextAlignment="MiddleCenter" Font="Arial, 8pt, style=Bold" BackColor="WhiteSmoke" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;StylePriority Ref="171" UseFont="false" UseBackColor="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item6&gt;
                &lt;Item7 Ref="172" ControlType="XRTableCell" Name="tableCell17" Dpi="254" Weight="0.40956094440517" Multiline="true" Text="QОбщ. Гкал" TextAlignment="MiddleCenter" Font="Arial, 6.75pt, style=Bold" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;StylePriority Ref="173" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item7&gt;
                &lt;Item8 Ref="174" ControlType="XRTableCell" Name="_M1_HotWater" Dpi="254" Weight="0.40956430522954257" Text="М гвс, т" TextAlignment="MiddleCenter" Font="Arial, 6.75pt" Padding="0,0,0,0,254" Borders="Right, Bottom" Tag_type="System.Byte" Tag="2"&gt;
                  &lt;StylePriority Ref="175" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item8&gt;
                &lt;Item9 Ref="176" ControlType="XRTableCell" Name="_Q1_HotWater" Dpi="254" Weight="0.409561514808594" Text="Qгвс, Гкал" TextAlignment="MiddleCenter" Font="Arial, 6.75pt, style=Bold" Padding="0,0,0,0,254" Borders="Right, Bottom" Tag_type="System.Byte" Tag="2"&gt;
                  &lt;StylePriority Ref="177" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item9&gt;
                &lt;Item10 Ref="178" ControlType="XRTableCell" Name="tableCell8" Dpi="254" Weight="0.3664208049343827" Multiline="true" TextAlignment="MiddleCenter" Font="Arial, 6.75pt" Padding="0,0,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;StylePriority Ref="179" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item10&gt;
              &lt;/Cells&gt;
              &lt;StylePriority Ref="180" UseFont="false" /&gt;
            &lt;/Item3&gt;
          &lt;/Rows&gt;
          &lt;StylePriority Ref="181" UseFont="false" /&gt;
        &lt;/Item1&gt;
      &lt;/Controls&gt;
    &lt;/Item3&gt;
    &lt;Item4 Ref="182" ControlType="ReportFooterBand" Name="ReportFooter" Dpi="254" HeightF="299.6516" Tag_type="System.UInt32" Tag="3352020376"&gt;
      &lt;Controls&gt;
        &lt;Item1 Ref="183" ControlType="XRLabel" Name="label46" Dpi="254" Multiline="true" Text="label46" TextAlignment="TopRight" SizeF="111.39844,48.01441" LocationFloat="1227.0344,55.879986" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="184" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.ReportPeriodDuration" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="185" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item1&gt;
        &lt;Item2 Ref="186" ControlType="XRLabel" Name="label11" Dpi="254" TextFormatString="{0:F3}" Multiline="true" Text="label11" SizeF="235.91101,48.01436" LocationFloat="1102.5219,247.93803" Font="Arial, 9pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="187" PropertyName="Text" DataMember="ArchiveParent.ИтогоТн" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="188" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item2&gt;
        &lt;Item3 Ref="189" ControlType="XRLabel" Name="label12" Dpi="254" TextFormatString="{0:F3}" Multiline="true" Text="label12" SizeF="235.91101,50.34137" LocationFloat="1102.5219,197.59679" Font="Arial, 9pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="190" PropertyName="Text" DataMember="ArchiveParent.ИтогоГкал" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="191" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item3&gt;
        &lt;Item4 Ref="192" ControlType="XRLabel" Name="label3" Dpi="254" Multiline="true" Text="Итого Тн" SizeF="249.0274,48.01439" LocationFloat="853.49457,247.93803" Font="Arial, 9pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;StylePriority Ref="193" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item4&gt;
        &lt;Item5 Ref="194" ControlType="XRLabel" Name="label2" Dpi="254" Multiline="true" Text="Итого Гкал" SizeF="249.0268,50.341568" LocationFloat="853.49457,197.59647" Font="Arial, 9pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;StylePriority Ref="195" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item5&gt;
        &lt;Item6 Ref="196" ControlType="XRLabel" Name="label24" Dpi="254" Multiline="true" Text="Итого  тепловые потери Тн" SizeF="604.4677,48.01448" LocationFloat="0,247.93803" Font="Arial, 9pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;StylePriority Ref="197" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item6&gt;
        &lt;Item7 Ref="198" ControlType="XRLabel" Name="label23" Dpi="254" Multiline="true" Text="Итого  тепловые потери Гкал" SizeF="604.4677,50.341568" LocationFloat="0,197.59647" Font="Arial, 9pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;StylePriority Ref="199" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item7&gt;
        &lt;Item8 Ref="200" ControlType="XRLabel" Name="label38" Dpi="254" TextFormatString="{0:F2}" Multiline="true" Text="label38" TextAlignment="TopRight" SizeF="249.0268,50.341385" LocationFloat="604.4678,197.59679" Font="Arial, 9pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="201" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).HeatLoss" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="202" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item8&gt;
        &lt;Item9 Ref="203" ControlType="XRLabel" Name="label35" Dpi="254" TextFormatString="{0:F2}" Multiline="true" Text="label35" TextAlignment="TopRight" SizeF="249.0268,48.01448" LocationFloat="604.4678,247.93803" Font="Arial, 9pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="204" PropertyName="Text" DataMember="Точки учета.ГВС Точка учета1 (Точки учета).HeatLoss" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="205" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item9&gt;
        &lt;Item10 Ref="206" ControlType="XRLabel" Name="label31" Dpi="254" Multiline="true" Text="label31" TextAlignment="TopRight" SizeF="111.39844,45.687378" LocationFloat="1227.0344,151.90901" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="207" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Section_Heat_CalculatedValuesRelation.Section_Heat_WithoutDataConsumptionValuesRelation.PeriodLength" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="208" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item10&gt;
        &lt;Item11 Ref="209" ControlType="XRLabel" Name="label22" Dpi="254" Multiline="true" Text="label22" TextAlignment="TopRight" SizeF="111.39844,48.01445" LocationFloat="1227.0344,103.89433" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="210" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Section_Heat_CalculatedValuesRelation.Section_Heat_ContingencyConsumptionValuesRelation.PeriodLength" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="211" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item11&gt;
        &lt;Item12 Ref="212" ControlType="XRLabel" Name="label32" Dpi="254" Multiline="true" Text="Потребление за период до конца отчета" SizeF="853.49457,45.68741" LocationFloat="0,151.90901" Font="Arial, 6.75pt" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;StylePriority Ref="213" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item12&gt;
        &lt;Item13 Ref="214" ControlType="XRLabel" Name="label29" Dpi="254" Multiline="true" Text="Потребление за время действия НС " SizeF="853.4945,48.014465" LocationFloat="0,103.8945" Font="Arial, 6.75pt" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;StylePriority Ref="215" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item13&gt;
        &lt;Item14 Ref="216" ControlType="XRLabel" Name="label25" Dpi="254" Multiline="true" Text="Среднесуточное потребление " SizeF="853.4945,48.014454" LocationFloat="0,55.879986" Font="Arial, 6.75pt" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;StylePriority Ref="217" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item14&gt;
        &lt;Item15 Ref="218" ControlType="XRLabel" Name="label21" Dpi="254" TextFormatString="{0:F2}" Multiline="true" Text="label21" TextAlignment="TopRight" SizeF="124.51416,45.687668" LocationFloat="978.0078,103.89433" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="219" PropertyName="Text" DataMember="ArchiveParent.Section.Section_HotWater.Section_HotWater_CalculatedValuesRelation.Section_HotWater_ContingencyConsumptionValuesRelation.M" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="220" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item15&gt;
        &lt;Item16 Ref="221" ControlType="XRLabel" Name="label18" Dpi="254" TextFormatString="{0:F2}" Multiline="true" Text="label18" TextAlignment="TopRight" SizeF="124.51416,48.01432" LocationFloat="978.0078,55.88015" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="222" PropertyName="Text" DataMember="ArchiveParent.Section.Section_HotWater.Section_HotWater_CalculatedValuesRelation.Section_HotWater_AvgDayValuesRelation.AvgDayM" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="223" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item16&gt;
        &lt;Item17 Ref="224" ControlType="XRLabel" Name="label28" Dpi="254" TextFormatString="{0:F2}" Multiline="true" Text="label28" TextAlignment="TopRight" SizeF="124.51318,48.01442" LocationFloat="853.49457,149.58212" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="225" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Section_Heat_CalculatedValuesRelation.Section_Heat_WithoutDataConsumptionValuesRelation.Q" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="226" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item17&gt;
        &lt;Item18 Ref="227" ControlType="XRLabel" Name="label27" Dpi="254" TextFormatString="{0:F2}" Multiline="true" Text="label27" TextAlignment="TopRight" SizeF="124.51416,48.01442" LocationFloat="978.0078,149.58212" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="228" PropertyName="Text" DataMember="ArchiveParent.Section.Section_HotWater.Section_HotWater_CalculatedValuesRelation.Section_HotWater_WithoutDataConsumptionValuesRelation.M" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="229" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item18&gt;
        &lt;Item19 Ref="230" ControlType="XRLabel" Name="label26" Dpi="254" TextFormatString="{0:F2}" Multiline="true" Text="label26" TextAlignment="TopRight" SizeF="124.51306,48.01442" LocationFloat="1102.5214,149.58212" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="231" PropertyName="Text" DataMember="ArchiveParent.Section.Section_HotWater.Section_HotWater_CalculatedValuesRelation.Section_HotWater_WithoutDataConsumptionValuesRelation.Q" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="232" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item19&gt;
        &lt;Item20 Ref="233" ControlType="XRLabel" Name="label20" Dpi="254" TextFormatString="{0:F2}" Multiline="true" Text="label20" TextAlignment="TopRight" SizeF="124.51245,45.687668" LocationFloat="1102.522,103.89433" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="234" PropertyName="Text" DataMember="ArchiveParent.Section.Section_HotWater.Section_HotWater_CalculatedValuesRelation.Section_HotWater_ContingencyConsumptionValuesRelation.Q" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="235" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item20&gt;
        &lt;Item21 Ref="236" ControlType="XRLabel" Name="label19" Dpi="254" TextFormatString="{0:F2}" Multiline="true" Text="label19" TextAlignment="TopRight" SizeF="124.51245,48.01432" LocationFloat="1102.522,55.88015" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="237" PropertyName="Text" DataMember="ArchiveParent.Section.Section_HotWater.Section_HotWater_CalculatedValuesRelation.Section_HotWater_AvgDayValuesRelation.AvgDayQ" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="238" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item21&gt;
        &lt;Item22 Ref="239" ControlType="XRLabel" Name="label17" Dpi="254" TextFormatString="{0:F2}" Multiline="true" Text="label17" TextAlignment="TopRight" SizeF="124.51318,48.01432" LocationFloat="853.49457,55.88015" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="240" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Section_Heat_CalculatedValuesRelation.Section_Heat_AvgDayValuesRelation.AvgDayQ" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="241" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item22&gt;
        &lt;Item23 Ref="242" ControlType="XRLabel" Name="label16" Dpi="254" TextFormatString="{0:F2}" Multiline="true" Text="label16" TextAlignment="TopRight" SizeF="124.51318,45.687668" LocationFloat="853.49457,103.89433" Font="Arial, 6.75pt, style=Bold" Padding="5,5,0,0,254" Borders="All"&gt;
          &lt;DataBindings&gt;
            &lt;Item1 Ref="243" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Section_Heat_CalculatedValuesRelation.Section_Heat_ContingencyConsumptionValuesRelation.Q" /&gt;
          &lt;/DataBindings&gt;
          &lt;StylePriority Ref="244" UseFont="false" UseBorders="false" /&gt;
        &lt;/Item23&gt;
        &lt;Item24 Ref="245" ControlType="XRTable" Name="tableFooter" Dpi="254" SizeF="1338.4329,55.88" LocationFloat="0,0" Font="Times New Roman, 6.75pt"&gt;
          &lt;Rows&gt;
            &lt;Item1 Ref="246" ControlType="XRTableRow" Name="rowFooter" Dpi="254" Weight="0.88" Font="Times New Roman, 11.25pt, style=Bold"&gt;
              &lt;Cells&gt;
                &lt;Item1 Ref="247" ControlType="XRTableCell" Name="total" Dpi="254" Weight="0.7408108713820306" Text="Итого" TextAlignment="MiddleCenter" Font="Arial, 6.75pt, style=Bold" Padding="0,5,0,0,254" Borders="Left, Right, Bottom" Tag_type="System.String" Tag="0"&gt;
                  &lt;StylePriority Ref="248" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item1&gt;
                &lt;Item2 Ref="249" ControlType="XRTableCell" Name="avgT1_Heat" Dpi="254" Weight="0.39943662530756946" TextFormatString="{0:F2}" NullValueText="-   " TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" BackColor="WhiteSmoke" Padding="0,5,0,0,254" Borders="Right, Bottom" Tag_type="System.Byte" Tag="1"&gt;
                  &lt;Summary Ref="250" FormatString="{0:F2}" Running="Report" Func="Avg" IgnoreNullValues="true" /&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="251" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.T1" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="252" UseFont="false" UseBackColor="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item2&gt;
                &lt;Item3 Ref="253" ControlType="XRTableCell" Name="sumM1_Heat" Dpi="254" Weight="0.3994366087043624" NullValueText="-   " TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" Padding="0,5,0,0,254" Borders="Right, Bottom" Tag_type="System.Byte" Tag="1"&gt;
                  &lt;Scripts Ref="254" OnSummaryCalculated="OnSummaryCalculated" /&gt;
                  &lt;Summary Ref="255" FormatString="{0:F2}" Running="Report" IgnoreNullValues="true" /&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="256" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.M1" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="257" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item3&gt;
                &lt;Item4 Ref="258" ControlType="XRTableCell" Name="avgT2_Heat" Dpi="254" Weight="0.39943660870436243" Multiline="true" TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" BackColor="WhiteSmoke" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;Summary Ref="259" FormatString="{0:F2}" Running="Report" Func="Avg" IgnoreNullValues="true" /&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="260" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.T2" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="261" UseFont="false" UseBackColor="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item4&gt;
                &lt;Item5 Ref="262" ControlType="XRTableCell" Name="tableCell25" Dpi="254" Weight="0.39943661147243775" Multiline="true" TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;Summary Ref="263" FormatString="{0:F2}" Running="Report" IgnoreNullValues="true" /&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="264" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.M2" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="265" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item5&gt;
                &lt;Item6 Ref="266" ControlType="XRTableCell" Name="tableCell9" Dpi="254" Weight="0.39943661147243775" TextFormatString="{0:F2}" Multiline="true" TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" BackColor="WhiteSmoke" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;Summary Ref="267" FormatString="{0:F2}" Func="Avg" /&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="268" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).T_delta" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="269" UseFont="false" UseBackColor="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item6&gt;
                &lt;Item7 Ref="270" ControlType="XRTableCell" Name="sumQ_Heat" Dpi="254" Weight="0.39943660870436243" TextFormatString="{0:F2}" Multiline="true" TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;Summary Ref="271" FormatString="{0:F2}" Running="Report" IgnoreNullValues="true" /&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="272" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.Q" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="273" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item7&gt;
                &lt;Item8 Ref="274" ControlType="XRTableCell" Name="sumM1_HotWater" Dpi="254" Weight="0.39943844009213836" NullValueText="-   " TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" Padding="0,5,0,0,254" Borders="Right, Bottom" Tag_type="System.Byte" Tag="2"&gt;
                  &lt;Scripts Ref="275" OnSummaryCalculated="OnSummaryCalculated" /&gt;
                  &lt;Summary Ref="276" FormatString="{0:F2}" Running="Report" IgnoreNullValues="true" /&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="277" PropertyName="Text" DataMember="ArchiveParent.Section.Section_HotWater.M1" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="278" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item8&gt;
                &lt;Item9 Ref="279" ControlType="XRTableCell" Name="sumQ1_HotWater" Dpi="254" Weight="0.3994355805225409" NullValueText="-   " TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" Padding="0,5,0,0,254" Borders="Right, Bottom" Tag_type="System.Byte" Tag="2"&gt;
                  &lt;Scripts Ref="280" OnSummaryCalculated="OnSummaryCalculated" /&gt;
                  &lt;Summary Ref="281" FormatString="{0:F2}" Running="Report" IgnoreNullValues="true" /&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="282" PropertyName="Text" DataMember="ArchiveParent.Section.Section_HotWater.Q" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="283" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item9&gt;
                &lt;Item10 Ref="284" ControlType="XRTableCell" Name="tableCell12" Dpi="254" Weight="0.35736228821529126" Multiline="true" TextAlignment="MiddleRight" Font="Arial, 6.75pt, style=Bold" Padding="0,5,0,0,254" Borders="Right, Bottom"&gt;
                  &lt;Summary Ref="285" FormatString="{0:F2}" Running="Report" IgnoreNullValues="true" /&gt;
                  &lt;DataBindings&gt;
                    &lt;Item1 Ref="286" PropertyName="Text" DataMember="ArchiveParent.Section.Section_Heat.WorkTime" /&gt;
                  &lt;/DataBindings&gt;
                  &lt;StylePriority Ref="287" UseFont="false" UsePadding="false" UseBorders="false" UseTextAlignment="false" /&gt;
                &lt;/Item10&gt;
              &lt;/Cells&gt;
              &lt;StylePriority Ref="288" UseFont="false" /&gt;
            &lt;/Item1&gt;
          &lt;/Rows&gt;
          &lt;StylePriority Ref="289" UseFont="false" /&gt;
        &lt;/Item24&gt;
      &lt;/Controls&gt;
    &lt;/Item4&gt;
    &lt;Item5 Ref="290" ControlType="TopMarginBand" Name="topMarginBand1" Dpi="254" HeightF="121.1667" /&gt;
    &lt;Item6 Ref="291" ControlType="BottomMarginBand" Name="bottomMarginBand1" Dpi="254" HeightF="525.26074" /&gt;
  &lt;/Bands&gt;
  &lt;Scripts Ref="292" OnDataSourceDemanded="BaseReport_DataSourceDemanded" /&gt;
  &lt;ObjectStorage&gt;
    &lt;Item1 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v25.1" Ref="4" Content="System.DateTime" Type="System.Type" /&gt;
    &lt;Item2 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v25.1" Ref="7" Content="System.Int32" Type="System.Type" /&gt;
    &lt;Item3 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v25.1" Ref="12" Content="System.Boolean" Type="System.Type" /&gt;
    &lt;Item4 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v25.1" Ref="18" Content="System.Double" Type="System.Type" /&gt;
    &lt;Item5 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v25.1" Ref="0" Content="~Xtra#NULL" Type="System.Data.DataSet" /&gt;
  &lt;/ObjectStorage&gt;
&lt;/XtraReportsLayoutSerializer&gt;</Template>
</Report>