1073 lines
134 KiB
XML
1073 lines
134 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Report>
|
|
<Version>3.50.4</Version>
|
|
<BuildNumber>35016</BuildNumber>
|
|
<Type>1</Type>
|
|
<Entity>2</Entity>
|
|
<DataSourceMask>TotalsStartEnd, Node, NodeMeasurePoints, NodeConsumption, Hierarchy</DataSourceMask>
|
|
<MeasurePointCountHeat>1</MeasurePointCountHeat>
|
|
<MeasurePointCountHotWater>1</MeasurePointCountHotWater>
|
|
<MeasurePointCountColdWater>0</MeasurePointCountColdWater>
|
|
<MeasurePointCountSewage>0</MeasurePointCountSewage>
|
|
<MeasurePointCountSteam>0</MeasurePointCountSteam>
|
|
<MeasurePointCountGas>0</MeasurePointCountGas>
|
|
<MeasurePointCountElectricity>0</MeasurePointCountElectricity>
|
|
<MeasurePointCountControl>0</MeasurePointCountControl>
|
|
<EstimationAlgorithm>0</EstimationAlgorithm>
|
|
<DailyAverageCalculatingPeriod>0</DailyAverageCalculatingPeriod>
|
|
<DeviceModel>0</DeviceModel>
|
|
<ReportUnits>0</ReportUnits>
|
|
<Template>
|
|
|
|
<XtraReportsLayoutSerializer SerializerVersion="22.1.7.0" Ref="1" ControlType="DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v22.1, Version=22.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Name="BaseReport" ScriptsSource="using System.Collections.Generic;&#xD;&#xA;using System.Data;&#xD;&#xA;&#xD;&#xA;private int _archiveTypeDiagnostics = 9, _archiveTypeIncidents = 10;&#xD;&#xA;&#xD;&#xA;class ParameterErrors&#xD;&#xA;{&#xD;&#xA; // Параметры для теплового ввода, к которому подключена точка учета системы теплоснабжения&#xD;&#xA; public List&lt;int&gt; t1 = new List&lt;int&gt;(); // Температура подающей&#xD;&#xA; public List&lt;int&gt; t2 = new List&lt;int&gt;(); // Температура отводящей&#xD;&#xA; public List&lt;int&gt; V1 = new List&lt;int&gt;(); // Объем подающей&#xD;&#xA; public List&lt;int&gt; V2 = new List&lt;int&gt;(); // Объем отводящей&#xD;&#xA; public List&lt;int&gt; M1 = new List&lt;int&gt;(); // Масса подающей&#xD;&#xA; public List&lt;int&gt; M2 = new List&lt;int&gt;(); // Масса отводящей&#xD;&#xA; public List&lt;int&gt; P1 = new List&lt;int&gt;(); // Давление избыточное подающей&#xD;&#xA; public List&lt;int&gt; P2 = new List&lt;int&gt;(); // Давление избыточное отводящей&#xD;&#xA; public List&lt;int&gt; Mg = new List&lt;int&gt;(); // Масса воды в канале 3 или М1-М2, если нет канала 3&#xD;&#xA; public List&lt;int&gt; Qo = new List&lt;int&gt;(); // Полная тепловая энергия (тепло ТВ1 или ТВ2 + тепло по каналу 3)&#xD;&#xA; public List&lt;int&gt; Qg = new List&lt;int&gt;(); // Тепловая энергия в канале 3 или теплопотребление если нет канала 3&#xD;&#xA; public List&lt;int&gt; dt = new List&lt;int&gt;(); // Разность температур (t1-t2)&#xD;&#xA; &#xD;&#xA; public bool Is_t1(int paramCode) { return paramCode == 0 || paramCode == 22; }&#xD;&#xA; public bool Is_t2(int paramCode) { return paramCode == 1 || paramCode == 23; }&#xD;&#xA; public bool Is_V1(int paramCode) { return paramCode == 3 || paramCode == 25; }&#xD;&#xA; public bool Is_V2(int paramCode) { return paramCode == 4 || paramCode == 26; }&#xD;&#xA; public bool Is_M1(int paramCode) { return paramCode == 6 || paramCode == 28; }&#xD;&#xA; public bool Is_M2(int paramCode) { return paramCode == 7 || paramCode == 29; }&#xD;&#xA; public bool Is_P1(int paramCode) { return paramCode == 9 || paramCode == 31; }&#xD;&#xA; public bool Is_P2(int paramCode) { return paramCode == 10 || paramCode == 32; }&#xD;&#xA; public bool Is_Mg(int paramCode) { return paramCode == 11 || paramCode == 33; }&#xD;&#xA; public bool Is_Qo(int paramCode) { return paramCode == 12 || paramCode == 34; }&#xD;&#xA; public bool Is_Qg(int paramCode) { return paramCode == 13 || paramCode == 35; }&#xD;&#xA; public bool Is_dt(int paramCode) { return paramCode == 14 || paramCode == 36; }&#xD;&#xA;}&#xD;&#xA;&#xD;&#xA;private Dictionary&lt;DateTime, ParameterErrors&gt; _deviceErrorCodes = new Dictionary&lt;DateTime, ParameterErrors&gt;();&#xD;&#xA;&#xD;&#xA;private void BaseReport_DataSourceDemanded(object sender, System.EventArgs e) &#xD;&#xA;{&#xD;&#xA; &#x9;XtraReport report = (XtraReport)sender;&#xD;&#xA; DataSet dataSet = (DataSet)report.DataSource;&#xD;&#xA; &#xD;&#xA; DataTable table = dataSet.Tables[&quot;Теплоснабжение_Точка учета1 (Потребление)&quot;];&#xD;&#xA; if (table != null)&#xD;&#xA; {&#xD;&#xA; // Получаем коллекцию кодов ошибок для всего отчетного периода&#xD;&#xA; for(int i = 0; i &lt; table.Rows.Count; i++)&#xD;&#xA; {&#xD;&#xA; DataRow row = table.Rows[i];&#xD;&#xA; var parameterErrors = new ParameterErrors();&#xD;&#xA; _deviceErrorCodes[(DateTime)row[&quot;DataDate&quot;]] = GetParameterErrors(Convert.ToString(row[&quot;DeviceErrorCodes&quot;]));&#xD;&#xA; } &#xD;&#xA; }&#xD;&#xA;}&#xD;&#xA;&#xD;&#xA;private ParameterErrors GetParameterErrors(string deviceErrorCodes)&#xD;&#xA;{&#xD;&#xA; var parameterErrors = new ParameterErrors();&#xD;&#xA; &#xD;&#xA; if (String.IsNullOrEmpty(deviceErrorCodes))&#xD;&#xA; {&#xD;&#xA; return parameterErrors;&#xD;&#xA; }&#xD;&#xA; &#xD;&#xA; // Получаем информцию об ошибках для текущей метки времени.&#xD;&#xA; // errorCodesString - строка с форматом: архив1|ввод1|канал1|код1; архив2|ввод2|канал2|код2; ... архивN|вводN|каналN|кодN&#xD;&#xA; string[] errorCodes = deviceErrorCodes.Split(new string[]{&quot;;&quot;}, StringSplitOptions.RemoveEmptyEntries);&#xD;&#xA;&#xD;&#xA; foreach (string errorCodeInfo in errorCodes)&#xD;&#xA; {&#xD;&#xA; // Получаем информацию об ошибке в виде строки: архив|ввод|канал|код&#xD;&#xA; string[] errorInfo = (errorCodeInfo.Trim()).Split(new string[]{&quot;|&quot;}, StringSplitOptions.RemoveEmptyEntries);&#xD;&#xA;&#xD;&#xA;&#x9;// Код типа архива &#xD;&#xA;&#x9;int archiveType = -1;&#xD;&#xA;&#x9;if (!String.IsNullOrEmpty(errorInfo[0].Trim()))&#xD;&#xA;&#x9;&#x9;archiveType = Convert.ToInt32(errorInfo[0]);&#xD;&#xA;&#x9;else&#xD;&#xA;&#x9; continue;&#x9;&#xD;&#xA;&#xD;&#xA;&#x9;// Номер теплового ввода &#xD;&#xA;&#x9;int heatLeadIn = -1;&#xD;&#xA;&#x9;if (!String.IsNullOrEmpty(errorInfo[1].Trim()))&#xD;&#xA;&#x9;&#x9;heatLeadIn = Convert.ToInt32(errorInfo[1]);&#xD;&#xA;&#x9;else&#xD;&#xA;&#x9; continue;&#x9;&#xD;&#xA;&#xD;&#xA;&#x9;// Номер канала &#xD;&#xA;&#x9;int channelNumber = -1;&#xD;&#xA;&#x9;if (!String.IsNullOrEmpty(errorInfo[2].Trim()))&#xD;&#xA;&#x9;&#x9;channelNumber = Convert.ToInt32(errorInfo[2]);&#xD;&#xA;&#x9;else&#xD;&#xA;&#x9; continue;&#x9;&#xD;&#xA;&#xD;&#xA;&#x9;// Код ошибки записанный в БД&#xD;&#xA;&#x9;int code = -1;&#xD;&#xA;&#x9;if (!String.IsNullOrEmpty(errorInfo[3].Trim()))&#xD;&#xA;&#x9;&#x9;code = Convert.ToInt32(errorInfo[3]);&#xD;&#xA;&#x9;else&#xD;&#xA;&#x9; continue;&#x9;&#xD;&#xA;&#x9;&#x9;&#xD;&#xA; // errorCode - код ошибки VKT7Easy&#xD;&#xA; // paramCode - параметр потребления&#xD;&#xA; int errorCode = -1, paramCode = -1; &#xD;&#xA; &#xD;&#xA;&#x9;if (archiveType == _archiveTypeDiagnostics) // Диагностическое сообщение (ДС)&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; errorCode = code &amp; 255;&#xD;&#xA;&#x9; paramCode = code &gt;&gt; 8;&#xD;&#xA;&#x9;}&#xD;&#xA;&#x9;else if (archiveType == _archiveTypeIncidents) // Нештатная ситуация (НС)&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; errorCode = code &amp; 7;&#xD;&#xA;&#x9; paramCode = code &gt;&gt; 4;&#xD;&#xA;&#x9;}&#xD;&#xA;&#x9;else&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; continue;&#xD;&#xA;&#x9;}&#xD;&#xA;&#x9;&#x9;&#xD;&#xA;&#x9;if (errorCode == 80) // Пропускаем, т.к. это просто признак наличия кокой-либо НС&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; continue;&#xD;&#xA;&#x9;}&#xD;&#xA;&#x9;&#x9;&#xD;&#xA;&#x9;if (parameterErrors.Is_t1(paramCode) &amp;&amp; !parameterErrors.t1.Contains(errorCode)) &#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.t1.Add(errorCode);&#xD;&#xA;&#x9;} &#xD;&#xA;&#x9;else if (parameterErrors.Is_t2(paramCode) &amp;&amp; !parameterErrors.t2.Contains(errorCode))&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.t2.Add(errorCode);&#xD;&#xA;&#x9;} &#xD;&#xA;&#x9;else if (parameterErrors.Is_V1(paramCode) &amp;&amp; !parameterErrors.V1.Contains(errorCode))&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.V1.Add(errorCode);&#xD;&#xA;&#x9;} &#xD;&#xA;&#x9;else if (parameterErrors.Is_V2(paramCode) &amp;&amp; !parameterErrors.V2.Contains(errorCode))&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.V2.Add(errorCode);&#xD;&#xA;&#x9;} &#xD;&#xA;&#x9;else if (parameterErrors.Is_M1(paramCode) &amp;&amp; !parameterErrors.M1.Contains(errorCode))&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.M1.Add(errorCode);&#xD;&#xA;&#x9;} &#xD;&#xA;&#x9;else if (parameterErrors.Is_M2(paramCode) &amp;&amp; !parameterErrors.M2.Contains(errorCode))&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.M2.Add(errorCode);&#xD;&#xA;&#x9;} &#xD;&#xA;&#x9;else if (parameterErrors.Is_P1(paramCode) &amp;&amp; !parameterErrors.P1.Contains(errorCode))&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.P1.Add(errorCode);&#xD;&#xA;&#x9;} &#xD;&#xA;&#x9;else if (parameterErrors.Is_P2(paramCode) &amp;&amp; !parameterErrors.P2.Contains(errorCode))&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.P1.Add(errorCode);&#xD;&#xA;&#x9;} &#xD;&#xA;&#x9;else if (parameterErrors.Is_Mg(paramCode) &amp;&amp; !parameterErrors.Mg.Contains(errorCode))&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.Mg.Add(errorCode);&#xD;&#xA;&#x9;} &#xD;&#xA;&#x9;else if (parameterErrors.Is_Qo(paramCode) &amp;&amp; !parameterErrors.Qo.Contains(errorCode))&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.Qo.Add(errorCode);&#xD;&#xA;&#x9;} &#xD;&#xA;&#x9;else if (parameterErrors.Is_Qg(paramCode) &amp;&amp; !parameterErrors.Qg.Contains(errorCode))&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.Qg.Add(errorCode);&#xD;&#xA;&#x9;} &#xD;&#xA;&#x9;else if (parameterErrors.Is_dt(paramCode) &amp;&amp; !parameterErrors.dt.Contains(errorCode))&#xD;&#xA;&#x9;{&#xD;&#xA;&#x9; parameterErrors.dt.Add(errorCode);&#xD;&#xA;&#x9;}&#xD;&#xA; } &#xD;&#xA;&#xD;&#xA; return parameterErrors;&#xD;&#xA;} &#xD;&#xA; &#xD;&#xA;// Отображение кодов ошибок по параметрам потребления для текущей метки времени&#xD;&#xA;private void tableCellIncident_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) &#xD;&#xA;{&#xD;&#xA; // Текущая мека времени&#xD;&#xA; DateTime dateTime = Convert.ToDateTime(GetCurrentColumnValue(&quot;DataDate&quot;));&#xD;&#xA; if (!_deviceErrorCodes.ContainsKey(dateTime))&#xD;&#xA; {&#xD;&#xA; return;&#xD;&#xA; } &#xD;&#xA;&#xD;&#xA; var parameterErrors = _deviceErrorCodes[dateTime];&#xD;&#xA; &#xD;&#xA; string paramName = ((XRTableCell)sender).Name;&#xD;&#xA; &#xD;&#xA; switch (paramName)&#xD;&#xA; {&#xD;&#xA; case &quot;t1&quot;:&#xD;&#xA; t1.Text = GetJoinedErrorCodes(parameterErrors.t1);&#xD;&#xA; break;&#xD;&#xA; case &quot;t2&quot;:&#xD;&#xA; t2.Text = GetJoinedErrorCodes(parameterErrors.t2);&#xD;&#xA; break;&#xD;&#xA; case &quot;V1&quot;:&#xD;&#xA; V1.Text = GetJoinedErrorCodes(parameterErrors.V1);&#xD;&#xA; break;&#xD;&#xA; case &quot;V2&quot;:&#xD;&#xA; V2.Text = GetJoinedErrorCodes(parameterErrors.V2);&#xD;&#xA; break;&#xD;&#xA; case &quot;M1&quot;:&#xD;&#xA; M1.Text = GetJoinedErrorCodes(parameterErrors.M1);&#xD;&#xA; break;&#xD;&#xA; case &quot;M2&quot;:&#xD;&#xA; M2.Text = GetJoinedErrorCodes(parameterErrors.M2);&#xD;&#xA; break;&#xD;&#xA; case &quot;P1&quot;:&#xD;&#xA; P1.Text = GetJoinedErrorCodes(parameterErrors.P1);&#xD;&#xA; break;&#xD;&#xA; case &quot;P2&quot;:&#xD;&#xA; P2.Text = GetJoinedErrorCodes(parameterErrors.P2);&#xD;&#xA; break;&#xD;&#xA; case &quot;Mg&quot;:&#xD;&#xA; Mg.Text = GetJoinedErrorCodes(parameterErrors.Mg);&#xD;&#xA; break;&#xD;&#xA; case &quot;Qo&quot;:&#xD;&#xA; Qo.Text = GetJoinedErrorCodes(parameterErrors.Qo);&#xD;&#xA; break;&#xD;&#xA; case &quot;Qg&quot;:&#xD;&#xA; Qg.Text = GetJoinedErrorCodes(parameterErrors.Qg);&#xD;&#xA; break;&#xD;&#xA; case &quot;dt&quot;:&#xD;&#xA; dt.Text = GetJoinedErrorCodes(parameterErrors.dt);&#xD;&#xA; break;&#xD;&#xA; }&#xD;&#xA;}&#xD;&#xA;&#xD;&#xA;private string GetJoinedErrorCodes(List&lt;int&gt; errorCodes)&#xD;&#xA;{&#xD;&#xA; string result = &quot;&quot;;&#xD;&#xA; string delimiter = errorCodes.Count &gt; 1 ? &quot;;&quot; : &quot;&quot;;&#xD;&#xA; foreach(int code in errorCodes)&#xD;&#xA; {&#xD;&#xA; result += code.ToString() + delimiter;&#xD;&#xA; }&#xD;&#xA; &#xD;&#xA; return delimiter == &quot;&quot; ? result : result.Substring(0, result.Length - 1);&#xD;&#xA;}&#xD;&#xA;" SnapGridSize="15.875" ReportUnit="TenthsOfAMillimeter" Landscape="true" Margins="220, 132, 99, 53" PaperKind="A4" PageWidth="2970" PageHeight="2100" Version="22.1" RequestParameters="false" DataMember="ArchiveParent" DataSource="#Ref-0" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Tag_type="System.String" Tag="9|28676">
|
|
<FormattingRuleSheet>
|
|
<Item1 Ref="2" Name="HourFormat" DataMember="ArchiveParent" Condition="[Parameters.DATA_TYPE] == 128">
|
|
<Formatting Ref="3" BorderStyle="Inset" StringFormat="Near;Near;0;None;Character;GenericDefault" />
|
|
</Item1>
|
|
</FormattingRuleSheet>
|
|
<Parameters>
|
|
<Item1 Ref="5" Description="Дата начала отчетного периода" ValueInfo="2023-03-10" Name="DATE_START" Type="#Ref-4" />
|
|
<Item2 Ref="6" Description="Дата окончания отчетного периода" ValueInfo="2023-03-10" Name="DATE_END" Type="#Ref-4" />
|
|
<Item3 Ref="8" Description="Идентификатор учетной записи" ValueInfo="0" Name="ACCOUNT_ID" Type="#Ref-7" />
|
|
<Item4 Ref="9" Description="Тип данных" ValueInfo="0" Name="DATA_TYPE" Type="#Ref-7" />
|
|
<Item5 Ref="11" Description="Параметр задаваемый пользователем при формировании отчета." Name="USER_PARAMETER" />
|
|
<Item6 Ref="13" Description="Признак использования расчетного часа при получении показаний интеграторов." ValueInfo="False" Name="UseReportingHour" Type="#Ref-12" />
|
|
<Item7 Ref="14" Description="Не отображать скрытые параметры." ValueInfo="False" Name="HideNotSelectedParameters" Type="#Ref-12" />
|
|
<Item8 Ref="16" Description="Удельны расход газа нормативный по карте" Name="УРГн" Type="#Ref-15" />
|
|
<Item9 Ref="17" Description="Удельная теплота сгорания газа по паспорту" Name="ПГ" Type="#Ref-7" />
|
|
<Item10 Ref="18" Description="КПД котла на котельной" Name="КПД" Type="#Ref-15" />
|
|
<Item11 Ref="19" Name="Отчет_2" />
|
|
<Item12 Ref="20" Description="тест" Name="tttt" />
|
|
<Item13 Ref="21" Description="ffffffffffffffffff" Name="qweqwerq" Type="#Ref-7" />
|
|
<Item14 Ref="22" Description="sssssssss" Name="sssssssssssssssssss" />
|
|
<Item15 Ref="23" Description="Количество секций объекта учета" Name="SectionOrderNumber" Type="#Ref-7" />
|
|
</Parameters>
|
|
<CalculatedFields>
|
|
<Item1 Ref="24" Name="deltaM_Start" Expression="[M1_Start] - [M2_Start]" DataMember="Показания.Теплоснабжение Точка учета1 (Показания)" />
|
|
<Item2 Ref="25" Name="deltaM_End" Expression="[M1_End] - [M2_End]" DataMember="Показания.Теплоснабжение Точка учета1 (Показания)" />
|
|
<Item3 Ref="26" Name="deltaM_fin" Expression="[M1_Delta]-[M2_Delta]" DataMember="Показания.Теплоснабжение Точка учета1 (Показания)" />
|
|
<Item4 Ref="27" Name="CounterType" Expression="Iif(IsNull([ГВС Точка учета1 (Точки учета).HeatMeterTitle]), [Теплоснабжение Точка учета1 (Точки учета).HeatMeterTitle],[ГВС Точка учета1 (Точки учета).HeatMeterTitle])" DataMember="Точки учета" />
|
|
<Item5 Ref="28" Name="M1maxHour" Expression="[M1max]/24" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений)" />
|
|
<Item6 Ref="29" Name="M1minHour" Expression="[M1min]/24" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений)" />
|
|
<Item7 Ref="30" Name="V1maxHour" Expression="[V1max]/24" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений)" />
|
|
<Item8 Ref="31" Name="V1minHour" Expression="[V1min]/24" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений)" />
|
|
<Item9 Ref="32" Name="M2maxHour" Expression="[M2max]/24" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений)" />
|
|
<Item10 Ref="33" Name="M2minHour" Expression="[M2min]/24" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений)" />
|
|
<Item11 Ref="34" Name="V2maxHour" Expression="[V2max]/24" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений)" />
|
|
<Item12 Ref="35" Name="V2minHour" Expression="[V2min]/24" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений)" />
|
|
<Item13 Ref="36" Name="ContractFlowDay" Expression="[ContractFlow]*24" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета)" />
|
|
<Item14 Ref="37" Name="ContractFlowDayHotWater" Expression="[ContractFlow]*24" DataMember="Точки учета.ГВС Точка учета1 (Точки учета)" />
|
|
</CalculatedFields>
|
|
<Bands>
|
|
<Item1 Ref="38" ControlType="ReportHeaderBand" Name="ReportHeader" HeightF="527.7328" Dpi="254" Padding="0,0,0,0,254" Tag_type="System.Int32" Tag="25647">
|
|
<Controls>
|
|
<Item1 Ref="39" ControlType="XRLabel" Name="label48" Text="т/сут" TextAlignment="MiddleLeft" SizeF="93.99872,35.00006" LocationFloat="770.375,350.833557" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="40" UseFont="false" />
|
|
</Item1>
|
|
<Item2 Ref="41" ControlType="XRLabel" Name="label47" Text="label47" TextAlignment="MiddleLeft" SizeF="137.583374,35.00006" LocationFloat="628.9658,350.833557" Dpi="254" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="42" FormatString="{0:F2}" PropertyName="Text" DataMember="Точки учета.ГВС Точка учета1 (Точки учета).ContractFlowDayHotWater" />
|
|
</DataBindings>
|
|
<StylePriority Ref="43" UseTextAlignment="false" />
|
|
</Item2>
|
|
<Item3 Ref="44" ControlType="XRLabel" Name="label46" Text="Мгвс =" TextAlignment="MiddleLeft" SizeF="114.551819,35.00006" LocationFloat="514.414,350.833557" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="45" UseFont="false" />
|
|
</Item3>
|
|
<Item4 Ref="46" ControlType="XRLabel" Name="label45" Text="т/сут" TextAlignment="MiddleLeft" SizeF="85.06766,35.00006" LocationFloat="392.323181,350.833557" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="47" UseFont="false" />
|
|
</Item4>
|
|
<Item5 Ref="48" ControlType="XRLabel" Name="label44" Text="label44" TextAlignment="MiddleLeft" SizeF="153.458328,35.00006" LocationFloat="232.423477,350.833557" Dpi="254" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="49" FormatString="{0:F2}" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).ContractFlowDay" />
|
|
</DataBindings>
|
|
<StylePriority Ref="50" UseTextAlignment="false" />
|
|
</Item5>
|
|
<Item6 Ref="51" ControlType="XRLabel" Name="label43" Text="М сет. воды =" TextAlignment="MiddleLeft" SizeF="225.676834,35.00006" LocationFloat="6.74660063,350.833557" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="52" UseFont="false" />
|
|
</Item6>
|
|
<Item7 Ref="53" ControlType="XRLabel" Name="label16" Text="Договорные расходы:" TextAlignment="MiddleLeft" SizeF="357.968475,35.00006" LocationFloat="6.00350952,307.906036" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="54" UseFont="false" />
|
|
</Item7>
|
|
<Item8 Ref="55" ControlType="XRLabel" Name="label42" Text="label42" SizeF="173.437744,35" LocationFloat="1468.1748,470.3789" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="56" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Устройство).SoftwareVersion" />
|
|
</DataBindings>
|
|
<StylePriority Ref="57" UseFont="false" />
|
|
</Item8>
|
|
<Item9 Ref="58" ControlType="XRLabel" Name="label41" Text="ПО" TextAlignment="MiddleLeft" SizeF="88.6795654,35" LocationFloat="1359.94934,470.3789" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="59" UseFont="false" UseTextAlignment="false" />
|
|
</Item9>
|
|
<Item10 Ref="60" ControlType="XRLabel" Name="label36" Text="label36" SizeF="176.508,35.00006" LocationFloat="608.62854,257.6351" Dpi="254" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="61" FormatString="{0}" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Устройство).NetworkAddress" />
|
|
</DataBindings>
|
|
</Item10>
|
|
<Item11 Ref="62" ControlType="XRLabel" Name="label40" Text="label40" SizeF="150.257538,34.9999542" LocationFloat="1271.3241,207.218445" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="63" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Устройство).Model" />
|
|
</DataBindings>
|
|
<StylePriority Ref="64" UseFont="false" />
|
|
</Item11>
|
|
<Item12 Ref="65" ControlType="XRLabel" Name="label14" Text="Ввод1" TextAlignment="MiddleLeft" SizeF="139.407532,35" LocationFloat="458.356079,470.378754" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="66" UseFont="false" UseTextAlignment="false" />
|
|
</Item12>
|
|
<Item13 Ref="67" ControlType="XRLabel" Name="label21" Text="КС=" TextAlignment="MiddleLeft" SizeF="88.6795654,34.99994" LocationFloat="1072.95264,470.378754" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="68" UseFont="false" UseTextAlignment="false" />
|
|
</Item13>
|
|
<Item14 Ref="69" ControlType="XRLabel" Name="label20" AutoWidth="true" Text="Схема подключения:" TextAlignment="MiddleLeft" SizeF="322.438354,34.99994" LocationFloat="603.8033,470.378754" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="70" UseFont="false" UseTextAlignment="false" />
|
|
</Item14>
|
|
<Item15 Ref="71" ControlType="XRLabel" Name="label27" Text="Тхв=" TextAlignment="MiddleLeft" SizeF="107.639992,35.0000153" LocationFloat="6.00350952,403.447449" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="72" UseFont="false" UseTextAlignment="false" />
|
|
</Item15>
|
|
<Item16 Ref="73" ControlType="XRLabel" Name="label24" Text="label24" TextAlignment="MiddleLeft" SizeF="154.52,35" LocationFloat="1161.6322,470.378754" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="74" FormatString="{0:F1}" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Устройство).SettingsChecksum" />
|
|
</DataBindings>
|
|
<StylePriority Ref="75" UseFont="false" UseTextAlignment="false" />
|
|
</Item16>
|
|
<Item17 Ref="76" ControlType="XRLabel" Name="label19" Text="label19" TextAlignment="MiddleLeft" SizeF="154.52,35" LocationFloat="286.181335,470.378754" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="77" FormatString="{0:F1}" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Устройство).SerialNumber" />
|
|
</DataBindings>
|
|
<StylePriority Ref="78" UseFont="false" UseTextAlignment="false" />
|
|
</Item17>
|
|
<Item18 Ref="79" ControlType="XRLabel" Name="label29" Multiline="true" Text="ОТЧЕТ&#xD;&#xA;о суточных параметрах теплоснабжения&#xD;&#xA;" TextAlignment="MiddleCenter" SizeF="1222.37585,77.15251" LocationFloat="269.875,10.875" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="80" UseFont="false" UseTextAlignment="false" />
|
|
</Item18>
|
|
<Item19 Ref="81" ControlType="XRLabel" Name="label18" Text="Заводской номер:" TextAlignment="MiddleLeft" SizeF="284.259979,34.99994" LocationFloat="1.92131364,470.378754" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="82" UseFont="false" />
|
|
</Item19>
|
|
<Item20 Ref="83" ControlType="XRLabel" Name="label69" Text="Тип расходомера:" TextAlignment="MiddleLeft" SizeF="288.522339,35" LocationFloat="977.477661,207.218445" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="84" UseFont="false" />
|
|
</Item20>
|
|
<Item21 Ref="85" ControlType="XRLabel" Name="label68" Text="Договор №: _____________________" TextAlignment="MiddleLeft" SizeF="668.959961,35" LocationFloat="977.477661,156.801819" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="86" UseFont="false" />
|
|
</Item21>
|
|
<Item22 Ref="87" ControlType="XRLabel" Name="label71" AutoWidth="true" Text="м3/ч" TextAlignment="MiddleLeft" SizeF="85.3806152,35" LocationFloat="1641.61938,307.906036" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,0,0,0,254">
|
|
<StylePriority Ref="88" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item22>
|
|
<Item23 Ref="89" ControlType="XRLabel" Name="label70" AutoWidth="true" CanShrink="true" Text="label70" TextAlignment="MiddleRight" SizeF="71.12,35" LocationFloat="115.400017,403.4475" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="90" FormatString="{0}" PropertyName="Text" DataMember="Объект учета.ColdWaterTemp" />
|
|
</DataBindings>
|
|
<StylePriority Ref="91" UseFont="false" UseTextAlignment="false" />
|
|
</Item23>
|
|
<Item24 Ref="92" ControlType="XRLabel" Name="label67" AutoWidth="true" Text="м3/ч" TextAlignment="MiddleLeft" SizeF="79.375,35" LocationFloat="1226.848,350.833557" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,0,0,0,254">
|
|
<StylePriority Ref="93" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item24>
|
|
<Item25 Ref="94" ControlType="XRLabel" Name="label64" AutoWidth="true" Text="м3/ч" TextAlignment="MiddleLeft" SizeF="79.375,35" LocationFloat="1226.848,307.906036" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,0,0,0,254">
|
|
<StylePriority Ref="95" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item25>
|
|
<Item26 Ref="96" ControlType="XRLabel" Name="label30" Text="Пределы измерений:" TextAlignment="MiddleLeft" SizeF="338.045044,35" LocationFloat="930.647766,257.6352" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="97" UseFont="false" />
|
|
</Item26>
|
|
<Item27 Ref="98" ControlType="XRLabel" Name="label66" Text="G обр max=" TextAlignment="MiddleLeft" SizeF="193.376831,35.00003" LocationFloat="920.441162,350.833557" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="99" UseFont="false" UseTextAlignment="false" />
|
|
</Item27>
|
|
<Item28 Ref="100" ControlType="XRLabel" Name="label65" AutoWidth="true" Text="м3/ч" TextAlignment="MiddleLeft" SizeF="85.38049,34.99994" LocationFloat="1643.61938,350.833557" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,0,0,0,254">
|
|
<StylePriority Ref="101" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item28>
|
|
<Item29 Ref="102" ControlType="XRLabel" Name="label6" Text="G под min=" TextAlignment="MiddleLeft" SizeF="190.386475,35" LocationFloat="1332.2229,307.906036" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="103" UseFont="false" UseTextAlignment="false" />
|
|
</Item29>
|
|
<Item30 Ref="104" ControlType="XRLabel" Name="label5" Text="Адрес:" TextAlignment="MiddleLeft" SizeF="215.9,35" LocationFloat="6.41746569,207.218445" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="105" UseFont="false" UseTextAlignment="false" />
|
|
</Item30>
|
|
<Item31 Ref="106" ControlType="XRLabel" Name="label8" AutoWidth="true" Text="2,00" TextAlignment="MiddleRight" SizeF="113.029968,35" LocationFloat="1113.81812,350.833557" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,0,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="107" FormatString="{0:#.00}" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений).V2maxHour" />
|
|
</DataBindings>
|
|
<StylePriority Ref="108" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item31>
|
|
<Item32 Ref="109" ControlType="XRLabel" Name="label7" Text="G под max=" TextAlignment="MiddleLeft" SizeF="193.37854,35" LocationFloat="920.4393,307.906036" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="110" UseFont="false" UseTextAlignment="false" />
|
|
</Item32>
|
|
<Item33 Ref="111" ControlType="XRLabel" Name="label4" AutoWidth="true" Text="2,00" TextAlignment="MiddleRight" SizeF="113.029968,34.99997" LocationFloat="1113.81812,307.906036" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,0,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="112" FormatString="{0:#.00}" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений).V1maxHour" />
|
|
</DataBindings>
|
|
<StylePriority Ref="113" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item33>
|
|
<Item34 Ref="114" ControlType="XRLabel" Name="labelHeatMeterTitle" Text="labelHeatMeterTitle" TextAlignment="MiddleLeft" SizeF="100.159119,35.0000458" LocationFloat="934.4961,470.378754" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="115" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Устройство).Scheme" />
|
|
</DataBindings>
|
|
<StylePriority Ref="116" UseFont="false" UseTextAlignment="false" />
|
|
</Item34>
|
|
<Item35 Ref="117" ControlType="XRLabel" Name="label2" Text="label2" TextAlignment="MiddleLeft" SizeF="735.259155,35" LocationFloat="222.3175,207.218445" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="118" PropertyName="Text" DataMember="Объект учета.NodeAddress" />
|
|
</DataBindings>
|
|
<StylePriority Ref="119" UseFont="false" UseTextAlignment="false" />
|
|
</Item35>
|
|
<Item36 Ref="120" ControlType="XRLabel" Name="label3" AutoWidth="true" Text="1,00" TextAlignment="MiddleRight" SizeF="118.34436,35" LocationFloat="1522.60938,307.906036" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,0,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="121" FormatString="{0:F3}" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений).V1minHour" />
|
|
</DataBindings>
|
|
<StylePriority Ref="122" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item36>
|
|
<Item37 Ref="123" ControlType="XRLabel" Name="label23" Text="Тепловычислитель ВКТ-7 сет. адрес:" TextAlignment="MiddleLeft" SizeF="584.3926,35.00006" LocationFloat="6.417486,257.6351" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="124" UseFont="false" />
|
|
</Item37>
|
|
<Item38 Ref="125" ControlType="XRLabel" Name="label12" Text="Абонент:" TextAlignment="MiddleLeft" SizeF="215.9,35" LocationFloat="6.41746569,156.801819" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="126" UseFont="false" UseTextAlignment="false" />
|
|
</Item38>
|
|
<Item39 Ref="127" ControlType="XRLabel" Name="label22" Text="за период с" TextAlignment="MiddleCenter" SizeF="218.35,35" LocationFloat="566.7866,91.8018341" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="128" UseFont="false" UseTextAlignment="false" />
|
|
</Item39>
|
|
<Item40 Ref="129" ControlType="XRLabel" Name="label28" Text="labelDateFrom" TextAlignment="MiddleCenter" SizeF="172.35,35" LocationFloat="785.2266,91.8018341" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="131" Parameter="#Ref-5" FormatString="{0:dd/MM/yy}" PropertyName="Text" DataMember="DATE_START" />
|
|
</DataBindings>
|
|
<StylePriority Ref="132" UseFont="false" UseTextAlignment="false" />
|
|
</Item40>
|
|
<Item41 Ref="133" ControlType="XRLabel" Name="label13" AutoWidth="true" Text="label13" TextAlignment="MiddleLeft" SizeF="735.6291,35" LocationFloat="222.3175,156.801819" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="134" PropertyName="Text" DataMember="Объект учета.CustomerTitle" />
|
|
</DataBindings>
|
|
<StylePriority Ref="135" UseFont="false" UseTextAlignment="false" />
|
|
</Item41>
|
|
<Item42 Ref="136" ControlType="XRLabel" Name="label17" Text="ºС" TextAlignment="MiddleLeft" SizeF="50.8,35" LocationFloat="200.5836,403.447449" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="3,0,0,0,254">
|
|
<StylePriority Ref="137" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item42>
|
|
<Item43 Ref="138" ControlType="XRLabel" Name="label11" Text="G обр min=" TextAlignment="MiddleLeft" SizeF="190.386475,35" LocationFloat="1332.2229,350.833557" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="139" UseFont="false" UseTextAlignment="false" />
|
|
</Item43>
|
|
<Item44 Ref="140" ControlType="XRLabel" Name="label10" AutoWidth="true" Text="1,00" TextAlignment="MiddleRight" SizeF="119.010132,35" LocationFloat="1522.60938,350.833557" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,0,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="141" FormatString="{0:F3}" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Диапазоны измерений).V2minHour" />
|
|
</DataBindings>
|
|
<StylePriority Ref="142" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item44>
|
|
<Item45 Ref="143" ControlType="XRLabel" Name="label26" Text="по" TextAlignment="MiddleCenter" SizeF="63.5,35" LocationFloat="957.946655,91.8018341" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="144" UseFont="false" UseTextAlignment="false" />
|
|
</Item45>
|
|
<Item46 Ref="145" ControlType="XRLabel" Name="label25" Text="labelDateTo" TextAlignment="MiddleCenter" SizeF="182.47,35" LocationFloat="1021.44659,91.8018341" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="146" Parameter="#Ref-6" FormatString="{0:dd/MM/yy}" PropertyName="Text" DataMember="DATE_END" />
|
|
</DataBindings>
|
|
<StylePriority Ref="147" UseFont="false" UseTextAlignment="false" />
|
|
</Item46>
|
|
</Controls>
|
|
<StylePriority Ref="148" UsePadding="false" />
|
|
</Item1>
|
|
<Item2 Ref="149" ControlType="DetailBand" Name="Detail" HeightF="35" TextAlignment="TopLeft" Dpi="254" Padding="0,0,0,0,254" Tag_type="System.String" Tag="1;1|2;1|3;1|5;1|6;1|">
|
|
<Controls>
|
|
<Item1 Ref="150" ControlType="XRTable" Name="tableDetail" SizeF="2538.8103,34.99996" LocationFloat="0,0" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="DimGray" Borders="Right">
|
|
<Rows>
|
|
<Item1 Ref="151" ControlType="XRTableRow" Name="rowDetail" Weight="1.1666666666666665" Dpi="254">
|
|
<Cells>
|
|
<Item1 Ref="152" ControlType="XRTableCell" Name="tableCell_DataDate" Weight="0.072340827921929737" CanShrink="true" TextFormatString="{0:dd.MM.yy}" TextAlignment="MiddleRight" WordWrap="false" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Left, Right, Bottom" BorderDashStyle="Solid">
|
|
<DataBindings>
|
|
<Item1 Ref="153" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).DataDate" />
|
|
</DataBindings>
|
|
<StylePriority Ref="154" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item1>
|
|
<Item2 Ref="155" ControlType="XRTableCell" Name="tableCell_T_in" Weight="0.059830759365463115" CanShrink="true" Text="tableCell_T_in" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="156" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="157" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).T1" />
|
|
</DataBindings>
|
|
<StylePriority Ref="158" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item2>
|
|
<Item3 Ref="159" ControlType="XRTableCell" Name="tableCell_T_out" Weight="0.059830761974064471" CanShrink="true" Text="tableCell_T_out" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="160" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="161" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).T2" />
|
|
</DataBindings>
|
|
<StylePriority Ref="162" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item3>
|
|
<Item4 Ref="163" ControlType="XRTableCell" Name="tableCell_M_in" Weight="0.059830759402704756" CanShrink="true" Text="tableCell_M_in" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="164" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="165" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).T_delta" />
|
|
</DataBindings>
|
|
<StylePriority Ref="166" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item4>
|
|
<Item5 Ref="167" ControlType="XRTableCell" Name="tableCell_M_out" Weight="0.059830757930428385" CanShrink="true" Text="tableCell_M_out" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="168" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="169" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).V1" />
|
|
</DataBindings>
|
|
<StylePriority Ref="170" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item5>
|
|
<Item6 Ref="171" ControlType="XRTableCell" Name="tableCell_M_delta" Weight="0.05983076228781127" CanShrink="true" Text="tableCell_M_delta" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="172" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="173" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).M1" />
|
|
</DataBindings>
|
|
<StylePriority Ref="174" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item6>
|
|
<Item7 Ref="175" ControlType="XRTableCell" Name="tableCell_P_in" Weight="0.0598307627543871" CanShrink="true" Text="tableCell_P_in" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="176" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="177" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).V2" />
|
|
</DataBindings>
|
|
<StylePriority Ref="178" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item7>
|
|
<Item8 Ref="179" ControlType="XRTableCell" Name="tableCell_P_out" Weight="0.059830760853676071" CanShrink="true" Text="tableCell_P_out" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="180" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="181" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).M2" />
|
|
</DataBindings>
|
|
<StylePriority Ref="182" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item8>
|
|
<Item9 Ref="183" ControlType="XRTableCell" Name="tableCell_H_in" Weight="0.059830760991019458" CanShrink="true" Text="tableCell_H_in" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="184" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="185" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).M" />
|
|
</DataBindings>
|
|
<StylePriority Ref="186" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item9>
|
|
<Item10 Ref="187" ControlType="XRTableCell" Name="tableCell_H_out" Weight="0.059830761546319576" CanShrink="true" Text="tableCell_H_out" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="188" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="189" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).P1" />
|
|
</DataBindings>
|
|
<StylePriority Ref="190" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item10>
|
|
<Item11 Ref="191" ControlType="XRTableCell" Name="tableCell_H_delta" Weight="0.0598307616453976" CanShrink="true" Text="tableCell_H_delta" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="192" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="193" FormatString="{0:F2}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).P2" />
|
|
</DataBindings>
|
|
<StylePriority Ref="194" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item11>
|
|
<Item12 Ref="195" ControlType="XRTableCell" Name="tableCell_WorkTime" Weight="0.059830756439816481" CanShrink="true" Text="tableCell_WorkTime" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="196" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<Summary Ref="197" FormatString="{0:F2}" />
|
|
<DataBindings>
|
|
<Item1 Ref="198" FormatString="{0:F3}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).Q" />
|
|
</DataBindings>
|
|
<StylePriority Ref="199" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item12>
|
|
<Item13 Ref="200" ControlType="XRTableCell" Name="tableCell36" Weight="0.059830759424952848" CanShrink="true" Text="tableCell36" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="201" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="202" FormatString="{0:F1}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).WorkTime" />
|
|
</DataBindings>
|
|
<StylePriority Ref="203" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item13>
|
|
<Item14 Ref="204" ControlType="XRTableCell" Name="tableCell37" Weight="0.059830760980796725" CanShrink="true" Text="tableCell37" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="205" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<Summary Ref="206" FormatString="{0:#,#}" />
|
|
<DataBindings>
|
|
<Item1 Ref="207" FormatString="{0:F1}" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).StopWorkTime" />
|
|
</DataBindings>
|
|
<StylePriority Ref="208" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item14>
|
|
<Item15 Ref="209" ControlType="XRTableCell" Name="t1" Weight="0.029012851072008097" CanShrink="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="210" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="211" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item15>
|
|
<Item16 Ref="212" ControlType="XRTableCell" Name="t2" Weight="0.029013654101607354" Multiline="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="213" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="214" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item16>
|
|
<Item17 Ref="215" ControlType="XRTableCell" Name="dt" Weight="0.029013654101607354" Multiline="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="216" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="217" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item17>
|
|
<Item18 Ref="218" ControlType="XRTableCell" Name="V1" Weight="0.029013654101607354" Multiline="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="219" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="220" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item18>
|
|
<Item19 Ref="221" ControlType="XRTableCell" Name="M1" Weight="0.029013654101607354" Multiline="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="222" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="223" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item19>
|
|
<Item20 Ref="224" ControlType="XRTableCell" Name="V2" Weight="0.029013654101607354" Multiline="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="225" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="226" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item20>
|
|
<Item21 Ref="227" ControlType="XRTableCell" Name="M2" Weight="0.029013654101607354" Multiline="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="228" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="229" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item21>
|
|
<Item22 Ref="230" ControlType="XRTableCell" Name="Mg" Weight="0.029013654101607354" Multiline="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="231" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="232" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item22>
|
|
<Item23 Ref="233" ControlType="XRTableCell" Name="P1" Weight="0.029013654101607354" Multiline="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="234" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="235" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item23>
|
|
<Item24 Ref="236" ControlType="XRTableCell" Name="P2" Weight="0.029013654101607354" Multiline="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="237" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="238" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item24>
|
|
<Item25 Ref="239" ControlType="XRTableCell" Name="Qo" Weight="0.029013010157230488" Multiline="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="240" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="241" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item25>
|
|
<Item26 Ref="242" ControlType="XRTableCell" Name="Qg" Weight="0.029014151283320869" Multiline="true" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom" BorderDashStyle="Solid">
|
|
<Scripts Ref="243" OnBeforePrint="tableCellIncident_BeforePrint" />
|
|
<StylePriority Ref="244" UseFont="false" UsePadding="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item26>
|
|
</Cells>
|
|
</Item1>
|
|
</Rows>
|
|
<StylePriority Ref="245" UseFont="false" UseBorderColor="false" UseBorders="false" />
|
|
</Item1>
|
|
</Controls>
|
|
</Item2>
|
|
<Item3 Ref="246" ControlType="PageHeaderBand" Name="PageHeader" HeightF="70.00001" Dpi="254" BackColor="0,0,0,0" BorderColor="Black" BorderWidth="15" BorderDashStyle="Dash">
|
|
<Controls>
|
|
<Item1 Ref="247" ControlType="XRTable" Name="tablePageHeader" TextAlignment="MiddleCenter" SizeF="2538.8103,70.00001" LocationFloat="0,0" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="DimGray" Borders="All" BorderDashStyle="Solid">
|
|
<Rows>
|
|
<Item1 Ref="248" ControlType="XRTableRow" Name="rowPageHeader1" Weight="0.60975609756097549" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" ForeColor="Black" BackColor="Transparent" Padding="0,0,0,0,254" BorderColor="Black" Borders="All" BorderWidth="1" BorderDashStyle="Dash">
|
|
<Cells>
|
|
<Item1 Ref="249" ControlType="XRTableCell" Name="tableCell1" Weight="0.18691268335779598" CanGrow="false" CanShrink="true" Text="Дата" TextAlignment="BottomCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Left, Top, Right" BorderDashStyle="Solid">
|
|
<StylePriority Ref="250" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item1>
|
|
<Item2 Ref="251" ControlType="XRTableCell" Name="tableCell_T1" Weight="0.15458944076063183" Text="t1" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="252" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item2>
|
|
<Item3 Ref="253" ControlType="XRTableCell" Name="tableCell_T2" Weight="0.15458943600824468" Text="t2" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="254" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item3>
|
|
<Item4 Ref="255" ControlType="XRTableCell" Name="tableCell_M1" Weight="0.15458944109429151" Text="dt" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="256" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item4>
|
|
<Item5 Ref="257" ControlType="XRTableCell" Name="tableCell_M2" Weight="0.15458943165925687" Text="V1" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="258" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item5>
|
|
<Item6 Ref="259" ControlType="XRTableCell" Name="tableCell_Mdelta" Weight="0.15458943898546137" Text="М1" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="260" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item6>
|
|
<Item7 Ref="261" ControlType="XRTableCell" Name="tableCell4" Weight="0.1545894370738396" Text="V2" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="262" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item7>
|
|
<Item8 Ref="263" ControlType="XRTableCell" Name="tableCell7" Weight="0.15458943803436492" Text="M2" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="264" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item8>
|
|
<Item9 Ref="265" ControlType="XRTableCell" Name="tableCell_Q1" Weight="0.15458943473172604" Text="Mг" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="266" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item9>
|
|
<Item10 Ref="267" ControlType="XRTableCell" Name="tableCell_Q2" Weight="0.15458943547544923" Text="P1" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="268" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item10>
|
|
<Item11 Ref="269" ControlType="XRTableCell" Name="tableCell_Qdelta" Weight="0.15458944063156224" Text="P2" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="270" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item11>
|
|
<Item12 Ref="271" ControlType="XRTableCell" Name="tableCell17" Weight="0.15458943186986382" CanGrow="false" CanShrink="true" Multiline="true" Text=" Q0&#xD;&#xA;" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="272" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" />
|
|
</Item12>
|
|
<Item13 Ref="273" ControlType="XRTableCell" Name="tableCell18" Weight="0.15458943423182059" Text="ВНР" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="274" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item13>
|
|
<Item14 Ref="275" ControlType="XRTableCell" Name="tableCell19" Weight="0.15458943561848529" Text="ВОС" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="276" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item14>
|
|
<Item15 Ref="277" ControlType="XRTableCell" Name="tableCell9" Weight="0.89957581676858855" Multiline="true" Text="Н.С." TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Top, Right, Bottom" BorderDashStyle="Solid">
|
|
<StylePriority Ref="278" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item15>
|
|
</Cells>
|
|
<StylePriority Ref="279" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item1>
|
|
<Item2 Ref="280" ControlType="XRTableRow" Name="rowPageHeader2" Weight="0.60975609756097549" Dpi="254" BorderColor="Black" BorderWidth="1">
|
|
<Cells>
|
|
<Item1 Ref="281" ControlType="XRTableCell" Name="tableCell85" Weight="0.18691268335779598" Dpi="254" Borders="Left, Right, Bottom">
|
|
<StylePriority Ref="282" UseBorders="false" />
|
|
</Item1>
|
|
<Item2 Ref="283" ControlType="XRTableCell" Name="tableCell86" Weight="0.15458944076063183" Text="ºС" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="284" UseBorders="false" />
|
|
</Item2>
|
|
<Item3 Ref="285" ControlType="XRTableCell" Name="tableCell87" Weight="0.15458943600824468" Text="ºС" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="286" UseBorders="false" />
|
|
</Item3>
|
|
<Item4 Ref="287" ControlType="XRTableCell" Name="tableCell88" Weight="0.15458944109429151" Text="ºС" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="288" UseBorders="false" />
|
|
</Item4>
|
|
<Item5 Ref="289" ControlType="XRTableCell" Name="tableCell89" Weight="0.15458943165925687" Text="м3" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="290" UseBorders="false" />
|
|
</Item5>
|
|
<Item6 Ref="291" ControlType="XRTableCell" Name="tableCell90" Weight="0.15458943898546137" Text="т" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="292" UseBorders="false" />
|
|
</Item6>
|
|
<Item7 Ref="293" ControlType="XRTableCell" Name="tableCell91" Weight="0.1545894370738396" Text="м3" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="294" UseBorders="false" />
|
|
</Item7>
|
|
<Item8 Ref="295" ControlType="XRTableCell" Name="tableCell92" Weight="0.15458943803436492" Text="т" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="296" UseBorders="false" />
|
|
</Item8>
|
|
<Item9 Ref="297" ControlType="XRTableCell" Name="tableCell93" Weight="0.15458943473172604" Text="т" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="298" UseBorders="false" />
|
|
</Item9>
|
|
<Item10 Ref="299" ControlType="XRTableCell" Name="tableCell94" Weight="0.15458943547544923" Text="кг/см2" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="300" UseBorders="false" />
|
|
</Item10>
|
|
<Item11 Ref="301" ControlType="XRTableCell" Name="tableCell95" Weight="0.15458944063156224" Text="кг/см2" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="302" UseBorders="false" />
|
|
</Item11>
|
|
<Item12 Ref="303" ControlType="XRTableCell" Name="tableCell96" Weight="0.15458943186986382" Text="Гкал" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="304" UseBorders="false" />
|
|
</Item12>
|
|
<Item13 Ref="305" ControlType="XRTableCell" Name="tableCell97" Weight="0.15458943423182059" Text="ч" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="306" UseBorders="false" />
|
|
</Item13>
|
|
<Item14 Ref="307" ControlType="XRTableCell" Name="tableCell98" Weight="0.15458943507942557" Text="ч" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="308" UseBorders="false" />
|
|
</Item14>
|
|
<Item15 Ref="309" ControlType="XRTableCell" Name="tableCell10" Weight="0.074963567937655518" Multiline="true" Text="t1" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="310" UseBorders="false" />
|
|
</Item15>
|
|
<Item16 Ref="311" ControlType="XRTableCell" Name="tableCell21" Weight="0.074964901825761182" Multiline="true" Text="t2" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="312" UseBorders="false" />
|
|
</Item16>
|
|
<Item17 Ref="313" ControlType="XRTableCell" Name="tableCell23" Weight="0.07496489824359015" Multiline="true" Text="dt" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="314" UseBorders="false" />
|
|
</Item17>
|
|
<Item18 Ref="315" ControlType="XRTableCell" Name="tableCell25" Weight="0.074964901789756483" Multiline="true" Text="V1" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="316" UseBorders="false" />
|
|
</Item18>
|
|
<Item19 Ref="317" ControlType="XRTableCell" Name="tableCell27" Weight="0.074964891390938759" Multiline="true" Text="M1" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="318" UseBorders="false" />
|
|
</Item19>
|
|
<Item20 Ref="319" ControlType="XRTableCell" Name="tableCell29" Weight="0.0749648913909387" Multiline="true" Text="V2" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="320" UseBorders="false" />
|
|
</Item20>
|
|
<Item21 Ref="321" ControlType="XRTableCell" Name="tableCell31" Weight="0.074964901789756538" Multiline="true" Text="M2" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="322" UseBorders="false" />
|
|
</Item21>
|
|
<Item22 Ref="323" ControlType="XRTableCell" Name="tableCell33" Weight="0.074964912188574317" Multiline="true" Text="Mг" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="324" UseBorders="false" />
|
|
</Item22>
|
|
<Item23 Ref="325" ControlType="XRTableCell" Name="tableCell35" Weight="0.074964912188574262" Multiline="true" Text="P1" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="326" UseBorders="false" />
|
|
</Item23>
|
|
<Item24 Ref="327" ControlType="XRTableCell" Name="tableCell117" Weight="0.074964912188574262" Multiline="true" Text="P2" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="328" UseBorders="false" />
|
|
</Item24>
|
|
<Item25 Ref="329" ControlType="XRTableCell" Name="tableCell119" Weight="0.0749612830019345" Multiline="true" Text="Qo" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="330" UseBorders="false" />
|
|
</Item25>
|
|
<Item26 Ref="331" ControlType="XRTableCell" Name="tableCell121" Weight="0.0749668433715937" Multiline="true" Text="Qг" Dpi="254" Borders="Right, Bottom">
|
|
<StylePriority Ref="332" UseBorders="false" />
|
|
</Item26>
|
|
</Cells>
|
|
<StylePriority Ref="333" UseBorderColor="false" UseBorderWidth="false" />
|
|
</Item2>
|
|
</Rows>
|
|
<StylePriority Ref="334" UseFont="false" UseBorderColor="false" UseBorders="false" UseBorderDashStyle="false" UseTextAlignment="false" />
|
|
</Item1>
|
|
</Controls>
|
|
<StylePriority Ref="335" UseForeColor="false" UseBackColor="false" UseBorderColor="false" UseBorderWidth="false" UseBorderDashStyle="false" />
|
|
</Item3>
|
|
<Item4 Ref="336" ControlType="ReportFooterBand" Name="ReportFooter" PageBreak="AfterBand" HeightF="520.55896" Dpi="254" BorderColor="Black" Tag_type="System.UInt32" Tag="3352020376">
|
|
<Controls>
|
|
<Item1 Ref="337" ControlType="XRLabel" Name="label56" Text="label56" SizeF="254,34.99997" LocationFloat="1332.22278,439.5887" Dpi="254" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="338" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).MeasurePointTitle" />
|
|
</DataBindings>
|
|
</Item1>
|
|
<Item2 Ref="339" ControlType="XRLabel" Name="label55" Text="label55" SizeF="254,35.1800232" LocationFloat="1044.486,439.408661" Dpi="254" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="340" PropertyName="Text" DataMember="Точки учета.ГВС Точка учета1 (Точки учета).MeasurePointTitle" />
|
|
</DataBindings>
|
|
</Item2>
|
|
<Item3 Ref="341" ControlType="XRLabel" Name="label54" Text="label54" SizeF="254,35" LocationFloat="1332.22278,404.588745" Dpi="254" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="342" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Устройство).SerialNumber" />
|
|
</DataBindings>
|
|
</Item3>
|
|
<Item4 Ref="343" ControlType="XRLabel" Name="label53" Text="label53" SizeF="254,35" LocationFloat="1332.2229,369.408722" Dpi="254" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="344" PropertyName="Text" DataMember="Точки учета.Теплоснабжение Точка учета1 (Точки учета).Теплоснабжение Точка учета1 (Устройство).Model" />
|
|
</DataBindings>
|
|
</Item4>
|
|
<Item5 Ref="345" ControlType="XRLabel" Name="label52" Text="label52" SizeF="254,35" LocationFloat="1044.486,404.4087" Dpi="254" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="346" PropertyName="Text" DataMember="Точки учета.ГВС Точка учета1 (Точки учета).ГВС Точка учета1 (Устройство).SerialNumber" />
|
|
</DataBindings>
|
|
</Item5>
|
|
<Item6 Ref="347" ControlType="XRLabel" Name="label51" Text="label51" SizeF="254,35" LocationFloat="1044.486,369.4087" Dpi="254" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="348" PropertyName="Text" DataMember="Точки учета.ГВС Точка учета1 (Точки учета).ГВС Точка учета1 (Устройство).Model" />
|
|
</DataBindings>
|
|
</Item6>
|
|
<Item7 Ref="349" ControlType="XRLabel" Name="label50" Text="Тепло" SizeF="254,35" LocationFloat="1326.29565,327.787872" Dpi="254" Padding="5,5,0,0,254" />
|
|
<Item8 Ref="350" ControlType="XRLabel" Name="label49" Text="ГВС" SizeF="254,35" LocationFloat="1044.486,327.787872" Dpi="254" Padding="5,5,0,0,254" />
|
|
<Item9 Ref="351" ControlType="XRTable" Name="table1" SizeF="1801.168,70" LocationFloat="0,0" Dpi="254" Borders="None">
|
|
<Rows>
|
|
<Item1 Ref="352" ControlType="XRTableRow" Name="tableRow2" Weight="0.55118110236220474" Dpi="254">
|
|
<Cells>
|
|
<Item1 Ref="353" ControlType="XRTableCell" Name="tableCell39" Weight="0.2665502407246394" Text="Итого:" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Left, Right, Bottom">
|
|
<StylePriority Ref="354" UseFont="false" UseTextAlignment="false" />
|
|
</Item1>
|
|
<Item2 Ref="355" ControlType="XRTableCell" Name="tableCell108" Weight="0.22045506779090207" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<StylePriority Ref="356" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item2>
|
|
<Item3 Ref="357" ControlType="XRTableCell" Name="tableCell104" Weight="0.22045506779089985" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<StylePriority Ref="358" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item3>
|
|
<Item4 Ref="359" ControlType="XRTableCell" Name="tableCell106" Weight="0.22045506779089952" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<StylePriority Ref="360" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item4>
|
|
<Item5 Ref="361" ControlType="XRTableCell" Name="tableCell40" Weight="0.22045505452239039" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<Summary Ref="362" FormatString="{0:F2}" Running="Report" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="363" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).V1" />
|
|
</DataBindings>
|
|
<StylePriority Ref="364" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item5>
|
|
<Item6 Ref="365" ControlType="XRTableCell" Name="tableCell100" Weight="0.22045506779089949" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<Summary Ref="366" FormatString="{0:F2}" Running="Report" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="367" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).M1" />
|
|
</DataBindings>
|
|
<StylePriority Ref="368" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item6>
|
|
<Item7 Ref="369" ControlType="XRTableCell" Name="tableCell51" Weight="0.22045507110802487" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<Summary Ref="370" FormatString="{0:F2}" Running="Report" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="371" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).V2" />
|
|
</DataBindings>
|
|
<StylePriority Ref="372" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item7>
|
|
<Item8 Ref="373" ControlType="XRTableCell" Name="tableCell102" Weight="0.22045507110803131" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<Summary Ref="374" FormatString="{0:F2}" Running="Report" />
|
|
<DataBindings>
|
|
<Item1 Ref="375" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).M2" />
|
|
</DataBindings>
|
|
<StylePriority Ref="376" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item8>
|
|
<Item9 Ref="377" ControlType="XRTableCell" Name="tableCell41" Weight="0.22045506779090179" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<Summary Ref="378" FormatString="{0:F2}" Running="Report" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="379" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).M" />
|
|
</DataBindings>
|
|
<StylePriority Ref="380" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item9>
|
|
<Item10 Ref="381" ControlType="XRTableCell" Name="tableCell47" Weight="0.22045507221373672" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<StylePriority Ref="382" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item10>
|
|
<Item11 Ref="383" ControlType="XRTableCell" Name="tableCell45" Weight="0.22045506797860787" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<StylePriority Ref="384" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item11>
|
|
<Item12 Ref="385" ControlType="XRTableCell" Name="tableCell49" Weight="0.22045505562809614" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<Summary Ref="386" FormatString="{0:F3}" Running="Report" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="387" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).Q" />
|
|
</DataBindings>
|
|
<StylePriority Ref="388" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item12>
|
|
<Item13 Ref="389" ControlType="XRTableCell" Name="tableCell112" Weight="0.22045506889660912" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<Summary Ref="390" FormatString="{0:F1}" Running="Report" />
|
|
<DataBindings>
|
|
<Item1 Ref="391" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).WorkTime" />
|
|
</DataBindings>
|
|
<StylePriority Ref="392" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item13>
|
|
<Item14 Ref="393" ControlType="XRTableCell" Name="tableCell110" Weight="0.22045496274850504" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black" Borders="Right, Bottom">
|
|
<Summary Ref="394" FormatString="{0:F1}" Running="Report" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="395" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).StopWorkTime" />
|
|
</DataBindings>
|
|
<StylePriority Ref="396" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item14>
|
|
</Cells>
|
|
</Item1>
|
|
<Item2 Ref="397" ControlType="XRTableRow" Name="tableRow3" Weight="0.55118110236220474" Dpi="254">
|
|
<Cells>
|
|
<Item1 Ref="398" ControlType="XRTableCell" Name="tableCell42" Weight="0.2665502407246394" Text="Средние:" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Left, Right, Bottom">
|
|
<StylePriority Ref="399" UseFont="false" UseTextAlignment="false" />
|
|
</Item1>
|
|
<Item2 Ref="400" ControlType="XRTableCell" Name="tableCell109" Weight="0.22045506779090207" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<Summary Ref="401" FormatString="{0:F2}" Running="Report" Func="Avg" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="402" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).T1" />
|
|
</DataBindings>
|
|
<StylePriority Ref="403" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item2>
|
|
<Item3 Ref="404" ControlType="XRTableCell" Name="tableCell105" Weight="0.22045506779089985" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<Summary Ref="405" FormatString="{0:F2}" Running="Report" Func="Avg" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="406" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).T2" />
|
|
</DataBindings>
|
|
<StylePriority Ref="407" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item3>
|
|
<Item4 Ref="408" ControlType="XRTableCell" Name="tableCell107" Weight="0.22045506779089952" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<Summary Ref="409" FormatString="{0:F2}" Running="Report" Func="Avg" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="410" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).T_delta" />
|
|
</DataBindings>
|
|
<StylePriority Ref="411" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item4>
|
|
<Item5 Ref="412" ControlType="XRTableCell" Name="tableCell43" Weight="0.22045505452239039" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<StylePriority Ref="413" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item5>
|
|
<Item6 Ref="414" ControlType="XRTableCell" Name="tableCell101" Weight="0.22045506779089949" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<StylePriority Ref="415" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item6>
|
|
<Item7 Ref="416" ControlType="XRTableCell" Name="tableCell72" Weight="0.22045507110802487" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<StylePriority Ref="417" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item7>
|
|
<Item8 Ref="418" ControlType="XRTableCell" Name="tableCell103" Weight="0.22045507110803131" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<StylePriority Ref="419" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item8>
|
|
<Item9 Ref="420" ControlType="XRTableCell" Name="tableCell44" Weight="0.22045506779090179" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<StylePriority Ref="421" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item9>
|
|
<Item10 Ref="422" ControlType="XRTableCell" Name="tableCell48" Weight="0.22045507221373672" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<Summary Ref="423" FormatString="{0:F2}" Running="Report" Func="Avg" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="424" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).P1" />
|
|
</DataBindings>
|
|
<StylePriority Ref="425" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item10>
|
|
<Item11 Ref="426" ControlType="XRTableCell" Name="tableCell46" Weight="0.22045506797860787" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<Summary Ref="427" FormatString="{0:F2}" Running="Report" Func="Avg" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="428" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).P2" />
|
|
</DataBindings>
|
|
<StylePriority Ref="429" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item11>
|
|
<Item12 Ref="430" ControlType="XRTableCell" Name="tableCell50" Weight="0.22045505562809614" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<StylePriority Ref="431" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item12>
|
|
<Item13 Ref="432" ControlType="XRTableCell" Name="tableCell113" Weight="0.22045506889660912" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<StylePriority Ref="433" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item13>
|
|
<Item14 Ref="434" ControlType="XRTableCell" Name="tableCell111" Weight="0.22045496274850504" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" Borders="Right, Bottom">
|
|
<StylePriority Ref="435" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item14>
|
|
</Cells>
|
|
</Item2>
|
|
</Rows>
|
|
</Item9>
|
|
<Item10 Ref="436" ControlType="XRLabel" Name="label39" Text="ч" TextAlignment="MiddleLeft" SizeF="50.8,35" LocationFloat="813.5737,439.588684" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="3,0,0,0,254">
|
|
<StylePriority Ref="437" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item10>
|
|
<Item11 Ref="438" ControlType="XRLabel" Name="label38" AutoWidth="true" CanShrink="true" Text="label38" TextAlignment="MiddleRight" SizeF="178.25,35" LocationFloat="628.844055,439.588684" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,0,0,0,254">
|
|
<Summary Ref="439" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="440" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).W_End" />
|
|
</DataBindings>
|
|
<StylePriority Ref="441" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item11>
|
|
<Item12 Ref="442" ControlType="XRLabel" Name="label37" Text="Время наработки после сброса" TextAlignment="MiddleLeft" SizeF="618,34.99994" LocationFloat="0,439.588684" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,0,0,0,254">
|
|
<StylePriority Ref="443" UseFont="false" UsePadding="false" />
|
|
</Item12>
|
|
<Item13 Ref="444" ControlType="XRTable" Name="tableTotals" KeepTogether="true" SizeF="1475.99036,210" LocationFloat="0,107.253342" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="DimGray" Borders="All">
|
|
<Rows>
|
|
<Item1 Ref="445" ControlType="XRTableRow" Name="rowTotals1" Weight="0.542229758672779" Dpi="254">
|
|
<Cells>
|
|
<Item1 Ref="446" ControlType="XRTableCell" Name="tableCell12" Weight="4.0212717549613526" CanShrink="true" Text="Показания интеграторов" TextAlignment="MiddleCenter" WordWrap="false" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="All">
|
|
<StylePriority Ref="447" UseFont="false" UseBorderColor="false" UseBorders="false" UseTextAlignment="false" />
|
|
</Item1>
|
|
</Cells>
|
|
</Item1>
|
|
<Item2 Ref="448" ControlType="XRTableRow" Name="rowTotals2" Weight="0.54222972727667751" Dpi="254">
|
|
<Cells>
|
|
<Item1 Ref="449" ControlType="XRTableCell" Name="tableCell64" Weight="0.79283491384637839" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="450" UseFont="false" UseBorderColor="false" />
|
|
</Item1>
|
|
<Item2 Ref="451" ControlType="XRTableCell" Name="tableCell65" Weight="0.4078368933140557" Text="V1" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="452" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item2>
|
|
<Item3 Ref="453" ControlType="XRTableCell" Name="tableCell66" Weight="0.40783689331405604" Text="M1" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="454" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item3>
|
|
<Item4 Ref="455" ControlType="XRTableCell" Name="tableCell67" Weight="0.40783688669634854" Text="V2" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="456" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item4>
|
|
<Item5 Ref="457" ControlType="XRTableCell" Name="tableCell68" Weight="0.40783688669634854" Text="M2" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="458" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item5>
|
|
<Item6 Ref="459" ControlType="XRTableCell" Name="tableCell69" Weight="0.40783688669634832" Text="Mг" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="460" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item6>
|
|
<Item7 Ref="461" ControlType="XRTableCell" Name="tableCell70" Weight="0.37520994552640408" Text="Qo" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="462" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item7>
|
|
<Item8 Ref="463" ControlType="XRTableCell" Name="tableCell71" Weight="0.406205550651739" Text="ВНР" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="464" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item8>
|
|
<Item9 Ref="465" ControlType="XRTableCell" Name="tableCell73" Weight="0.40783689821967439" Text="ВОС" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="466" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item9>
|
|
</Cells>
|
|
</Item2>
|
|
<Item3 Ref="467" ControlType="XRTableRow" Name="tableRow1" Weight="0.54222972727667762" Dpi="254">
|
|
<Cells>
|
|
<Item1 Ref="468" ControlType="XRTableCell" Name="tableCell2" Weight="0.79283491384637839" Text="Дата" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black" Borders="Left, Right, Bottom">
|
|
<StylePriority Ref="469" UseFont="false" UseBorderColor="false" UseBorders="false" UseTextAlignment="false" />
|
|
</Item1>
|
|
<Item2 Ref="470" ControlType="XRTableCell" Name="tableCell3" Weight="0.4078368933140557" Text="м3" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="471" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item2>
|
|
<Item3 Ref="472" ControlType="XRTableCell" Name="tableCell5" Weight="0.40783689331405604" Text="т" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="473" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item3>
|
|
<Item4 Ref="474" ControlType="XRTableCell" Name="tableCell6" Weight="0.40783688669634854" Text="м3" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="475" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item4>
|
|
<Item5 Ref="476" ControlType="XRTableCell" Name="tableCell8" Weight="0.40783688669634854" Text="т" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="477" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item5>
|
|
<Item6 Ref="478" ControlType="XRTableCell" Name="tableCell13" Weight="0.40783688669634832" Text="т" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="479" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item6>
|
|
<Item7 Ref="480" ControlType="XRTableCell" Name="tableCell14" Weight="0.37520994552640408" Text="Гкал" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="481" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item7>
|
|
<Item8 Ref="482" ControlType="XRTableCell" Name="tableCell15" Weight="0.406205550651739" Text="ч" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="483" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item8>
|
|
<Item9 Ref="484" ControlType="XRTableCell" Name="tableCell16" Weight="0.40783689821967439" Text="ч" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="485" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item9>
|
|
</Cells>
|
|
</Item3>
|
|
<Item4 Ref="486" ControlType="XRTableRow" Name="rowTotals3" Weight="0.54222968769470481" Dpi="254">
|
|
<Cells>
|
|
<Item1 Ref="487" ControlType="XRTableCell" Name="dtEndDateCell" Weight="0.79283491384637861" Text="dtEndDateCell" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<DataBindings>
|
|
<Item1 Ref="488" FormatString="{0:dd.MM.yy H:mm}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).DataDate_Start" />
|
|
</DataBindings>
|
|
<StylePriority Ref="489" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item1>
|
|
<Item2 Ref="490" ControlType="XRTableCell" Name="tableCell52" Weight="0.40783689331405565" Text="tableCell52" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="491" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="492" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).V1_Start" />
|
|
</DataBindings>
|
|
<StylePriority Ref="493" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item2>
|
|
<Item3 Ref="494" ControlType="XRTableCell" Name="M1_End" Weight="0.40783689331405604" Text="M1_End" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="495" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="496" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).M1_Start" />
|
|
</DataBindings>
|
|
<StylePriority Ref="497" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item3>
|
|
<Item4 Ref="498" ControlType="XRTableCell" Name="tableCell53" Weight="0.40783688669634849" Text="tableCell53" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="499" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="500" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).V2_Start" />
|
|
</DataBindings>
|
|
<StylePriority Ref="501" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item4>
|
|
<Item5 Ref="502" ControlType="XRTableCell" Name="M2_End" Weight="0.4078368866963486" Text="M2_End" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="503" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="504" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).M2_Start" />
|
|
</DataBindings>
|
|
<StylePriority Ref="505" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item5>
|
|
<Item6 Ref="506" ControlType="XRTableCell" Name="Q_End" Weight="0.40783688669634843" Text="Q_End" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="507" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="508" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).deltaM_Start" />
|
|
</DataBindings>
|
|
<StylePriority Ref="509" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item6>
|
|
<Item7 Ref="510" ControlType="XRTableCell" Name="tableCell54" Weight="0.37520994552640397" Text="tableCell54" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="511" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="512" FormatString="{0:F3}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).Qdelta_Start" />
|
|
</DataBindings>
|
|
<StylePriority Ref="513" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item7>
|
|
<Item8 Ref="514" ControlType="XRTableCell" Name="tableCell55" Weight="0.406205550651739" Text="tableCell55" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="515" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="516" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).W_Start" />
|
|
</DataBindings>
|
|
<StylePriority Ref="517" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item8>
|
|
<Item9 Ref="518" ControlType="XRTableCell" Name="tableCell74" Weight="0.40783689821967462" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="519" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<Summary Ref="520" FormatString="{0:F2}" />
|
|
<StylePriority Ref="521" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item9>
|
|
</Cells>
|
|
</Item4>
|
|
<Item5 Ref="522" ControlType="XRTableRow" Name="rowTotals4" Weight="0.54222979267861793" Dpi="254">
|
|
<Cells>
|
|
<Item1 Ref="523" ControlType="XRTableCell" Name="tableCell56" Weight="0.79283491384637861" Text="Итого:" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<DataBindings>
|
|
<Item1 Ref="524" FormatString="{0:dd.MM.yy H:mm}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).DataDate_End" />
|
|
</DataBindings>
|
|
<StylePriority Ref="525" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item1>
|
|
<Item2 Ref="526" ControlType="XRTableCell" Name="tableCell57" Weight="0.40783689331405565" Text="tableCell57" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="527" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="528" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).V1_End" />
|
|
</DataBindings>
|
|
<StylePriority Ref="529" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item2>
|
|
<Item3 Ref="530" ControlType="XRTableCell" Name="tableCell58" Weight="0.40783689331405604" Text="tableCell58" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="531" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="532" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).M1_End" />
|
|
</DataBindings>
|
|
<StylePriority Ref="533" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item3>
|
|
<Item4 Ref="534" ControlType="XRTableCell" Name="tableCell59" Weight="0.40783688669634849" Text="tableCell59" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="535" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="536" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).V2_End" />
|
|
</DataBindings>
|
|
<StylePriority Ref="537" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item4>
|
|
<Item5 Ref="538" ControlType="XRTableCell" Name="tableCell60" Weight="0.4078368866963486" Text="tableCell60" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="539" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="540" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).M2_End" />
|
|
</DataBindings>
|
|
<StylePriority Ref="541" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item5>
|
|
<Item6 Ref="542" ControlType="XRTableCell" Name="tableCell61" Weight="0.40783688669634843" Text="tableCell61" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="543" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="544" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).deltaM_End" />
|
|
</DataBindings>
|
|
<StylePriority Ref="545" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item6>
|
|
<Item7 Ref="546" ControlType="XRTableCell" Name="tableCell62" Weight="0.37520994552640397" Text="tableCell62" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="547" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="548" FormatString="{0:F3}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).Qdelta_End" />
|
|
</DataBindings>
|
|
<StylePriority Ref="549" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item7>
|
|
<Item8 Ref="550" ControlType="XRTableCell" Name="tableCell63" Weight="0.406205550651739" Text="tableCell63" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="551" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="552" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).W_End" />
|
|
</DataBindings>
|
|
<StylePriority Ref="553" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item8>
|
|
<Item9 Ref="554" ControlType="XRTableCell" Name="tableCell75" Weight="0.40783689821967462" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="555" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<StylePriority Ref="556" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item9>
|
|
</Cells>
|
|
</Item5>
|
|
<Item6 Ref="557" ControlType="XRTableRow" Name="rowTotals5" Weight="0.54222970925995251" Dpi="254">
|
|
<Cells>
|
|
<Item1 Ref="558" ControlType="XRTableCell" Name="tableCell76" Weight="0.79283491384637861" Text="Итого:" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" BorderColor="Black">
|
|
<StylePriority Ref="559" UseFont="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item1>
|
|
<Item2 Ref="560" ControlType="XRTableCell" Name="tableCell77" Weight="0.40783689331405565" Text="tableCell77" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="561" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="562" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).V1_Delta" />
|
|
</DataBindings>
|
|
<StylePriority Ref="563" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item2>
|
|
<Item3 Ref="564" ControlType="XRTableCell" Name="tableCell78" Weight="0.40783689331405604" Text="tableCell78" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="565" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="566" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).M1_Delta" />
|
|
</DataBindings>
|
|
<StylePriority Ref="567" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item3>
|
|
<Item4 Ref="568" ControlType="XRTableCell" Name="tableCell79" Weight="0.40783688669634849" Text="tableCell79" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="569" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="570" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).V2_Delta" />
|
|
</DataBindings>
|
|
<StylePriority Ref="571" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item4>
|
|
<Item5 Ref="572" ControlType="XRTableCell" Name="tableCell80" Weight="0.4078368866963486" Text="tableCell80" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="573" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="574" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).M2_Delta" />
|
|
</DataBindings>
|
|
<StylePriority Ref="575" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item5>
|
|
<Item6 Ref="576" ControlType="XRTableCell" Name="tableCell81" Weight="0.40783688669634843" Text="tableCell81" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="577" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="578" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).deltaM_fin" />
|
|
</DataBindings>
|
|
<StylePriority Ref="579" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item6>
|
|
<Item7 Ref="580" ControlType="XRTableCell" Name="tableCell82" Weight="0.37520994552640397" Text="tableCell82" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="581" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="582" FormatString="{0:F3}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).Q_Delta" />
|
|
</DataBindings>
|
|
<StylePriority Ref="583" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item7>
|
|
<Item8 Ref="584" ControlType="XRTableCell" Name="tableCell83" Weight="0.406205550651739" Text="tableCell83" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="585" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<DataBindings>
|
|
<Item1 Ref="586" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания.Теплоснабжение Точка учета1 (Показания).W_Delta" />
|
|
</DataBindings>
|
|
<StylePriority Ref="587" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item8>
|
|
<Item9 Ref="588" ControlType="XRTableCell" Name="tableCell84" Weight="0.40783689821967462" TextAlignment="MiddleRight" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,3,0,0,254" BorderColor="Black">
|
|
<Scripts Ref="589" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<Summary Ref="590" FormatString="{0:F2}" Running="Report" />
|
|
<DataBindings>
|
|
<Item1 Ref="591" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).StopWorkTime" />
|
|
</DataBindings>
|
|
<StylePriority Ref="592" UseFont="false" UsePadding="false" UseBorderColor="false" UseTextAlignment="false" />
|
|
</Item9>
|
|
</Cells>
|
|
</Item6>
|
|
</Rows>
|
|
<StylePriority Ref="593" UseFont="false" UseBorderColor="false" UseBorders="false" />
|
|
</Item13>
|
|
<Item14 Ref="594" ControlType="XRLabel" Name="label35" Text="ч" TextAlignment="MiddleLeft" SizeF="50.8,35" LocationFloat="813.5737,404.588684" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="3,0,0,0,254">
|
|
<StylePriority Ref="595" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item14>
|
|
<Item15 Ref="596" ControlType="XRLabel" Name="label9" Text="Период нормальной работы:" TextAlignment="MiddleLeft" SizeF="618,34.99997" LocationFloat="0,369.4087" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,0,0,0,254">
|
|
<StylePriority Ref="597" UseFont="false" UsePadding="false" />
|
|
</Item15>
|
|
<Item16 Ref="598" ControlType="XRLabel" Name="label1" Text="label1" TextAlignment="MiddleLeft" SizeF="467.559448,35.0001526" LocationFloat="1271.3241,484.435455" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<DataBindings>
|
|
<Item1 Ref="599" PropertyName="Text" DataMember="Объект учета.ResponsibleName" />
|
|
</DataBindings>
|
|
<StylePriority Ref="600" UseFont="false" UseTextAlignment="false" />
|
|
</Item16>
|
|
<Item17 Ref="601" ControlType="XRLabel" Name="labelSummMass" AutoWidth="true" CanShrink="true" Text="labelSummMass" TextAlignment="MiddleRight" SizeF="178.25,35" LocationFloat="628.844055,369.4087" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,0,0,0,254">
|
|
<Scripts Ref="602" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<Summary Ref="603" FormatString="{0:#.00}" Running="Report" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="604" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).WorkTime" />
|
|
</DataBindings>
|
|
<StylePriority Ref="605" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item17>
|
|
<Item18 Ref="606" ControlType="XRLabel" Name="label33" AutoWidth="true" CanShrink="true" Text="label33" TextAlignment="MiddleRight" SizeF="178.25,35" LocationFloat="628.844055,404.588684" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,0,0,0,254">
|
|
<Scripts Ref="607" OnPrintOnPage="ReplaceDecimalSeparator" />
|
|
<Summary Ref="608" FormatString="{0:F2}" Running="Report" IgnoreNullValues="true" />
|
|
<DataBindings>
|
|
<Item1 Ref="609" PropertyName="Text" DataMember="ArchiveParent.Потребление.Теплоснабжение Точка учета1 (Потребление).StopWorkTime" />
|
|
</DataBindings>
|
|
<StylePriority Ref="610" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item18>
|
|
<Item19 Ref="611" ControlType="XRLabel" Name="label34" Text="ч" TextAlignment="MiddleLeft" SizeF="50.8,35" LocationFloat="813.5737,369.4087" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="3,0,0,0,254">
|
|
<StylePriority Ref="612" UseFont="false" UsePadding="false" UseTextAlignment="false" />
|
|
</Item19>
|
|
<Item20 Ref="613" ControlType="XRLabel" Name="label32" Text="Представитель теплоснабж. организации: " TextAlignment="MiddleLeft" SizeF="637.095032,34.99997" LocationFloat="634.229065,484.435455" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,5,0,0,254">
|
|
<StylePriority Ref="614" UseFont="false" />
|
|
</Item20>
|
|
<Item21 Ref="615" ControlType="XRLabel" Name="label15" Text="Период отсутствия счета тепл. энергии:" TextAlignment="MiddleLeft" SizeF="618,34.99997" LocationFloat="0,404.588684" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="5,0,0,0,254">
|
|
<StylePriority Ref="616" UseFont="false" UsePadding="false" />
|
|
</Item21>
|
|
<Item22 Ref="617" ControlType="XRLabel" Name="label31" Text="Представитель абонента: __________" TextAlignment="MiddleLeft" SizeF="611.861755,34.99997" LocationFloat="6.138272,484.435455" Dpi="254" Font="Microsoft Sans Serif, 8.25pt" Padding="0,5,0,0,254">
|
|
<StylePriority Ref="618" UseFont="false" UsePadding="false" />
|
|
</Item22>
|
|
</Controls>
|
|
<StylePriority Ref="619" UseBorderColor="false" />
|
|
</Item4>
|
|
<Item5 Ref="620" ControlType="TopMarginBand" Name="topMarginBand1" HeightF="99" Dpi="254" />
|
|
<Item6 Ref="621" ControlType="BottomMarginBand" Name="bottomMarginBand1" HeightF="53" Dpi="254" />
|
|
</Bands>
|
|
<Scripts Ref="622" OnDataSourceDemanded="BaseReport_DataSourceDemanded" />
|
|
<ObjectStorage>
|
|
<Item1 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v22.1" Ref="4" Content="System.DateTime" Type="System.Type" />
|
|
<Item2 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v22.1" Ref="7" Content="System.Int32" Type="System.Type" />
|
|
<Item3 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v22.1" Ref="12" Content="System.Boolean" Type="System.Type" />
|
|
<Item4 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v22.1" Ref="15" Content="System.Double" Type="System.Type" />
|
|
<Item5 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v22.1" Ref="0" Content="~Xtra#NULL" Type="Lers.Reports.DataSetDataSourceBase" />
|
|
</ObjectStorage>
|
|
</XtraReportsLayoutSerializer></Template>
|
|
</Report> |