diff --git a/КМ-5.lersreport b/КМ-5.lersreport
index 968e98b..b9522a0 100644
--- a/КМ-5.lersreport
+++ b/КМ-5.lersreport
@@ -16,7 +16,7 @@
0
-<XtraReportsLayoutSerializer SerializerVersion="16.2.3.0" Ref="1" ControlType="DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v16.2, Version=16.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Name="BaseReport" ScriptsSource="// Период отключения питания
double period_U = 0;
string codes_U = "122";

// Период t1-t2 < min
double period_D = 0;
string codes_D = "96";

// Период функционального отказа
double period_E = 0;
string codes_E = "61, 64, 65, 66, 67, 68, 69, 71, 73, 74, 76, 79, 81, 88, 90, 91, 93, 94, 106, 114, 119, 120, 121";

// Период G > max
double period_G = 0;
string codes_G = "82, 85";

// Период G < min
double period_g = 0;
string codes_g = "84, 87";

// Формируем текст для колонки 'Классификатор ошибок'
private void EventGroups_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) 
{
	// Строка с кодами событий в формате: <код1>;<код2>; ... <кодN>;
	string eventCodesString = ((XRLabel)sender).Text;

	if (String.IsNullOrEmpty(eventCodesString))
		return;
	
	// Получаем массив кодов событий (в строке коды записаны через ';')
	string[] eventCodes = eventCodesString .Split(new string[]{";"}, StringSplitOptions.RemoveEmptyEntries);

	// Формируем обозначения для групп событий
	string errorCodes = String.Empty;
	foreach (string eventCode in eventCodes)
	{
		string code = eventCode.Trim();

		// Период отключения питания
		if (codes_U.IndexOf(code) != -1 && errorCodes.IndexOf("U") == -1)
			errorCodes += "U";

		// Период t1-t2 < min
		if (codes_D.IndexOf(code) != -1 && errorCodes.IndexOf("D") == -1)
			errorCodes += "D";

		// Период функционального отказа
		if (codes_E.IndexOf(code) != -1 && errorCodes.IndexOf("E") == -1)
			errorCodes += "E";

		// Период G > max
		if (codes_G.IndexOf(code) != -1 && errorCodes.IndexOf("G") == -1)
			errorCodes += "G";

		// Период G < min
		if (codes_g.IndexOf(code) != -1 && errorCodes.IndexOf("g") == -1)
			errorCodes += "g";
	}

	((XRLabel)sender).Text = errorCodes;
}

// Формируем суммарные времена для групп событий
private void EventsDuration_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) 
{
	// Строка с кодами и длительностями событий в формате: <код1> <длительность1>; <код2> <длительность2>; ... <кодN> <длительностьN>;
	string eventDurationString = ((XRLabel)sender).Text;

	if (String.IsNullOrEmpty(eventDurationString))
		return;
	
	// Получаем массив кодов и длительностей событий
	string[] eventDurations = eventDurationString.Split(new string[]{";"}, StringSplitOptions.RemoveEmptyEntries);

	foreach (string eventDuration in eventDurations)
	{
		string[] codeDuration = eventDuration.Split(new string[]{" "}, StringSplitOptions.RemoveEmptyEntries);

		// Код события
		string code = codeDuration[0].Trim();

		// Длительность события
		double duration = 0;
		double.TryParse(codeDuration[1], out duration); 

		// Период отключения питания
		if (codes_U.IndexOf(code) != -1)
			period_U += duration;

		// Период t1-t2 < min
		if (codes_D.IndexOf(code) != -1)
			period_D += duration;

		// Период функционального отказа
		if (codes_E.IndexOf(code) != -1)
			period_E += duration;

		// Период G > max
		if (codes_G.IndexOf(code) != -1)
			period_G += duration;

		// Период G < min
		if (codes_g.IndexOf(code) != -1)
			period_g += duration;
	}
}

// Отображаем периоды событий
private void Period_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) 
{
	XRLabel label = ((XRLabel)sender);

	double period = 0;
	switch (label.Name)
	{
		case "lblPeriod_U":	// Период отключения питания
			period = period_U;
			break;

		case "lblPeriod_D":	// Период t1-t2 < min
			period = period_D;
			break;

		case "lblPeriod_E":	// Период функционального отказа
			period = period_E;
			break;

		case "lblPeriod_Gmax":	// Период G > max
			period = period_G;
			break;

		case "lblPeriod_Gmin":	// Период G < min
			period = period_g;
			break;
	}

	label.Text = String.Format("__{0:F3}__ час.", period);
}
" SnapGridSize="31.75" ReportUnit="TenthsOfAMillimeter" Margins="249, 99, 99, 99" PaperKind="A4" PageWidth="2100" PageHeight="2970" Version="16.2" RequestParameters="false" DataMember="Архив суточный" DataSource="#Ref-0" Dpi="254" Tag_type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Tag="1|321">
+<XtraReportsLayoutSerializer SerializerVersion="16.2.3.0" Ref="1" ControlType="DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v16.2, Version=16.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Name="BaseReport" ScriptsSource="// Типы архивов
string[] archiveType = new string[28];

// Код периода отключения питания
double period_U = 0;
int[] codes_U = {122};

// Код периода t1-t2 < min
double period_D = 0;
int[] codes_D = {96};

// Коды функционального отказа
double period_E = 0;
int[] codes_E = {61, 64, 65, 66, 67, 68, 69, 71, 73, 74, 76, 79, 81, 88, 90, 91, 93, 94, 106, 114, 119, 120, 121};

// Коды периода G > max
double period_G = 0;
int[] codes_G = {82, 85};

// Коды периода G < min
double period_g = 0;
int[] codes_g = {84, 87};

// Коды прочие
double period_other = 0;

private void BaseReport_DataSourceDemanded(object sender, System.EventArgs e) 
{
	// Расшифровка типов архивов
	archiveType[0] = "Общий (системный)";
	archiveType[1] = "По тепловому вводу";	
	archiveType[2] = "По каналу";
	archiveType[3] = "По дискретным входам";
	archiveType[4] = "По дискретным выходам";
	archiveType[5] = "Смена режима работы";
	archiveType[6] = "Действия пользователя";
	archiveType[7] = "Архив времени перерыов в электропитании";
	archiveType[8] = "Архив изменений параметров настройки";
	archiveType[9] = "Диагностические сообщения";
	archiveType[10] = "Нештатные ситуации";
	archiveType[11] = "Архив перерывов в электропитании за месяц";
	archiveType[12] = "Архив перерывов в электропитании за день";
	archiveType[13] = "Диагностические сообщения, не влияющие на коммерческий учёт";
	archiveType[14] = "Нештатные ситуации, влияющие на коммерческий учёт";
	archiveType[15] = "Архив суточный обобщённых сообщений о НС";
	archiveType[16] = "Архив часовой обобщённых сообщений о НС";
	archiveType[17] = "Общие события";
	archiveType[18] = "Индивидуальные события ПП";
	archiveType[19] = "";
	archiveType[20] = "";
	archiveType[21] = "";
	archiveType[22] = "Архив НС за предыдущий и текущий месяцы";
	archiveType[23] = "НС периферийных устройств";
	archiveType[24] = "Отказы";
	archiveType[25] = "Ошибки";
	archiveType[26] = "Предупреждения";
	archiveType[27] = "Сообщения";
}

// Формируем текст для колонки 'Классификатор ошибок'
// Эта колонка связана с полем DeviceEventCodes, в котором события записаны в виде строки:
// архив1|ввод1|канал1|код1; архив2|ввод2|канал2|код2; ... архивN|вводN|каналN|кодN
private void EventGroups_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) 
{
	// Строка с информацией о событиях. 
	// Формат строки: архив1|ввод1|канал1|код1; архив2|ввод2|канал2|код2; ... архивN|вводN|каналN|кодN.
	string eventCodesString = ((XRTableCell)sender).Text;

	if (String.IsNullOrEmpty(eventCodesString))
		return;
	
	// Получаем массив типов архива и кодов событий:
	// eventCodesString - строка с форматом: архив1|ввод1|канал1|код1; архив2|ввод2|канал2|код2; ... архивN|вводN|каналN|кодN
	string[] eventCodes = eventCodesString.Split(new string[]{";"}, StringSplitOptions.RemoveEmptyEntries);

	// Формируем обозначения для групп событий и типов архивов
	string eventCodesSymbol = String.Empty;
	foreach (string eventCodeInfo in eventCodes)
	{
		// Получаем информация по событию в виде строки: архив|ввод|канал|код
		string[] eventInfo = (eventCodeInfo.Trim()).Split(new string[]{"|"}, StringSplitOptions.RemoveEmptyEntries);

		// Код типа архива 
		int archiveType = -1;
		if (!String.IsNullOrEmpty(eventInfo[0].Trim()))
			archiveType = Convert.ToInt32(eventInfo[0]);

		// Номер теплового ввода 
		int heatLeadIn = -1;
		if (!String.IsNullOrEmpty(eventInfo[1].Trim()))
			heatLeadIn = Convert.ToInt32(eventInfo[1]);

		// Номер канала 
		int channelNumber = -1;
		if (!String.IsNullOrEmpty(eventInfo[2].Trim()))
			channelNumber = Convert.ToInt32(eventInfo[2]);

		// Код события
		int code = -1;
		if (!String.IsNullOrEmpty(eventInfo[3].Trim()))
			code = Convert.ToInt32(eventInfo[3]);

		// Формируем символьное отображение событий 

		// Период отключения питания
		if (Array.Exists(codes_U, delegate(int c) { return (c == code); }) && eventCodesSymbol.IndexOf("U") == -1)
			eventCodesSymbol += "U";

		// Период t1-t2 < min
		else if (Array.Exists(codes_D, delegate(int c) { return (c == code); }) && eventCodesSymbol.IndexOf("D") == -1)
			eventCodesSymbol += "D";

		// Период функционального отказа
		else if (Array.Exists(codes_E, delegate(int c) { return (c == code); }) && eventCodesSymbol.IndexOf("E") == -1)
			eventCodesSymbol += "E";

		// Период G > max
		else if (Array.Exists(codes_G, delegate(int c) { return (c == code); }) && eventCodesSymbol.IndexOf("G") == -1)
			eventCodesSymbol += "G";

		// Период G < min
		else if (Array.Exists(codes_g, delegate(int c) { return (c == code); }) && eventCodesSymbol.IndexOf("g") == -1)
			eventCodesSymbol += "g";

		// Период прочих кодов
		else if (eventCodesSymbol.IndexOf("*") == -1)
			eventCodesSymbol += "*";
	}

	((XRTableCell)sender).Text = eventCodesSymbol;
}

// Формируем суммарные времена для групп событий
// Ячейка EventsDuration связана с полем DeviceEventDuration, в котором события записаны в виде строки:
// архив1|ввод1|канал1|код1|длительность1; архив2|ввод2|канал2|код2|длительность2; ... архивN|вводN|каналN|кодN|длительностьN
// Ячейка EventsDuration нужна только для расчета суммарных длительностей, поэтому ее можно сделать невидимой установив свойство Видимость = Нет
private void EventsDuration_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) 
{
	// Получаем содержимое ячейки.
	string eventDurationString = ((XRLabel)sender).Text;

	if (String.IsNullOrEmpty(eventDurationString))
		return;
	
	// Получаем массив кодов и длительностей событий
	// Каждый элемент мвссива - это строка формата: архив|ввод|канал|код|длительность
	string[] eventDurations = eventDurationString.Split(new string[]{";"}, StringSplitOptions.RemoveEmptyEntries);

	// Перебираем события и формируем суммарные длительности 	
	foreach (string eventDuration in eventDurations)
	{
		// eventDuration - строка c форматом: архив|ввод|канал|код|длительность
		string[] codeDuration = (eventDuration.Trim()).Split(new string[]{"|"}, StringSplitOptions.RemoveEmptyEntries);
		
		// Код типа архива 
		int archiveType = -1;
		if (!String.IsNullOrEmpty(codeDuration[0].Trim()))
			archiveType = Convert.ToInt32(codeDuration[0]);

		// Номер теплового ввода 
		int heatLeadIn = -1;
		if (!String.IsNullOrEmpty(codeDuration[1].Trim()))
			heatLeadIn = Convert.ToInt32(codeDuration[1]);

		// Номер канала 
		int channelNumber = -1;
		if (!String.IsNullOrEmpty(codeDuration[2].Trim()))
			channelNumber = Convert.ToInt32(codeDuration[2]);

		// Код события
		int code = -1;
		if (!String.IsNullOrEmpty(codeDuration[3].Trim()))
			code = Convert.ToInt32(codeDuration[3]);

		// Длительность события в секундах
		double duration = 0;
		if (!String.IsNullOrEmpty(codeDuration[4].Trim()))
			duration = Convert.ToDouble(codeDuration[4]);

		// Переводим длительность события из секунд в доли часа
		duration = duration / 3600D;

		// Период отключения питания
		if (Array.Exists(codes_U, delegate(int c) { return (c == code); }))
			period_U += duration;

		// Период t1-t2 < min
		else if (Array.Exists(codes_D, delegate(int c) { return (c == code); }))
			period_D += duration;

		// Период функционального отказа
		else if (Array.Exists(codes_E, delegate(int c) { return (c == code); }))
			period_E += duration;

		// Период G > max
		else if (Array.Exists(codes_G, delegate(int c) { return (c == code); }))
			period_G += duration;

		// Период G < min
		else if (Array.Exists(codes_g, delegate(int c) { return (c == code); }))
			period_g += duration;

		// Период прочих кодов
		else 
			period_other += duration;
	}
}
// Отображаем суммарные периоды событий
private void Period_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) 
{
	XRTableCell cell= ((XRTableCell)sender);

	double period = 0;
	switch (cell.Name)
	{
		case "Period_U":	// Период отключения питания
			period = period_U;
			break;

		case "Period_D":	// Период t1-t2 < min
			period = period_D;
			break;

		case "Period_E":	// Период функционального отказа
			period = period_E;
			break;

		case "Period_Gmax":	// Период G > max
			period = period_G;
			break;

		case "Period_Gmin":	// Период G < min
			period = period_g;
			break;

		case "Period_Other":	// Период прочие
			period = period_other;
			break;
	}

	cell.Text = String.Format("{0:F4}", period);
}


" SnapGridSize="31.75" ReportUnit="TenthsOfAMillimeter" Margins="249, 99, 99, 55" PaperKind="A4" PageWidth="2100" PageHeight="2970" Version="16.2" RequestParameters="false" DataMember="Архив суточный" DataSource="#Ref-0" Dpi="254" Tag_type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Tag="1|321">
<Parameters>
<Item1 Ref="3" Description="Идентификатор учетной записи" ValueInfo="0" Name="ACCOUNT_ID" Type="#Ref-2" />
<Item2 Ref="5" Description="Дата начала отчетного периода" ValueInfo="2017-01-19" Name="DATE_START" Type="#Ref-4" />
@@ -268,7 +268,7 @@
<Item1 Ref="149" ControlType="XRLabel" Name="EventsDuration" Text="EventsDuration" SizeF="62.46399,43.18" LocationFloat="1689.536, 0" Dpi="254" Padding="5,5,0,0,254" Visible="false">
<Scripts Ref="150" OnBeforePrint="EventsDuration_BeforePrint" />
<DataBindings>
- <Item1 Ref="151" PropertyName="Text" DataMember="Архив суточный.DeviceErrorCodeDuration" />
+ <Item1 Ref="151" PropertyName="Text" DataMember="Архив суточный.DeviceEventDurations" />
</DataBindings>
</Item1>
<Item2 Ref="152" ControlType="XRTable" Name="tableDetail" SizeF="1676.06714,43.18" LocationFloat="0, 0" Dpi="254" Font="Arial, 9pt">
@@ -351,7 +351,7 @@
<Scripts Ref="191" OnBeforePrint="EventGroups_BeforePrint" />
<Summary Ref="192" FormatString="{0:F2}" />
<DataBindings>
- <Item1 Ref="193" PropertyName="Text" DataMember="Архив суточный.DeviceErrorCodes" />
+ <Item1 Ref="193" PropertyName="Text" DataMember="Архив суточный.DeviceEventCodes" />
</DataBindings>
<StylePriority Ref="194" UseFont="false" UseTextAlignment="false" />
</Item13>
@@ -362,308 +362,359 @@
</Item2>
</Controls>
</Item3>
- <Item4 Ref="196" ControlType="ReportFooterBand" Name="ReportFooter" PageBreak="AfterBand" HeightF="768.0259" Dpi="254" Tag_type="System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Tag="3619613448">
+ <Item4 Ref="196" ControlType="ReportFooterBand" Name="ReportFooter" PageBreak="AfterBand" HeightF="1111.94153" Dpi="254" Tag_type="System.UInt32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Tag="3619613448">
<Scripts Ref="197" OnBeforePrint="ReportFooter_BeforePrint" />
<Controls>
- <Item1 Ref="198" ControlType="XRLabel" Name="lblPeriod_Gmin" TextAlignment="MiddleLeft" SizeF="303.424133,43.1800232" LocationFloat="1372.643, 487.770935" Dpi="254" Font="Arial, 9pt" Padding="0,5,0,0,254">
- <Scripts Ref="199" OnBeforePrint="Period_BeforePrint" />
- <StylePriority Ref="200" UseFont="false" UsePadding="false" UseTextAlignment="false" />
- </Item1>
- <Item2 Ref="201" ControlType="XRLabel" Name="lblPeriod_E" TextAlignment="MiddleLeft" SizeF="303.424133,43.1800232" LocationFloat="1372.643, 422.85434" Dpi="254" Font="Arial, 9pt" Padding="0,5,0,0,254">
- <Scripts Ref="202" OnBeforePrint="Period_BeforePrint" />
- <StylePriority Ref="203" UseFont="false" UsePadding="false" UseTextAlignment="false" />
- </Item2>
- <Item3 Ref="204" ControlType="XRLabel" Name="lblPeriod_Gmax" TextAlignment="MiddleLeft" SizeF="303.424133,43.1799927" LocationFloat="525.229248, 552.6875" Dpi="254" Font="Arial, 9pt" Padding="5,0,0,0,254">
- <Scripts Ref="205" OnBeforePrint="Period_BeforePrint" />
- <StylePriority Ref="206" UseFont="false" UsePadding="false" UseTextAlignment="false" />
- </Item3>
- <Item4 Ref="207" ControlType="XRLabel" Name="lblPeriod_D" TextAlignment="MiddleLeft" SizeF="303.424133,43.1800232" LocationFloat="525.229248, 483.921661" Dpi="254" Font="Arial, 9pt" Padding="5,0,0,0,254">
- <Scripts Ref="208" OnBeforePrint="Period_BeforePrint" />
- <StylePriority Ref="209" UseFont="false" UsePadding="false" UseTextAlignment="false" />
- </Item4>
- <Item5 Ref="210" ControlType="XRLabel" Name="lblPeriod_U" TextAlignment="MiddleLeft" SizeF="303.424133,43.1799622" LocationFloat="525.229248, 420.929718" Dpi="254" Font="Arial, 9pt" Padding="5,0,0,0,254">
- <Scripts Ref="211" OnBeforePrint="Period_BeforePrint" />
- <StylePriority Ref="212" UseFont="false" UsePadding="false" UseTextAlignment="false" />
- </Item5>
- <Item6 Ref="213" ControlType="XRLabel" Name="label34" Text="Период G<min (g):" TextAlignment="MiddleLeft" SizeF="444.634033,43.1799927" LocationFloat="928.0088, 487.770935" Dpi="254" Font="Arial, 9pt" Padding="5,0,0,0,254">
- <StylePriority Ref="214" UsePadding="false" />
- </Item6>
- <Item7 Ref="215" ControlType="XRLabel" Name="labelE" Text="Период функц. отказа (E):" TextAlignment="MiddleLeft" SizeF="444.634033,43.1800232" LocationFloat="928.0088, 422.85434" Dpi="254" Font="Arial, 9pt" Padding="5,0,0,0,254">
- <StylePriority Ref="216" UsePadding="false" />
- </Item7>
- <Item8 Ref="217" ControlType="XRLabel" Name="label31" Text="Период G>Gmax (G):" TextAlignment="MiddleLeft" SizeF="521.6524,43.1799927" LocationFloat="0.317567825, 552.6875" Dpi="254" Font="Arial, 9pt" Padding="5,0,0,0,254">
- <StylePriority Ref="218" UsePadding="false" />
- </Item8>
- <Item9 Ref="219" ControlType="XRLabel" Name="label29" Text="Период t2-t1 < min (D):" TextAlignment="MiddleLeft" SizeF="519.324158,43.1799927" LocationFloat="2.64583325, 487.770935" Dpi="254" Font="Arial, 9pt" Padding="5,0,0,0,254">
- <StylePriority Ref="220" UsePadding="false" />
- </Item9>
- <Item10 Ref="221" ControlType="XRLabel" Name="lblPeriod_Work" TextAlignment="MiddleLeft" SizeF="303.424133,43.1800232" LocationFloat="1372.64282, 352.937744" Dpi="254" Font="Arial, 9pt" Padding="0,5,0,0,254">
- <DataBindings>
- <Item1 Ref="222" FormatString="__{0:F2}__ час." PropertyName="Text" DataMember="Рассчитанные значения.Суммарные потребления за отчетный период.WorkTime" />
- </DataBindings>
- <StylePriority Ref="223" UseFont="false" UsePadding="false" UseTextAlignment="false" />
- </Item10>
- <Item11 Ref="224" ControlType="XRPageInfo" Name="pageInfo1" PageInfo="DateTime" Format="{0:dd.MM.yy HH:mm:ss}" TextAlignment="MiddleLeft" SizeF="302.26,43.1800537" LocationFloat="1020.445, 724.8458" Dpi="254" Font="Arial, 8.25pt, style=Italic" ForeColor="Gray" Padding="0,0,0,0,254">
- <StylePriority Ref="225" UseFont="false" UseForeColor="false" UsePadding="false" UseTextAlignment="false" />
- </Item11>
- <Item12 Ref="226" ControlType="XRLabel" Name="label14" Text="Показания интегратора КМ-5" TextAlignment="MiddleCenter" SizeF="604.52,58.4200058" LocationFloat="571.5, 63.5" Dpi="254" Font="Arial, 9.75pt" Padding="5,5,0,0,254">
- <StylePriority Ref="227" UseFont="false" UseTextAlignment="false" />
- </Item12>
- <Item13 Ref="228" ControlType="XRTable" Name="table4" SizeF="1408.64185,208.280014" LocationFloat="158.75, 127" Dpi="254" Font="Arial, 9pt" Borders="All">
+ <Item1 Ref="198" ControlType="XRTable" Name="table1" SizeF="1150.61987,571.5001" LocationFloat="2.64583325, 346.949921" Dpi="254" Font="Courier New, 11.25pt, charSet=204" Borders="All">
<Rows>
- <Item1 Ref="229" ControlType="XRTableRow" Name="tableRow1" Weight="1" Dpi="254">
+ <Item1 Ref="199" ControlType="XRTableRow" Name="tableRow5" Weight="1" Dpi="254">
<Cells>
- <Item1 Ref="230" ControlType="XRTableCell" Name="tableCell3" Weight="1.2770832984894027" Text="Дата Время" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 9pt, style=Bold">
- <StylePriority Ref="231" UseFont="false" UseTextAlignment="false" />
+ <Item1 Ref="200" ControlType="XRTableCell" Name="tableCell19" Weight="1.9702396131541631" Text="Длительности периодов, часы" TextAlignment="MiddleCenter" Dpi="254" Padding="5,0,0,0,254">
+ <StylePriority Ref="201" UsePadding="false" UseTextAlignment="false" />
</Item1>
- <Item2 Ref="232" ControlType="XRTableCell" Name="tableCell5" Weight="0.92291686713065879" Text="Q" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 9pt, style=Bold">
- <StylePriority Ref="233" UseFont="false" UseTextAlignment="false" />
+ </Cells>
+ </Item1>
+ <Item2 Ref="202" ControlType="XRTableRow" Name="tableRow6" Weight="1" Dpi="254">
+ <Cells>
+ <Item1 Ref="203" ControlType="XRTableCell" Name="tableCell22" Weight="1.4831164845000773" Text="Отчетный период" TextAlignment="MiddleLeft" Dpi="254" Padding="5,0,0,0,254">
+ <StylePriority Ref="204" UsePadding="false" UseTextAlignment="false" />
+ </Item1>
+ <Item2 Ref="205" ControlType="XRTableCell" Name="Period_Report" Weight="0.4871231286540858" Text="Period_Report" TextAlignment="MiddleCenter" Dpi="254" Padding="10,0,0,0,254">
+ <DataBindings>
+ <Item1 Ref="206" FormatString="{0:F4}" PropertyName="Text" DataMember="Рассчитанные значения.Суммарные потребления за отчетный период.RequestedInterval" />
+ </DataBindings>
+ <StylePriority Ref="207" UsePadding="false" UseTextAlignment="false" />
</Item2>
- <Item3 Ref="234" ControlType="XRTableCell" Name="tableCell7" Weight="1.1000000605437394" Text="M1" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 9pt, style=Bold">
- <StylePriority Ref="235" UseFont="false" UseTextAlignment="false" />
+ </Cells>
+ </Item2>
+ <Item3 Ref="208" ControlType="XRTableRow" Name="tableRow7" Weight="1" Dpi="254">
+ <Cells>
+ <Item1 Ref="209" ControlType="XRTableCell" Name="tableCell24" Weight="1.4831164845000773" Text="Период имеющихся данных" TextAlignment="MiddleLeft" Dpi="254" Padding="5,0,0,0,254">
+ <StylePriority Ref="210" UsePadding="false" UseTextAlignment="false" />
+ </Item1>
+ <Item2 Ref="211" ControlType="XRTableCell" Name="tableCell25" Weight="0.4871231286540858" Text="Period_Work" TextAlignment="MiddleCenter" Dpi="254" Padding="10,0,0,0,254">
+ <DataBindings>
+ <Item1 Ref="212" FormatString="{0:F4}" PropertyName="Text" DataMember="Рассчитанные значения.Суммарные потребления за отчетный период.ExistingInterval" />
+ </DataBindings>
+ <StylePriority Ref="213" UsePadding="false" UseTextAlignment="false" />
+ </Item2>
+ </Cells>
+ </Item3>
+ <Item4 Ref="214" ControlType="XRTableRow" Name="tableRow8" Weight="1" Dpi="254">
+ <Cells>
+ <Item1 Ref="215" ControlType="XRTableCell" Name="tableCell26" Weight="1.4831164845000773" Text="Период отключения питания	(U)" TextAlignment="MiddleLeft" Dpi="254" Padding="5,0,0,0,254">
+ <StylePriority Ref="216" UsePadding="false" UseTextAlignment="false" />
+ </Item1>
+ <Item2 Ref="217" ControlType="XRTableCell" Name="Period_U" Weight="0.4871231286540858" Text="Period_U" TextAlignment="MiddleCenter" Dpi="254" Padding="10,0,0,0,254">
+ <Scripts Ref="218" OnBeforePrint="Period_BeforePrint" />
+ <StylePriority Ref="219" UsePadding="false" UseTextAlignment="false" />
+ </Item2>
+ </Cells>
+ </Item4>
+ <Item5 Ref="220" ControlType="XRTableRow" Name="tableRow11" Weight="1" Dpi="254">
+ <Cells>
+ <Item1 Ref="221" ControlType="XRTableCell" Name="tableCell27" Weight="1.4831164845000773" Text="Период функционального отказа	(E)" TextAlignment="MiddleLeft" Dpi="254" Padding="5,0,0,0,254">
+ <StylePriority Ref="222" UsePadding="false" UseTextAlignment="false" />
+ </Item1>
+ <Item2 Ref="223" ControlType="XRTableCell" Name="Period_E" Weight="0.4871231286540858" Text="Period_E" TextAlignment="MiddleCenter" Dpi="254" Padding="10,0,0,0,254">
+ <Scripts Ref="224" OnBeforePrint="Period_BeforePrint" />
+ <StylePriority Ref="225" UsePadding="false" UseTextAlignment="false" />
+ </Item2>
+ </Cells>
+ </Item5>
+ <Item6 Ref="226" ControlType="XRTableRow" Name="tableRow12" Weight="1" Dpi="254">
+ <Cells>
+ <Item1 Ref="227" ControlType="XRTableCell" Name="tableCell28" Weight="1.4831164845000773" Text="Период t2-t1 < min		(D)" TextAlignment="MiddleLeft" Dpi="254" Padding="5,0,0,0,254">
+ <StylePriority Ref="228" UsePadding="false" UseTextAlignment="false" />
+ </Item1>
+ <Item2 Ref="229" ControlType="XRTableCell" Name="Period_D" Weight="0.4871231286540858" Text="Period_D" TextAlignment="MiddleCenter" Dpi="254" Padding="10,0,0,0,254">
+ <Scripts Ref="230" OnBeforePrint="Period_BeforePrint" />
+ <StylePriority Ref="231" UsePadding="false" UseTextAlignment="false" />
+ </Item2>
+ </Cells>
+ </Item6>
+ <Item7 Ref="232" ControlType="XRTableRow" Name="tableRow13" Weight="1" Dpi="254">
+ <Cells>
+ <Item1 Ref="233" ControlType="XRTableCell" Name="tableCell29" Weight="1.4831164845000773" Text="Период G<min			(g)" TextAlignment="MiddleLeft" Dpi="254" Padding="5,0,0,0,254">
+ <StylePriority Ref="234" UsePadding="false" UseTextAlignment="false" />
+ </Item1>
+ <Item2 Ref="235" ControlType="XRTableCell" Name="Period_Gmin" Weight="0.4871231286540858" Text="Period_Gmin" TextAlignment="MiddleCenter" Dpi="254" Padding="10,0,0,0,254">
+ <Scripts Ref="236" OnBeforePrint="Period_BeforePrint" />
+ <StylePriority Ref="237" UsePadding="false" UseTextAlignment="false" />
+ </Item2>
+ </Cells>
+ </Item7>
+ <Item8 Ref="238" ControlType="XRTableRow" Name="tableRow14" Weight="1" Dpi="254">
+ <Cells>
+ <Item1 Ref="239" ControlType="XRTableCell" Name="tableCell30" Weight="1.4831164845000773" Text="Период G>Gmax			(G)" TextAlignment="MiddleLeft" Dpi="254" Padding="5,0,0,0,254">
+ <StylePriority Ref="240" UsePadding="false" UseTextAlignment="false" />
+ </Item1>
+ <Item2 Ref="241" ControlType="XRTableCell" Name="Period_Gmax" Weight="0.4871231286540858" Text="Period_Gmax" TextAlignment="MiddleCenter" Dpi="254" Padding="10,0,0,0,254">
+ <Scripts Ref="242" OnBeforePrint="Period_BeforePrint" />
+ <StylePriority Ref="243" UsePadding="false" UseTextAlignment="false" />
+ </Item2>
+ </Cells>
+ </Item8>
+ <Item9 Ref="244" ControlType="XRTableRow" Name="tableRow15" Weight="1" Dpi="254">
+ <Cells>
+ <Item1 Ref="245" ControlType="XRTableCell" Name="tableCell31" Weight="1.4831164845000773" Text="Период прочие			(*)" TextAlignment="MiddleLeft" Dpi="254" Padding="5,0,0,0,254">
+ <StylePriority Ref="246" UsePadding="false" UseTextAlignment="false" />
+ </Item1>
+ <Item2 Ref="247" ControlType="XRTableCell" Name="Period_Other" Weight="0.4871231286540858" Text="Period_Other" TextAlignment="MiddleCenter" Dpi="254" Padding="10,0,0,0,254">
+ <Scripts Ref="248" OnBeforePrint="Period_BeforePrint" />
+ <StylePriority Ref="249" UsePadding="false" UseTextAlignment="false" />
+ </Item2>
+ </Cells>
+ </Item9>
+ </Rows>
+ <StylePriority Ref="250" UseFont="false" UseBorders="false" />
+ </Item1>
+ <Item2 Ref="251" ControlType="XRPageInfo" Name="pageInfo1" PageInfo="DateTime" Format="{0:dd.MM.yy HH:mm:ss}" TextAlignment="MiddleLeft" SizeF="302.26,43.1800537" LocationFloat="1021.47351, 1061.74084" Dpi="254" Font="Arial, 8.25pt, style=Italic" ForeColor="Gray" Padding="0,0,0,0,254">
+ <StylePriority Ref="252" UseFont="false" UseForeColor="false" UsePadding="false" UseTextAlignment="false" />
+ </Item2>
+ <Item3 Ref="253" ControlType="XRLabel" Name="label14" Text="Показания интегратора КМ-5" TextAlignment="MiddleCenter" SizeF="604.52,58.4200058" LocationFloat="571.5, 63.5" Dpi="254" Font="Arial, 9.75pt" Padding="5,5,0,0,254">
+ <StylePriority Ref="254" UseFont="false" UseTextAlignment="false" />
+ </Item3>
+ <Item4 Ref="255" ControlType="XRTable" Name="table4" SizeF="1408.64185,208.280014" LocationFloat="158.75, 127" Dpi="254" Font="Arial, 9pt" Borders="All">
+ <Rows>
+ <Item1 Ref="256" ControlType="XRTableRow" Name="tableRow1" Weight="1" Dpi="254">
+ <Cells>
+ <Item1 Ref="257" ControlType="XRTableCell" Name="tableCell3" Weight="1.2770832984894027" Text="Дата Время" TextAlignment="MiddleCenter" Dpi="254" Font="Microsoft Sans Serif, 9pt, style=Bold">
+ <StylePriority Ref="258" UseFont="false" UseTextAlignment="false" />
+ </Item1>
+ <Item2 Ref="259" ControlType="XRTableCell" Name="tableCell5" Weight="0.92291686713065879" Text="Q" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 9pt, style=Bold">
+ <StylePriority Ref="260" UseFont="false" UseTextAlignment="false" />
+ </Item2>
+ <Item3 Ref="261" ControlType="XRTableCell" Name="tableCell7" Weight="1.1000000605437394" Text="M1" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 9pt, style=Bold">
+ <StylePriority Ref="262" UseFont="false" UseTextAlignment="false" />
</Item3>
- <Item4 Ref="236" ControlType="XRTableCell" Name="tableCell6" Weight="1.1229167242579188" Text="M2" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 9pt, style=Bold">
- <StylePriority Ref="237" UseFont="false" UseTextAlignment="false" />
+ <Item4 Ref="263" ControlType="XRTableCell" Name="tableCell6" Weight="1.1229167242579188" Text="M2" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 9pt, style=Bold">
+ <StylePriority Ref="264" UseFont="false" UseTextAlignment="false" />
</Item4>
- <Item5 Ref="238" ControlType="XRTableCell" Name="tableCell13" Weight="1.1229167242579188" Text="Tр" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 9pt, style=Bold" Borders="Top, Right, Bottom">
- <StylePriority Ref="239" UseFont="false" UseBorders="false" UseTextAlignment="false" />
+ <Item5 Ref="265" ControlType="XRTableCell" Name="tableCell13" Weight="1.1229167242579188" Text="Tр" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 9pt, style=Bold" Borders="Top, Right, Bottom">
+ <StylePriority Ref="266" UseFont="false" UseBorders="false" UseTextAlignment="false" />
</Item5>
</Cells>
</Item1>
- <Item2 Ref="240" ControlType="XRTableRow" Name="tableRow3" Weight="1" Dpi="254">
+ <Item2 Ref="267" ControlType="XRTableRow" Name="tableRow3" Weight="1" Dpi="254">
<Cells>
- <Item1 Ref="241" ControlType="XRTableCell" Name="dtStartDateCell" Weight="1.2770832984894027" Text="DATE_END" TextAlignment="MiddleCenter" Dpi="254">
- <Scripts Ref="242" OnBeforePrint="tableCell7_BeforePrint" />
+ <Item1 Ref="268" ControlType="XRTableCell" Name="dtStartDateCell" Weight="1.2770832984894027" Text="DATE_END" TextAlignment="MiddleCenter" Dpi="254">
+ <Scripts Ref="269" OnBeforePrint="tableCell7_BeforePrint" />
<DataBindings>
- <Item1 Ref="243" FormatString="{0:dd.MM.yyyy HH:mm}" PropertyName="Text" DataMember="Показания счетчиков.DataDate_End" />
+ <Item1 Ref="270" FormatString="{0:dd.MM.yyyy HH:mm}" PropertyName="Text" DataMember="Показания счетчиков.DataDate_End" />
</DataBindings>
- <StylePriority Ref="244" UseTextAlignment="false" />
+ <StylePriority Ref="271" UseTextAlignment="false" />
</Item1>
- <Item2 Ref="245" ControlType="XRTableCell" Name="M1_End" Weight="0.92291686713065879" NullValueText="- " Text="M1_End" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
+ <Item2 Ref="272" ControlType="XRTableCell" Name="M1_End" Weight="0.92291686713065879" NullValueText="- " Text="M1_End" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
<DataBindings>
- <Item1 Ref="246" FormatString="{0:F3}" PropertyName="Text" DataMember="Показания счетчиков.Qdelta_End" />
+ <Item1 Ref="273" FormatString="{0:F3}" PropertyName="Text" DataMember="Показания счетчиков.Qdelta_End" />
</DataBindings>
- <StylePriority Ref="247" UsePadding="false" UseTextAlignment="false" />
+ <StylePriority Ref="274" UsePadding="false" UseTextAlignment="false" />
</Item2>
- <Item3 Ref="248" ControlType="XRTableCell" Name="M2_End" Weight="1.1000000605437394" NullValueText="- " Text="M2_End" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
+ <Item3 Ref="275" ControlType="XRTableCell" Name="M2_End" Weight="1.1000000605437394" NullValueText="- " Text="M2_End" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
<DataBindings>
- <Item1 Ref="249" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M1_End" />
+ <Item1 Ref="276" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M1_End" />
</DataBindings>
- <StylePriority Ref="250" UsePadding="false" UseTextAlignment="false" />
+ <StylePriority Ref="277" UsePadding="false" UseTextAlignment="false" />
</Item3>
- <Item4 Ref="251" ControlType="XRTableCell" Name="Q_End" Weight="1.1229167242579188" NullValueText="- " Text="Q_End" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
+ <Item4 Ref="278" ControlType="XRTableCell" Name="Q_End" Weight="1.1229167242579188" NullValueText="- " Text="Q_End" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
<DataBindings>
- <Item1 Ref="252" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M2_End" />
+ <Item1 Ref="279" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M2_End" />
</DataBindings>
- <StylePriority Ref="253" UsePadding="false" UseTextAlignment="false" />
+ <StylePriority Ref="280" UsePadding="false" UseTextAlignment="false" />
</Item4>
- <Item5 Ref="254" ControlType="XRTableCell" Name="tableCell16" Weight="1.1229167242579188" NullValueText="- " Text="tableCell16" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254" Borders="Right, Bottom">
+ <Item5 Ref="281" ControlType="XRTableCell" Name="tableCell16" Weight="1.1229167242579188" NullValueText="- " Text="tableCell16" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254" Borders="Right, Bottom">
<DataBindings>
- <Item1 Ref="255" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.W_End" />
+ <Item1 Ref="282" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.W_End" />
</DataBindings>
- <StylePriority Ref="256" UsePadding="false" UseBorders="false" UseTextAlignment="false" />
+ <StylePriority Ref="283" UsePadding="false" UseBorders="false" UseTextAlignment="false" />
</Item5>
</Cells>
</Item2>
- <Item3 Ref="257" ControlType="XRTableRow" Name="tableRow2" Weight="1" Dpi="254">
+ <Item3 Ref="284" ControlType="XRTableRow" Name="tableRow2" Weight="1" Dpi="254">
<Cells>
- <Item1 Ref="258" ControlType="XRTableCell" Name="dtEndDateCell" Weight="1.2770832984894027" Text="dtEndDateCell" TextAlignment="MiddleCenter" Dpi="254">
+ <Item1 Ref="285" ControlType="XRTableCell" Name="dtEndDateCell" Weight="1.2770832984894027" Text="dtEndDateCell" TextAlignment="MiddleCenter" Dpi="254">
<DataBindings>
- <Item1 Ref="259" FormatString="{0:dd.MM.yyyy HH:mm}" PropertyName="Text" DataMember="Показания счетчиков.DataDate_Start" />
+ <Item1 Ref="286" FormatString="{0:dd.MM.yyyy HH:mm}" PropertyName="Text" DataMember="Показания счетчиков.DataDate_Start" />
</DataBindings>
- <StylePriority Ref="260" UseTextAlignment="false" />
+ <StylePriority Ref="287" UseTextAlignment="false" />
</Item1>
- <Item2 Ref="261" ControlType="XRTableCell" Name="M1_Start" Weight="0.92291686713065879" NullValueText="- " Text="M1_Sart" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
+ <Item2 Ref="288" ControlType="XRTableCell" Name="M1_Start" Weight="0.92291686713065879" NullValueText="- " Text="M1_Sart" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
<DataBindings>
- <Item1 Ref="262" FormatString="{0:F3}" PropertyName="Text" DataMember="Показания счетчиков.Qdelta_Start" />
+ <Item1 Ref="289" FormatString="{0:F3}" PropertyName="Text" DataMember="Показания счетчиков.Qdelta_Start" />
</DataBindings>
- <StylePriority Ref="263" UsePadding="false" UseTextAlignment="false" />
+ <StylePriority Ref="290" UsePadding="false" UseTextAlignment="false" />
</Item2>
- <Item3 Ref="264" ControlType="XRTableCell" Name="M2_Start" Weight="1.1000000605437394" NullValueText="- " Text="M2_Start" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
+ <Item3 Ref="291" ControlType="XRTableCell" Name="M2_Start" Weight="1.1000000605437394" NullValueText="- " Text="M2_Start" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
<DataBindings>
- <Item1 Ref="265" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M1_Start" />
+ <Item1 Ref="292" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M1_Start" />
</DataBindings>
- <StylePriority Ref="266" UsePadding="false" UseTextAlignment="false" />
+ <StylePriority Ref="293" UsePadding="false" UseTextAlignment="false" />
</Item3>
- <Item4 Ref="267" ControlType="XRTableCell" Name="Q_Start" Weight="1.1229167242579188" NullValueText="- " Text="Q_Start" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
+ <Item4 Ref="294" ControlType="XRTableCell" Name="Q_Start" Weight="1.1229167242579188" NullValueText="- " Text="Q_Start" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
<DataBindings>
- <Item1 Ref="268" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M2_Start" />
+ <Item1 Ref="295" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M2_Start" />
</DataBindings>
- <StylePriority Ref="269" UsePadding="false" UseTextAlignment="false" />
+ <StylePriority Ref="296" UsePadding="false" UseTextAlignment="false" />
</Item4>
- <Item5 Ref="270" ControlType="XRTableCell" Name="tableCell17" Weight="1.1229167242579188" NullValueText="- " Text="tableCell17" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254" Borders="Right, Bottom">
+ <Item5 Ref="297" ControlType="XRTableCell" Name="tableCell17" Weight="1.1229167242579188" NullValueText="- " Text="tableCell17" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254" Borders="Right, Bottom">
<DataBindings>
- <Item1 Ref="271" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.W_Start" />
+ <Item1 Ref="298" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.W_Start" />
</DataBindings>
- <StylePriority Ref="272" UsePadding="false" UseBorders="false" UseTextAlignment="false" />
+ <StylePriority Ref="299" UsePadding="false" UseBorders="false" UseTextAlignment="false" />
</Item5>
</Cells>
</Item3>
- <Item4 Ref="273" ControlType="XRTableRow" Name="tableRow4" Weight="1" Dpi="254">
+ <Item4 Ref="300" ControlType="XRTableRow" Name="tableRow4" Weight="1" Dpi="254">
<Cells>
- <Item1 Ref="274" ControlType="XRTableCell" Name="tableCell10" Weight="1.2770832984894027" Text="Итого" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 9pt">
- <StylePriority Ref="275" UseFont="false" UseTextAlignment="false" />
+ <Item1 Ref="301" ControlType="XRTableCell" Name="tableCell10" Weight="1.2770832984894027" Text="Итого" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 9pt">
+ <StylePriority Ref="302" UseFont="false" UseTextAlignment="false" />
</Item1>
- <Item2 Ref="276" ControlType="XRTableCell" Name="M_in_delta" Weight="0.92291686713065879" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
+ <Item2 Ref="303" ControlType="XRTableCell" Name="M_in_delta" Weight="0.92291686713065879" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
<DataBindings>
- <Item1 Ref="277" FormatString="{0:F3}" PropertyName="Text" DataMember="Показания счетчиков.Q_Delta" />
+ <Item1 Ref="304" FormatString="{0:F3}" PropertyName="Text" DataMember="Показания счетчиков.Q_Delta" />
</DataBindings>
- <StylePriority Ref="278" UsePadding="false" UseTextAlignment="false" />
+ <StylePriority Ref="305" UsePadding="false" UseTextAlignment="false" />
</Item2>
- <Item3 Ref="279" ControlType="XRTableCell" Name="M2_delta" Weight="1.1000000605437394" NullValueText="- " Text="M2_delta" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
+ <Item3 Ref="306" ControlType="XRTableCell" Name="M2_delta" Weight="1.1000000605437394" NullValueText="- " Text="M2_delta" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
<DataBindings>
- <Item1 Ref="280" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M1_Delta" />
+ <Item1 Ref="307" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M1_Delta" />
</DataBindings>
- <StylePriority Ref="281" UsePadding="false" UseTextAlignment="false" />
+ <StylePriority Ref="308" UsePadding="false" UseTextAlignment="false" />
</Item3>
- <Item4 Ref="282" ControlType="XRTableCell" Name="Q_delta" Weight="1.1229167242579188" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
+ <Item4 Ref="309" ControlType="XRTableCell" Name="Q_delta" Weight="1.1229167242579188" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254">
<DataBindings>
- <Item1 Ref="283" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M2_Delta" />
+ <Item1 Ref="310" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.M2_Delta" />
</DataBindings>
- <StylePriority Ref="284" UsePadding="false" UseTextAlignment="false" />
+ <StylePriority Ref="311" UsePadding="false" UseTextAlignment="false" />
</Item4>
- <Item5 Ref="285" ControlType="XRTableCell" Name="tableCell18" Weight="1.1229167242579188" NullValueText="- " Text="tableCell18" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254" Borders="Right, Bottom">
+ <Item5 Ref="312" ControlType="XRTableCell" Name="tableCell18" Weight="1.1229167242579188" NullValueText="- " Text="tableCell18" TextAlignment="MiddleRight" Dpi="254" Padding="0,5,0,0,254" Borders="Right, Bottom">
<DataBindings>
- <Item1 Ref="286" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.W_Delta" />
+ <Item1 Ref="313" FormatString="{0:F2}" PropertyName="Text" DataMember="Показания счетчиков.W_Delta" />
</DataBindings>
- <StylePriority Ref="287" UsePadding="false" UseBorders="false" UseTextAlignment="false" />
+ <StylePriority Ref="314" UsePadding="false" UseBorders="false" UseTextAlignment="false" />
</Item5>
</Cells>
- <Scripts Ref="288" OnBeforePrint="tableRow4_BeforePrint" />
+ <Scripts Ref="315" OnBeforePrint="tableRow4_BeforePrint" />
</Item4>
</Rows>
- <StylePriority Ref="289" UseFont="false" UseBorders="false" />
- </Item13>
- <Item14 Ref="290" ControlType="XRLabel" Name="label42" Text="Отчет подготовлен в системе ЛЭРС УЧЕТ (www.lers.ru). Отпечатан:" TextAlignment="MiddleLeft" SizeF="1017.79913,43.1800537" LocationFloat="0, 724.8458" Dpi="254" Font="Arial, 8.25pt, style=Italic" ForeColor="Gray">
- <StylePriority Ref="291" UseFont="false" UseTextAlignment="false" />
- </Item14>
- <Item15 Ref="292" ControlType="XRLabel" Name="xrLabel1" Text="label9" TextAlignment="MiddleLeft" SizeF="115.3584,43.1800537" LocationFloat="1339.48425, 724.8458" Dpi="254" Font="Arial, 8.25pt, style=Italic" ForeColor="Gray" Padding="5,5,0,0,254">
+ <StylePriority Ref="316" UseFont="false" UseBorders="false" />
+ </Item4>
+ <Item5 Ref="317" ControlType="XRLabel" Name="label42" Text="Отчет подготовлен в системе ЛЭРС УЧЕТ (www.lers.ru). Отпечатан:" TextAlignment="MiddleLeft" SizeF="1017.79913,43.1800537" LocationFloat="0, 1061.74084" Dpi="254" Font="Arial, 8.25pt, style=Italic" ForeColor="Gray">
+ <StylePriority Ref="318" UseFont="false" UseTextAlignment="false" />
+ </Item5>
+ <Item6 Ref="319" ControlType="XRLabel" Name="xrLabel1" Text="label9" TextAlignment="MiddleLeft" SizeF="115.3584,43.1800537" LocationFloat="1336.83862, 1061.74084" Dpi="254" Font="Arial, 8.25pt, style=Italic" ForeColor="Gray" Padding="5,5,0,0,254">
<DataBindings>
- <Item1 Ref="293" Parameter="#Ref-3" PropertyName="Text" DataMember="ACCOUNT_ID" />
+ <Item1 Ref="320" Parameter="#Ref-3" PropertyName="Text" DataMember="ACCOUNT_ID" />
</DataBindings>
- <StylePriority Ref="294" UseFont="false" UseForeColor="false" UseTextAlignment="false" />
- </Item15>
- <Item16 Ref="295" ControlType="XRTable" Name="tableFooter" SizeF="1676.06714,43.18" LocationFloat="0, 0" Dpi="254" Font="Arial, 9pt, style=Bold" Borders="Left, Right, Bottom">
+ <StylePriority Ref="321" UseFont="false" UseForeColor="false" UseTextAlignment="false" />
+ </Item6>
+ <Item7 Ref="322" ControlType="XRTable" Name="tableFooter" SizeF="1676.06714,43.18" LocationFloat="0, 0" Dpi="254" Font="Arial, 9pt, style=Bold" Borders="Left, Right, Bottom">
<Rows>
- <Item1 Ref="296" ControlType="XRTableRow" Name="rowFooter" Weight="1" Dpi="254">
+ <Item1 Ref="323" ControlType="XRTableRow" Name="rowFooter" Weight="1" Dpi="254">
<Cells>
- <Item1 Ref="297" ControlType="XRTableCell" Name="Cell0" Weight="0.11034482780675516" Text="Итого" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <StylePriority Ref="298" UseFont="false" UsePadding="false" UseTextAlignment="false" />
+ <Item1 Ref="324" ControlType="XRTableCell" Name="Cell0" Weight="0.11034482780675516" Text="Итого" TextAlignment="MiddleCenter" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <StylePriority Ref="325" UseFont="false" UsePadding="false" UseTextAlignment="false" />
</Item1>
- <Item2 Ref="299" ControlType="XRTableCell" Name="sumQ" Weight="0.075481949358705072" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,7,0,0,254">
- <Summary Ref="300" FormatString="{0:F3}" Running="Report" />
+ <Item2 Ref="326" ControlType="XRTableCell" Name="sumQ" Weight="0.075481949358705072" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,7,0,0,254">
+ <Summary Ref="327" FormatString="{0:F3}" Running="Report" />
<DataBindings>
- <Item1 Ref="301" PropertyName="Text" DataMember="Архив суточный.Q" />
+ <Item1 Ref="328" PropertyName="Text" DataMember="Архив суточный.Q" />
</DataBindings>
- <StylePriority Ref="302" UseFont="false" UsePadding="false" UseTextAlignment="false" />
+ <StylePriority Ref="329" UseFont="false" UsePadding="false" UseTextAlignment="false" />
</Item2>
- <Item3 Ref="303" ControlType="XRTableCell" Name="sumM1" Weight="0.076529561737694513" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <Summary Ref="304" FormatString="{0:F2}" Running="Report" />
+ <Item3 Ref="330" ControlType="XRTableCell" Name="sumM1" Weight="0.076529561737694513" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <Summary Ref="331" FormatString="{0:F2}" Running="Report" />
<DataBindings>
- <Item1 Ref="305" PropertyName="Text" DataMember="Архив суточный.M1" />
+ <Item1 Ref="332" PropertyName="Text" DataMember="Архив суточный.M1" />
</DataBindings>
- <StylePriority Ref="306" UseFont="false" UseTextAlignment="false" />
+ <StylePriority Ref="333" UseFont="false" UseTextAlignment="false" />
</Item3>
- <Item4 Ref="307" ControlType="XRTableCell" Name="sumM2" Weight="0.081551703626729852" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <Summary Ref="308" FormatString="{0:F2}" Running="Report" />
+ <Item4 Ref="334" ControlType="XRTableCell" Name="sumM2" Weight="0.081551703626729852" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <Summary Ref="335" FormatString="{0:F2}" Running="Report" />
<DataBindings>
- <Item1 Ref="309" PropertyName="Text" DataMember="Архив суточный.M2" />
+ <Item1 Ref="336" PropertyName="Text" DataMember="Архив суточный.M2" />
</DataBindings>
- <StylePriority Ref="310" UseFont="false" UseTextAlignment="false" />
+ <StylePriority Ref="337" UseFont="false" UseTextAlignment="false" />
</Item4>
- <Item5 Ref="311" ControlType="XRTableCell" Name="sumM" Weight="0.082332398271904458" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <Summary Ref="312" FormatString="{0:F2}" Running="Report" />
+ <Item5 Ref="338" ControlType="XRTableCell" Name="sumM" Weight="0.082332398271904458" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <Summary Ref="339" FormatString="{0:F2}" Running="Report" />
<DataBindings>
- <Item1 Ref="313" PropertyName="Text" DataMember="Архив суточный.M" />
+ <Item1 Ref="340" PropertyName="Text" DataMember="Архив суточный.M" />
</DataBindings>
- <StylePriority Ref="314" UseFont="false" UseTextAlignment="false" />
+ <StylePriority Ref="341" UseFont="false" UseTextAlignment="false" />
</Item5>
- <Item6 Ref="315" ControlType="XRTableCell" Name="avgT1" Weight="0.05559857131125745" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <Summary Ref="316" FormatString="{0:F1}" Running="Report" Func="Avg" IgnoreNullValues="true" />
+ <Item6 Ref="342" ControlType="XRTableCell" Name="avgT1" Weight="0.05559857131125745" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <Summary Ref="343" FormatString="{0:F1}" Running="Report" Func="Avg" IgnoreNullValues="true" />
<DataBindings>
- <Item1 Ref="317" PropertyName="Text" DataMember="Архив суточный.T1" />
+ <Item1 Ref="344" PropertyName="Text" DataMember="Архив суточный.T1" />
</DataBindings>
- <StylePriority Ref="318" UseFont="false" UseTextAlignment="false" />
+ <StylePriority Ref="345" UseFont="false" UseTextAlignment="false" />
</Item6>
- <Item7 Ref="319" ControlType="XRTableCell" Name="avgT2" Weight="0.053291366110265824" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <Summary Ref="320" FormatString="{0:F1}" Running="Report" Func="Avg" IgnoreNullValues="true" />
+ <Item7 Ref="346" ControlType="XRTableCell" Name="avgT2" Weight="0.053291366110265824" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <Summary Ref="347" FormatString="{0:F1}" Running="Report" Func="Avg" IgnoreNullValues="true" />
<DataBindings>
- <Item1 Ref="321" PropertyName="Text" DataMember="Архив суточный.T2" />
+ <Item1 Ref="348" PropertyName="Text" DataMember="Архив суточный.T2" />
</DataBindings>
- <StylePriority Ref="322" UseFont="false" UseTextAlignment="false" />
+ <StylePriority Ref="349" UseFont="false" UseTextAlignment="false" />
</Item7>
- <Item8 Ref="323" ControlType="XRTableCell" Name="avgT" Weight="0.055669533175550776" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <Summary Ref="324" FormatString="{0:F1}" Running="Report" Func="Avg" IgnoreNullValues="true" />
+ <Item8 Ref="350" ControlType="XRTableCell" Name="avgT" Weight="0.055669533175550776" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <Summary Ref="351" FormatString="{0:F1}" Running="Report" Func="Avg" IgnoreNullValues="true" />
<DataBindings>
- <Item1 Ref="325" PropertyName="Text" DataMember="Архив суточный.T" />
+ <Item1 Ref="352" PropertyName="Text" DataMember="Архив суточный.T" />
</DataBindings>
- <StylePriority Ref="326" UseFont="false" UseTextAlignment="false" />
+ <StylePriority Ref="353" UseFont="false" UseTextAlignment="false" />
</Item8>
- <Item9 Ref="327" ControlType="XRTableCell" Name="avgP1" Weight="0.060377345913143546" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <Summary Ref="328" FormatString="{0:F1}" Running="Report" Func="Avg" IgnoreNullValues="true" />
+ <Item9 Ref="354" ControlType="XRTableCell" Name="avgP1" Weight="0.060377345913143546" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <Summary Ref="355" FormatString="{0:F1}" Running="Report" Func="Avg" IgnoreNullValues="true" />
<DataBindings>
- <Item1 Ref="329" PropertyName="Text" DataMember="Архив суточный.P1" />
+ <Item1 Ref="356" PropertyName="Text" DataMember="Архив суточный.P1" />
</DataBindings>
- <StylePriority Ref="330" UseFont="false" UseTextAlignment="false" />
+ <StylePriority Ref="357" UseFont="false" UseTextAlignment="false" />
</Item9>
- <Item10 Ref="331" ControlType="XRTableCell" Name="avgP2" Weight="0.059454903822820912" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <Summary Ref="332" FormatString="{0:F1}" Running="Report" Func="Avg" IgnoreNullValues="true" />
+ <Item10 Ref="358" ControlType="XRTableCell" Name="avgP2" Weight="0.059454903822820912" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <Summary Ref="359" FormatString="{0:F1}" Running="Report" Func="Avg" IgnoreNullValues="true" />
<DataBindings>
- <Item1 Ref="333" PropertyName="Text" DataMember="Архив суточный.P2" />
+ <Item1 Ref="360" PropertyName="Text" DataMember="Архив суточный.P2" />
</DataBindings>
- <StylePriority Ref="334" UseFont="false" UseTextAlignment="false" />
+ <StylePriority Ref="361" UseFont="false" UseTextAlignment="false" />
</Item10>
- <Item11 Ref="335" ControlType="XRTableCell" Name="sumW_notwork" Weight="0.059733845929263077" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <Summary Ref="336" FormatString="{0:F2}" Running="Report" />
+ <Item11 Ref="362" ControlType="XRTableCell" Name="sumW_notwork" Weight="0.059733845929263077" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <Summary Ref="363" FormatString="{0:F2}" Running="Report" />
<DataBindings>
- <Item1 Ref="337" PropertyName="Text" DataMember="Архив суточный.StopWorkTime" />
+ <Item1 Ref="364" PropertyName="Text" DataMember="Архив суточный.StopWorkTime" />
</DataBindings>
- <StylePriority Ref="338" UseFont="false" UseTextAlignment="false" />
+ <StylePriority Ref="365" UseFont="false" UseTextAlignment="false" />
</Item11>
- <Item12 Ref="339" ControlType="XRTableCell" Name="sumW_work" Weight="0.059733915280832835" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <Summary Ref="340" FormatString="{0:F2}" Running="Report" />
+ <Item12 Ref="366" ControlType="XRTableCell" Name="sumW_work" Weight="0.059733915280832835" NullValueText="- " TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <Summary Ref="367" FormatString="{0:F2}" Running="Report" />
<DataBindings>
- <Item1 Ref="341" PropertyName="Text" DataMember="Архив суточный.WorkTime" />
+ <Item1 Ref="368" PropertyName="Text" DataMember="Архив суточный.WorkTime" />
</DataBindings>
- <StylePriority Ref="342" UseFont="false" UseTextAlignment="false" />
+ <StylePriority Ref="369" UseFont="false" UseTextAlignment="false" />
</Item12>
- <Item13 Ref="343" ControlType="XRTableCell" Name="sumW" Weight="0.080064174530385973" TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
- <Scripts Ref="344" OnSummaryCalculated="OnSummaryCalculated" />
- <StylePriority Ref="345" UseFont="false" UsePadding="false" UseTextAlignment="false" />
+ <Item13 Ref="370" ControlType="XRTableCell" Name="sumW" Weight="0.080064174530385973" TextAlignment="MiddleRight" Dpi="254" Font="Arial, 8.25pt, style=Bold" Padding="0,5,0,0,254">
+ <Scripts Ref="371" OnSummaryCalculated="OnSummaryCalculated" />
+ <StylePriority Ref="372" UseFont="false" UsePadding="false" UseTextAlignment="false" />
</Item13>
</Cells>
</Item1>
</Rows>
- </Item16>
- <Item17 Ref="346" ControlType="XRLabel" Name="label24" Text="Отчетный период:" TextAlignment="MiddleLeft" SizeF="508.7409,43.1800232" LocationFloat="0, 352.937744" Dpi="254" Font="Arial, 9pt" Padding="5,0,0,0,254">
- <StylePriority Ref="347" UsePadding="false" />
- </Item17>
- <Item18 Ref="348" ControlType="XRLabel" Name="lblPeriod_Report" TextAlignment="MiddleLeft" SizeF="303.424133,43.1800232" LocationFloat="525.229248, 352.937744" Dpi="254" Font="Arial, 9pt" Padding="5,0,0,0,254">
+ </Item7>
+ <Item8 Ref="373" ControlType="XRLabel" Name="label33" Text="Предстователь абонента:" TextAlignment="MiddleLeft" SizeF="753.3838,43.1799927" LocationFloat="0, 948.699951" Dpi="254" Font="Arial, 9pt" Padding="5,5,0,0,254" />
+ <Item9 Ref="374" ControlType="XRLabel" Name="label36" Text="Представитель теплоснабжающей организации: __________________________________" TextAlignment="MiddleLeft" SizeF="1408.04651,43.1800537" LocationFloat="0, 994.879944" Dpi="254" Font="Arial, 9pt" Padding="5,5,0,0,254" />
+ <Item10 Ref="375" ControlType="XRLabel" Name="label8" NullValueText="______________________________" Text="label8" TextAlignment="MiddleLeft" SizeF="654.6626,43.1799927" LocationFloat="753.3838, 949.699951" Dpi="254" Font="Arial, 9pt" Padding="5,5,0,0,254">
<DataBindings>
- <Item1 Ref="349" FormatString="__{0:F2}__ час." PropertyName="Text" DataMember="Рассчитанные значения.Суммарные потребления за отчетный период.RequestedInterval" />
+ <Item1 Ref="376" PropertyName="Text" DataMember="Параметры точки учета.ResponsibleName" />
</DataBindings>
- <StylePriority Ref="350" UseFont="false" UsePadding="false" UseTextAlignment="false" />
- </Item18>
- <Item19 Ref="351" ControlType="XRLabel" Name="label27" Text="Период нормальной: работы" TextAlignment="MiddleLeft" SizeF="444.634033,43.1800232" LocationFloat="928.0088, 352.937744" Dpi="254" Font="Arial, 9pt" Padding="5,0,0,0,254">
- <StylePriority Ref="352" UsePadding="false" />
- </Item19>
- <Item20 Ref="353" ControlType="XRLabel" Name="label30" Text="Период отключения питания (U):" TextAlignment="MiddleLeft" SizeF="518.794861,43.1800537" LocationFloat="3.175086, 422.85437" Dpi="254" Font="Arial, 9pt" Padding="5,0,0,0,254">
- <StylePriority Ref="354" UsePadding="false" />
- </Item20>
- <Item21 Ref="355" ControlType="XRLabel" Name="label33" Text="Предстователь абонента:" TextAlignment="MiddleLeft" SizeF="753.3838,43.1799927" LocationFloat="0, 617.867554" Dpi="254" Font="Arial, 9pt" Padding="5,5,0,0,254" />
- <Item22 Ref="356" ControlType="XRLabel" Name="label36" Text="Представитель теплоснабжающей организации: __________________________________" TextAlignment="MiddleLeft" SizeF="1408.04651,43.1800537" LocationFloat="0, 670.047546" Dpi="254" Font="Arial, 9pt" Padding="5,5,0,0,254" />
- <Item23 Ref="357" ControlType="XRLabel" Name="label8" NullValueText="______________________________" Text="label8" TextAlignment="MiddleLeft" SizeF="654.6626,43.1799927" LocationFloat="753.3838, 617.867554" Dpi="254" Font="Arial, 9pt" Padding="5,5,0,0,254">
- <DataBindings>
- <Item1 Ref="358" PropertyName="Text" DataMember="Параметры точки учета.ResponsibleName" />
- </DataBindings>
- <StylePriority Ref="359" UseFont="false" UseTextAlignment="false" />
- </Item23>
+ <StylePriority Ref="377" UseFont="false" UseTextAlignment="false" />
+ </Item10>
</Controls>
</Item4>
- <Item5 Ref="360" ControlType="TopMarginBand" Name="topMarginBand1" HeightF="99" Dpi="254" />
- <Item6 Ref="361" ControlType="BottomMarginBand" Name="bottomMarginBand1" HeightF="99" Dpi="254" />
+ <Item5 Ref="378" ControlType="TopMarginBand" Name="topMarginBand1" HeightF="99" Dpi="254" />
+ <Item6 Ref="379" ControlType="BottomMarginBand" Name="bottomMarginBand1" HeightF="55.24114" Dpi="254" />
</Bands>
- <Scripts Ref="362" OnBeforePrint="BaseReport_BeforePrint" />
+ <Scripts Ref="380" OnDataSourceDemanded="BaseReport_DataSourceDemanded" />
<ObjectStorage>
<Item1 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v16.2" Ref="2" Content="System.Int32" Type="System.Type" />
<Item2 ObjectType="DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v16.2" Ref="4" Content="System.DateTime" Type="System.Type" />