protected override System.Data.DataSet MakeDataSource(DoWorkEventArgs e)
 {
     if (base.m_Period.DateEndIsNull || base.m_Period.DateBeginIsNull)
     {
         Messages.ShowMessage("Заполните период");
         return null;
     }
     Area area = new Area();
     if (this.groupAdressesView.GetSelectedAddresses().get_Count() != 0)
     {
         area.SaveChanges();
         area.SaveAddresses(this.groupAdressesView.GetSelectedAddresses());
         area.SaveChanges();
     }
     ObjectList<Organization> selectedOrganizations = this.selectOrgs1.SelectedOrganizations;
     ObjectList<ServiceTypeOld> serviceTypes = this.selectServiceTypes1.ServiceTypes;
     System.DateTime fromPeriod = base.m_Period.DateBeginIsNull ? Constants.NullDate : base.m_Period.DateBegin;
     System.DateTime toPeriod = base.m_Period.DateEndIsNull ? Constants.NullDate : base.m_Period.DateEnd;
     if ((fromPeriod == Constants.MinDate) || (toPeriod == Constants.MinDate))
     {
         Messages.ShowMessage("Не заданы даты!");
         return null;
     }
     System.Data.DataSet set = Mappers.SimpleReportMapper.GetJnReportByChargeVacations(area.Id, selectedOrganizations, serviceTypes, fromPeriod, toPeriod);
     set.Tables.get_Item(0).set_TableName("tuning");
     set.Tables.get_Item(1).set_TableName("crit");
     set.Tables.get_Item(2).set_TableName("data");
     area.DeleteWithRelations();
     return set;
 }
Пример #2
0
 public void AddGroupOrSets(AreaGroup groupSets, ObjectList<Area> area)
 {
     foreach (Area area2 in area)
     {
         Area area3 = new Area();
         AreaGroup group = groupSets;
         area3.Name = area2.Name;
         if ((groupSets != null) && (groupSets.Id != -1L))
         {
             area3.AreaGroupId = group.Id;
         }
         try
         {
             area3.SaveChanges();
             area3.SaveAddresses(area2.GetAddresses());
         }
         catch (System.Exception exception)
         {
             Messages.ShowException(this, exception);
             break;
         }
         if ((area2 != null) && (area2.Id != -1L))
         {
             this.SetAreas(group.GetAreas());
         }
     }
 }
Пример #3
0
 protected override void Fill(ObjectWithId obj)
 {
     this.m_Area = (Area) obj;
     this.tbName.set_Text(this.m_Area.Name);
     this.btnAddresses.set_Enabled(true);
     this.addressesDest = this.m_Area.GetLocalAddresses();
 }
 public string CalcIndecation(string procName, System.DateTime startIndicationsDate, System.DateTime period, decimal countMonth, decimal countMonthAvg, System.DateTime programStartTime, Area area)
 {
     string str = null;
     long id = area.Id;
     System.Data.SqlClient.SqlParameter[] parameters = new System.Data.SqlClient.SqlParameter[6];
     parameters[0] = new System.Data.SqlClient.SqlParameter("@currentDate", System.Data.SqlDbType.DateTime);
     parameters[0].set_Value(startIndicationsDate);
     parameters[1] = new System.Data.SqlClient.SqlParameter("@period", System.Data.SqlDbType.DateTime);
     parameters[1].set_Value(period);
     parameters[2] = new System.Data.SqlClient.SqlParameter("@countMonth", System.Data.SqlDbType.BigInt);
     parameters[2].set_Value(countMonth);
     parameters[3] = new System.Data.SqlClient.SqlParameter("@countMonthAvg", System.Data.SqlDbType.BigInt);
     parameters[3].set_Value(countMonthAvg);
     parameters[4] = new System.Data.SqlClient.SqlParameter("@periodStartProgram", System.Data.SqlDbType.DateTime);
     parameters[4].set_Value(programStartTime);
     parameters[5] = new System.Data.SqlClient.SqlParameter("@areaId", System.Data.SqlDbType.BigInt);
     parameters[5].set_Value((long) id);
     try
     {
         str = System.Convert.ToString(DALSql.ExecuteScalar("EXEC" + procName + "@currentDate,@period,@countMonth,@countMonthAvg,@periodStartProgram,@areaId", parameters));
     }
     catch (System.Exception exception)
     {
         if (exception.get_Message().Contains("аргументов"))
         {
             MessageBox.Show("Невозможно провести расчет. " + "Указано неверное количество аргументов.", "Отчет");
             return str;
         }
         MessageBox.Show("Невозможно провести расчет " + exception.get_Message(), "Отчет");
     }
     return str;
 }
Пример #5
0
 protected override void Clear()
 {
     this.tbName.set_Text("");
     this.btnAddresses.set_Enabled(false);
     this.addressesSource.Clear();
     this.addressesDest.Clear();
     this.m_Area = new Area();
 }
Пример #6
0
 public AreaAddressesForm()
 {
     this.m_Area = Area.Null;
     this.m_SelectedByUserArea = Area.Null;
     this.param = new string[3];
     this.InitializeComponent();
     this.set_Font(Manager.WindowFont);
 }
Пример #7
0
 public AreaAddressesForm(Area area)
     : this()
 {
     this.m_Area = area ?? Area.Null;
     if (this.m_Area == Area.Null)
     {
         this.addressesSource = new ObjectList<LocalAddress>();
         this.addressesDest = new ObjectList<LocalAddress>();
     }
 }
 protected override System.Data.DataSet MakeDataSource(DoWorkEventArgs e)
 {
     System.DateTime fromDate = base.m_Period.DateBeginIsNull ? Constants.NullDate : base.m_Period.DateBegin;
     System.DateTime toDate = base.m_Period.DateEndIsNull ? Constants.NullDate : base.m_Period.DateEnd;
     Area area = new Area();
     if (this.groupAdressesView.GetSelectedAddresses().get_Count() != 0)
     {
         area.SaveChanges();
         area.SaveAddresses(this.groupAdressesView.GetSelectedAddresses());
     }
     ObjectList<Organization> selectedOrganizations = this.selectHolders.SelectedOrganizations;
     return Mappers.SimpleReportMapper.GetResidentVacationsReport(fromDate, toDate, this.vacationType, selectedOrganizations, area);
 }
 public ChangeAdditionalServiceTariffForm(ObjectList<Service> services, System.Data.DataTable m_dtSerficeTariffType, Organization m_provider, Organization m_resource, Organization m_holder, ServiceType m_serviceType, bool m_isSeason, bool m_isOpenServicesForArea, Area m_area, System.Data.DataTable m_dtCanonicalProperties, bool m_isOpen, System.DateTime m_dateLastTariff, int m_houseYear)
 {
     this.m_Services = new ObjectList<Service>();
     this.dtSerficeTariffType = new System.Data.DataTable();
     this.InitializeComponent();
     this.m_Services = services;
     this.dtSerficeTariffType = m_dtSerficeTariffType;
     this.provider = m_provider;
     this.resource = m_resource;
     this.holder = m_holder;
     this.serviceType = m_serviceType;
     this.isSeason = m_isSeason;
     this.isOpenServicesForArea = m_isOpenServicesForArea;
     this.area = m_area;
     this.dtCanonicalProperties = m_dtCanonicalProperties;
     this.isOpen = m_isOpen;
     this.dateLastTariff = m_dateLastTariff;
     this.houseYear = m_houseYear;
 }
Пример #10
0
 private void btnStart_Click(object sender, System.EventArgs e)
 {
     if (!this.bwFillJnSaldo.get_IsBusy())
     {
         this.pbxFillForAllPeriod.set_Image(null);
         this.pbxFillForSelectPeriod.set_Image(null);
         if (this.datePeriod.DateBegin == Constants.NullDate)
         {
             Messages.ShowWarning("Не задан отчетный период");
         }
         else if (!this.rbFillForAllPeriod.get_Checked() && !this.rbFillForSelectPeriod.get_Checked())
         {
             Messages.ShowWarning("Выберите шаги для исполнения.");
         }
         else
         {
             this.m_AreaSelected = this.selectAddresses.SelectedArea;
             this.bwFillJnSaldo.RunWorkerAsync();
             this.Form_ChangeEnabled(false);
         }
     }
 }
Пример #11
0
 public static ObjectList<AIS.SN.Model.DomainObjects.Views.ExchangeRequestAddress> GetByStatus(ExchangeStatus status, Area filterArea)
 {
     System.Collections.Generic.List<long> addresses = new System.Collections.Generic.List<long>();
     ObjectList<ExchangeRequest> exchangeRequestsGroup = ExchangeRequest.GetExchangeRequestsGroup(ExchangeRequestType.Address, status);
     ObjectList<AIS.SN.Model.DomainObjects.Views.ExchangeRequestAddress> list3 = new ObjectList<AIS.SN.Model.DomainObjects.Views.ExchangeRequestAddress>();
     foreach (ExchangeRequest request in exchangeRequestsGroup)
     {
         AIS.SN.Model.DomainObjects.Views.ExchangeRequestAddress address = Serializer.FromXml<AIS.SN.Model.DomainObjects.Views.ExchangeRequestAddress>(request.XmlIn);
         address.DateIn = request.DateIn;
         address.ExchangeRequestId = request.Id;
         address.LocalAddressId = request.AddressId;
         if (address.LocalAddressId != LocalAddress.Null.Id)
         {
             addresses.Add(address.LocalAddressId);
         }
         address.Address = string.Concat((string[]) new string[] { ((address.LastChangeDate != Constants.NullDate) ? ((string) address.LastChangeDate.ToShortDateString()) : ((string) address.DateIn.ToShortDateString())), ";", address.StreetSocr, " ", address.Street, ";", address.HouseSocr, " ", address.House, ";", address.FlatSocr, " ", address.Flat });
         list3.Add(address);
     }
     ObjectList<AIS.SN.Model.DomainObjects.Views.ExchangeRequestAddress> list4 = new ObjectList<AIS.SN.Model.DomainObjects.Views.ExchangeRequestAddress>();
     if ((filterArea == null) || (filterArea == Area.Null))
     {
         return list3.ApplySort("Address");
     }
     Area lhs = new Area {
         StatusTemporary = 1
     };
     lhs.SaveChanges();
     lhs.SaveAddresses(addresses);
     System.Collections.Generic.IList<long> filteredApartmentLocalAddresses = Area.GetFilteredApartmentLocalAddresses(lhs, filterArea);
     for (int i = 0; i < list3.get_Count(); i = (int) (i + 1))
     {
         long num2 = (list3.get_Item(i).RemoteAddressId == 0L) ? list3.get_Item(i).LocalAddressId : list3.get_Item(i).RemoteAddressId;
         if (filteredApartmentLocalAddresses.Contains(num2))
         {
             list4.Add(list3.get_Item(i));
         }
     }
     return list4.ApplySort("Address");
 }
Пример #12
0
 public void InsertReportShedulerParameters(long reportId, System.DateTime fromDate, System.DateTime toDate, ObjectList<Organization> houseHolders, ObjectList<Organization> serviceHouseHolders, ObjectList<Organization> accountHouseHolders, ObjectList<Organization> serviceProviders, ObjectList<Organization> resourceProviders, ObjectList<Organization> cashlessTransferrers, ObjectList<ServiceTypeOld> serviceTypes, ObjectList<CanonicalService> canonicalServices, ObjectList<ServiceOld> services, System.Collections.Generic.List<FasetItem> fasetItemApartmentTypes, System.Collections.Generic.List<FasetItem> fasetItemConvenienceTypes, System.Collections.Generic.List<FasetItem> fasetItemRecalcReasons, ObjectList<LocalAddress> localAddresses, Area selectedByUserArea, ObjectList<Benefit> benefits, bool isDebt, bool existsBenefitDiff, string paymentType, string apartamentArea, long minSumm, System.DateTime fromDay, System.DateTime toDay, bool withoutBankrupt, bool withoutClosesApartments, System.Collections.Generic.List<FasetItem> fasetFilterItems, ObjectList<Organization> paymentAgents, System.Collections.Generic.List<FasetItem> fasetItemHouseTypes, FasetItem cityBoroughs, string textParameter)
 {
     if (reportId != RepReportSheduler.Null.Id)
     {
         RepReportShedulerParameter parameter;
         if (fromDate != AIS.SN.Model.Constants.NullDate)
         {
             parameter = new RepReportShedulerParameter {
                 ReportId = reportId,
                 Name = "fromDate",
                 Value = fromDate.ToShortDateString(),
                 PrintName = "Начало периода",
                 PrintValue = fromDate.ToShortDateString()
             };
             parameter.SaveChanges();
         }
         if (toDate != AIS.SN.Model.Constants.NullDate)
         {
             parameter = new RepReportShedulerParameter {
                 ReportId = reportId,
                 Name = "toDate",
                 Value = toDate.ToShortDateString(),
                 PrintName = "Окончание периода",
                 PrintValue = toDate.ToShortDateString()
             };
             parameter.SaveChanges();
         }
         if (houseHolders != null)
         {
             foreach (Organization organization in houseHolders)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "houseHolderId",
                     Value = ((long) organization.Id).ToString(),
                     PrintName = "Управляющая компания жилья",
                     PrintValue = organization.ShortName
                 };
                 parameter.SaveChanges();
             }
         }
         if (serviceHouseHolders != null)
         {
             foreach (Organization organization2 in serviceHouseHolders)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "serviceHouseHolderId",
                     Value = ((long) organization2.Id).ToString(),
                     PrintName = "Управляющая компания услуги",
                     PrintValue = organization2.ShortName
                 };
                 parameter.SaveChanges();
             }
         }
         if (accountHouseHolders != null)
         {
             foreach (Organization organization3 in accountHouseHolders)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "accountHouseHolderId",
                     Value = ((long) organization3.Id).ToString(),
                     PrintName = "Управляющая компания ЛС",
                     PrintValue = organization3.ShortName
                 };
                 parameter.SaveChanges();
             }
         }
         if (serviceProviders != null)
         {
             foreach (Organization organization4 in serviceProviders)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "serviceProviderId",
                     Value = ((long) organization4.Id).ToString(),
                     PrintName = "Поставщик",
                     PrintValue = organization4.ShortName
                 };
                 parameter.SaveChanges();
             }
         }
         if (resourceProviders != null)
         {
             foreach (Organization organization5 in resourceProviders)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "resourceProviderId",
                     Value = ((long) organization5.Id).ToString(),
                     PrintName = "Ресурсоснабжающая организация",
                     PrintValue = organization5.ShortName
                 };
                 parameter.SaveChanges();
             }
         }
         if (cashlessTransferrers != null)
         {
             foreach (Organization organization6 in cashlessTransferrers)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "cashlessTransferrerId",
                     Value = ((long) organization6.Id).ToString(),
                     PrintName = "Организация по безналичным перечислениям",
                     PrintValue = organization6.ShortName
                 };
                 parameter.SaveChanges();
             }
         }
         if (serviceTypes != null)
         {
             foreach (ServiceTypeOld old in serviceTypes)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "serviceTypeId",
                     Value = ((long) old.Id).ToString(),
                     PrintName = "Группа услуг",
                     PrintValue = old.ShortName
                 };
                 parameter.SaveChanges();
             }
         }
         if (canonicalServices != null)
         {
             foreach (CanonicalService service in canonicalServices)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "canonicalId",
                     Value = ((long) service.Id).ToString(),
                     PrintName = "Вид благоустройства",
                     PrintValue = service.ShortName
                 };
                 parameter.SaveChanges();
             }
         }
         if (services != null)
         {
             foreach (ServiceOld old2 in services)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "serviceId",
                     Value = ((long) old2.Id).ToString(),
                     PrintName = "Услуга",
                     PrintValue = old2.ShortName
                 };
                 parameter.SaveChanges();
             }
         }
         if (fasetItemApartmentTypes != null)
         {
             foreach (FasetItem item in fasetItemApartmentTypes)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "fasetItemApartmentTypeId",
                     Value = ((int) item.Id).ToString(),
                     PrintName = "Тип жилья",
                     PrintValue = item.Name
                 };
                 parameter.SaveChanges();
             }
         }
         if (fasetItemHouseTypes != null)
         {
             foreach (FasetItem item2 in fasetItemHouseTypes)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "fasetItemHouseTypeId",
                     Value = ((int) item2.Id).ToString(),
                     PrintName = "Тип дома",
                     PrintValue = item2.Name
                 };
                 parameter.SaveChanges();
             }
         }
         if (fasetItemConvenienceTypes != null)
         {
             foreach (FasetItem item3 in fasetItemConvenienceTypes)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "convenienceTypeId",
                     Value = ((int) item3.Id).ToString(),
                     PrintName = "Тип благоустройства",
                     PrintValue = item3.Name
                 };
                 parameter.SaveChanges();
             }
         }
         if (fasetItemRecalcReasons != null)
         {
             foreach (FasetItem item4 in fasetItemRecalcReasons)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "typeReasonRecalcId",
                     Value = ((int) item4.Id).ToString(),
                     PrintName = "Причина перерасчёта",
                     PrintValue = item4.Name
                 };
                 parameter.SaveChanges();
             }
         }
         if ((localAddresses != null) && (localAddresses.get_Count() != 0))
         {
             parameter = new RepReportShedulerParameter {
                 ReportId = reportId,
                 Name = "areaId",
                 Value = ((long) Area.GetAreaIdByLocalAddresses(localAddresses)).ToString()
             };
             if (selectedByUserArea == Area.Null)
             {
                 parameter.Value = ((long) Area.GetAreaIdByLocalAddresses(localAddresses)).ToString();
             }
             else
             {
                 parameter.Value = ((long) selectedByUserArea.Id).ToString();
             }
             parameter.SaveChanges();
         }
         if (benefits != null)
         {
             foreach (Benefit benefit in benefits)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "benefitId",
                     Value = ((long) benefit.Id).ToString(),
                     PrintName = "Льгота",
                     PrintValue = benefit.ShortName
                 };
                 parameter.SaveChanges();
             }
         }
         if (isDebt)
         {
             parameter = new RepReportShedulerParameter {
                 ReportId = reportId,
                 Name = "isDebt",
                 Value = "1",
                 PrintName = "Разделение долгов",
                 PrintValue = "учтено"
             };
             parameter.SaveChanges();
         }
         if (existsBenefitDiff)
         {
             parameter = new RepReportShedulerParameter {
                 ReportId = reportId,
                 Name = "isExistsBenefitDiff",
                 Value = "1",
                 PrintName = "Расхождения с КСЗН",
                 PrintValue = "учтены"
             };
             parameter.SaveChanges();
         }
         if (fasetFilterItems != null)
         {
             foreach (FasetItem item5 in fasetFilterItems)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "fasetFilterItemId",
                     Value = ((int) item5.Id).ToString(),
                     PrintName = item5.Faset.Name,
                     PrintValue = item5.Name
                 };
                 parameter.SaveChanges();
             }
         }
         if (paymentAgents != null)
         {
             foreach (Organization organization7 in paymentAgents)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "paymentAgentId",
                     Value = ((long) organization7.Id).ToString(),
                     PrintName = "Платежный агент",
                     PrintValue = organization7.ShortName
                 };
                 parameter.SaveChanges();
             }
         }
         RepReportTemplate template = RepReportTemplate.FindById(((RepReportTemplate) this.reportsTree.SelectedNode.get_Tag()).Id);
         if (template.MinSumm)
         {
             parameter = new RepReportShedulerParameter {
                 ReportId = reportId,
                 Name = "minSumm",
                 Value = this.numMinSumm.Value.ToString(),
                 PrintName = "Минимальная сумма",
                 PrintValue = ((long) minSumm).ToString()
             };
             parameter.SaveChanges();
         }
         if (template.DatePeriod)
         {
             if (fromDay != AIS.SN.Model.Constants.NullDate)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "fromDay",
                     Value = fromDay.ToShortDateString(),
                     PrintName = "Дата начала",
                     PrintValue = fromDay.ToShortDateString()
                 };
                 parameter.SaveChanges();
             }
             if (toDay != AIS.SN.Model.Constants.NullDate)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "toDay",
                     Value = toDay.ToShortDateString(),
                     PrintName = "Дата окончания",
                     PrintValue = toDay.ToShortDateString()
                 };
                 parameter.SaveChanges();
             }
         }
         if (template.CalcOperationGroups)
         {
             CalcOperationGroup group = ((CalcOperationGroup) this.bsCalcOperationGroups.get_Current()) ?? CalcOperationGroup.Null;
             if (group != CalcOperationGroup.Null)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "calcOperGroupId",
                     Value = ((long) group.Id).ToString(),
                     PrintName = "Тип оплаты",
                     PrintValue = group.Name
                 };
                 parameter.SaveChanges();
             }
         }
         if (paymentType != string.Empty)
         {
             parameter = new RepReportShedulerParameter {
                 ReportId = reportId,
                 Name = "paymentType",
                 Value = paymentType,
                 PrintName = "Тип оплаты",
                 PrintValue = paymentType
             };
             parameter.SaveChanges();
         }
         if (apartamentArea != string.Empty)
         {
             parameter = new RepReportShedulerParameter {
                 ReportId = reportId,
                 Name = "apartamentArea",
                 Value = apartamentArea,
                 PrintName = "Площадь",
                 PrintValue = apartamentArea
             };
             parameter.SaveChanges();
         }
         if (template.PaymentAgentTypes)
         {
             FasetItem selectedFasetItem = this.selectPaymentAgentTypes.SelectedFasetItem;
             if (selectedFasetItem != FasetItem.Null)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "paymentAgentTypeId",
                     Value = ((int) selectedFasetItem.Id).ToString(),
                     PrintName = "Режим работы",
                     PrintValue = selectedFasetItem.Name
                 };
                 parameter.SaveChanges();
             }
         }
         if (withoutBankrupt)
         {
             parameter = new RepReportShedulerParameter {
                 ReportId = reportId,
                 Name = "withoutBankrupt",
                 Value = "1",
                 PrintName = "Организации-банкроты",
                 PrintValue = "Не учитывать"
             };
             parameter.SaveChanges();
         }
         if (withoutClosesApartments)
         {
             parameter = new RepReportShedulerParameter {
                 ReportId = reportId,
                 Name = "withoutClosesApartments",
                 Value = "1",
                 PrintName = "Закрытые паспорта жилья",
                 PrintValue = "Не учитывать"
             };
             parameter.SaveChanges();
         }
         if (template.AccountProperty)
         {
             FasetItem item7 = this.selectAccountPropertyFaset.SelectedFasetItem;
             if (item7 != FasetItem.Null)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "accountPropertyId",
                     Value = ((int) item7.Id).ToString(),
                     PrintName = "Параметры ЛС",
                     PrintValue = item7.Name
                 };
                 parameter.SaveChanges();
             }
         }
         if (template.AccountProperty)
         {
             FasetItem item8 = this.selectAccountPropertyFaset.SelectedFasetItem;
             if (item8 != FasetItem.Null)
             {
                 parameter = new RepReportShedulerParameter {
                     ReportId = reportId,
                     Name = "accountPropertyId",
                     Value = ((int) item8.Id).ToString(),
                     PrintName = "Параметры ЛС",
                     PrintValue = item8.Name
                 };
                 parameter.SaveChanges();
             }
         }
         if (template.CityBorough && (cityBoroughs != FasetItem.Null))
         {
             parameter = new RepReportShedulerParameter {
                 ReportId = reportId,
                 Name = "boroughId",
                 Value = ((int) cityBoroughs.Id).ToString(),
                 PrintName = "Район города",
                 PrintValue = cityBoroughs.Name
             };
             parameter.SaveChanges();
         }
         if (!string.IsNullOrEmpty(textParameter))
         {
             new RepReportShedulerParameter { ReportId = reportId, Name = "textParameter", Value = textParameter, PrintName = template.TextParameter, PrintValue = textParameter }.SaveChanges();
         }
     }
 }
Пример #13
0
 public Area GetSelectedArea()
 {
     Area area = new Area {
         StatusTemporary = 1
     };
     area.SaveChanges();
     ObjectList<LocalAddress> addresses = this.getSelectedAddresses();
     area.SaveAddresses(addresses);
     return area;
 }
 private void HouseCounterServiceCounterAddChangeForm_Load(object sender, System.EventArgs e)
 {
     this.set_Font(Manager.WindowFont);
     this.set_Text(this.m_HouseCounterServiceCounter.IsNew ? ((string) "Добавление связи услуг со счетчиком") : ((string) "Изменение связи услуг со счетчиком"));
     this.btnOk.set_Text(this.m_HouseCounterServiceCounter.IsNew ? ((string) "Добавить") : ((string) "Изменить"));
     this.m_Area = new Area();
     ObjectList<LocalAddress> addresses = new ObjectList<LocalAddress> {
         this.m_HouseCounterServiceCounter.GetHouseCounter().GetHouse().GetLocalAddress()
     };
     this.m_Area.SaveChanges();
     this.m_Area.SaveAddresses(addresses);
     this.selectServices.Area = this.m_Area;
     if (!this.m_HouseCounterServiceCounter.IsNew)
     {
         ObjectList<ServiceOld> list2 = new ObjectList<ServiceOld>();
         list2.Add(this.m_HouseCounterServiceCounter.GetService());
         this.selectServices.SelectedServices = list2;
         this.datePeriod.DateBegin = this.m_HouseCounterServiceCounter.FromDate;
         this.datePeriod.DateEnd = (this.m_HouseCounterServiceCounter.ToDate == Constants.NullDate) ? this.datePeriod.DateEnd : this.m_HouseCounterServiceCounter.ToDate;
     }
 }
Пример #15
0
 public static System.Collections.Generic.IList<long> GetFilteredApartmentLocalAddresses(Area lhs, Area rhs)
 {
     return Mappers.AreaMapper.GetFilteredApartmentLocalAddresses(lhs, rhs);
 }
Пример #16
0
 private void InitializeComponent()
 {
     this.components = new Container();
     Area area = new Area();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.gbSearchParams = new System.Windows.Forms.GroupBox();
     this.selectAddresses = new SelectAddresses();
     this.bFind = new System.Windows.Forms.Button();
     this.label6 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.cbxServiceType = new System.Windows.Forms.ComboBox();
     this.bsServiceTypes = new System.Windows.Forms.BindingSource(this.components);
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.accountServiceNormMultipleAddView1 = new AccountServiceNormMultipleAddView();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.dbxNormDate = new DateBox();
     this.byUnitFaset = new SelectFasetData();
     this.unitFaset = new SelectFasetData();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.nudEndValue = new System.Windows.Forms.NumericUpDown();
     this.nudStartValue = new System.Windows.Forms.NumericUpDown();
     this.label5 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.selectOrgDocument = new SelectOrgDocument();
     this.btnSave = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.statusStrip = new System.Windows.Forms.StatusStrip();
     this.statsLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.gbSearchParams.SuspendLayout();
     this.bsServiceTypes.BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.nudEndValue.BeginInit();
     this.nudStartValue.BeginInit();
     this.statusStrip.SuspendLayout();
     base.SuspendLayout();
     this.splitContainer1.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.splitContainer1.set_Location(new System.Drawing.Point(0, 0));
     this.splitContainer1.set_Name("splitContainer1");
     this.splitContainer1.set_Orientation(System.Windows.Forms.Orientation.Horizontal);
     this.splitContainer1.Panel1.Controls.Add(this.gbSearchParams);
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
     this.splitContainer1.set_Size(new System.Drawing.Size(960, 0x24d));
     this.splitContainer1.set_SplitterDistance(0x4f);
     this.splitContainer1.set_TabIndex(0);
     this.gbSearchParams.Controls.Add(this.selectAddresses);
     this.gbSearchParams.Controls.Add(this.bFind);
     this.gbSearchParams.Controls.Add(this.label6);
     this.gbSearchParams.Controls.Add(this.label3);
     this.gbSearchParams.Controls.Add(this.cbxServiceType);
     this.gbSearchParams.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.gbSearchParams.set_Location(new System.Drawing.Point(0, 0));
     this.gbSearchParams.set_Name("gbSearchParams");
     this.gbSearchParams.set_Size(new System.Drawing.Size(960, 0x4f));
     this.gbSearchParams.set_TabIndex(4);
     this.gbSearchParams.set_TabStop(false);
     this.gbSearchParams.set_Text("Параметры поиска");
     this.selectAddresses.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectAddresses.IsByUser = false;
     this.selectAddresses.set_Location(new System.Drawing.Point(0x80, 0x2e));
     this.selectAddresses.set_Name("selectAddresses");
     area.AreaGroupId = 0L;
     area.AreaGroupName = null;
     area.Id = 0L;
     area.IsDeleted = false;
     area.IsDirty = false;
     area.Name = "";
     area.ObjectWithIdType = null;
     area.StatusTemporary = 0;
     this.selectAddresses.SelectedArea = area;
     this.selectAddresses.set_Size(new System.Drawing.Size(0x19d, 20));
     this.selectAddresses.set_TabIndex(11);
     this.bFind.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Top);
     this.bFind.set_Image(Resources.SEARCH);
     this.bFind.set_ImageAlign(System.Drawing.ContentAlignment.MiddleLeft);
     this.bFind.set_Location(new System.Drawing.Point(0x234, 0x13));
     this.bFind.set_Name("bFind");
     this.bFind.set_Size(new System.Drawing.Size(0x60, 0x36));
     this.bFind.set_TabIndex(12);
     this.bFind.set_Text("Поиск");
     this.bFind.set_TextAlign(System.Drawing.ContentAlignment.MiddleRight);
     this.bFind.set_UseVisualStyleBackColor(true);
     this.bFind.add_Click(new System.EventHandler(this.bFind_Click));
     this.label6.set_AutoSize(true);
     this.label6.set_Location(new System.Drawing.Point(7, 0x36));
     this.label6.set_Name("label6");
     this.label6.set_Size(new System.Drawing.Size(0x2c, 13));
     this.label6.set_TabIndex(0x1f);
     this.label6.set_Text("Адреса");
     this.label3.set_AutoSize(true);
     this.label3.set_Location(new System.Drawing.Point(6, 0x16));
     this.label3.set_Name("label3");
     this.label3.set_Size(new System.Drawing.Size(0x3e, 13));
     this.label3.set_TabIndex(0x1a);
     this.label3.set_Text("Тип услуги");
     this.cbxServiceType.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.cbxServiceType.set_AutoCompleteMode(System.Windows.Forms.AutoCompleteMode.SuggestAppend);
     this.cbxServiceType.set_AutoCompleteSource(System.Windows.Forms.AutoCompleteSource.CustomSource);
     this.cbxServiceType.set_DataSource(this.bsServiceTypes);
     this.cbxServiceType.set_DisplayMember("ShortName");
     this.cbxServiceType.set_FormattingEnabled(true);
     this.cbxServiceType.set_Location(new System.Drawing.Point(0x80, 0x13));
     this.cbxServiceType.set_Name("cbxServiceType");
     this.cbxServiceType.set_Size(new System.Drawing.Size(0x19d, 0x15));
     this.cbxServiceType.set_TabIndex(1);
     this.bsServiceTypes.set_DataSource(typeof(ServiceType));
     this.splitContainer2.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.splitContainer2.set_Location(new System.Drawing.Point(0, 0));
     this.splitContainer2.set_Name("splitContainer2");
     this.splitContainer2.set_Orientation(System.Windows.Forms.Orientation.Horizontal);
     this.splitContainer2.Panel1.Controls.Add(this.accountServiceNormMultipleAddView1);
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer3);
     this.splitContainer2.set_Size(new System.Drawing.Size(960, 0x1fa));
     this.splitContainer2.set_SplitterDistance(0x18e);
     this.splitContainer2.set_TabIndex(0);
     this.accountServiceNormMultipleAddView1.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.accountServiceNormMultipleAddView1.set_Font(new System.Drawing.Font("Tahoma", 9.75f));
     this.accountServiceNormMultipleAddView1.set_Location(new System.Drawing.Point(0, 0));
     this.accountServiceNormMultipleAddView1.set_Margin(new System.Windows.Forms.Padding(3, 4, 3, 4));
     this.accountServiceNormMultipleAddView1.set_Name("accountServiceNormMultipleAddView1");
     this.accountServiceNormMultipleAddView1.set_Size(new System.Drawing.Size(960, 0x18e));
     this.accountServiceNormMultipleAddView1.set_TabIndex(0);
     this.splitContainer3.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.splitContainer3.set_Location(new System.Drawing.Point(0, 0));
     this.splitContainer3.set_Name("splitContainer3");
     this.splitContainer3.set_Orientation(System.Windows.Forms.Orientation.Horizontal);
     this.splitContainer3.Panel1.Controls.Add(this.dbxNormDate);
     this.splitContainer3.Panel1.Controls.Add(this.byUnitFaset);
     this.splitContainer3.Panel1.Controls.Add(this.unitFaset);
     this.splitContainer3.Panel1.Controls.Add(this.label7);
     this.splitContainer3.Panel1.Controls.Add(this.label8);
     this.splitContainer3.Panel1.Controls.Add(this.label4);
     this.splitContainer3.Panel1.Controls.Add(this.nudEndValue);
     this.splitContainer3.Panel1.Controls.Add(this.nudStartValue);
     this.splitContainer3.Panel1.Controls.Add(this.label5);
     this.splitContainer3.Panel1.Controls.Add(this.label10);
     this.splitContainer3.Panel1.Controls.Add(this.selectOrgDocument);
     this.splitContainer3.Panel1.Controls.Add(this.btnSave);
     this.splitContainer3.Panel1.Controls.Add(this.label1);
     this.splitContainer3.Panel2.Controls.Add(this.statusStrip);
     this.splitContainer3.set_Size(new System.Drawing.Size(960, 0x68));
     this.splitContainer3.set_SplitterDistance(0x4b);
     this.splitContainer3.set_TabIndex(0);
     this.dbxNormDate.AttachToPeriod = false;
     this.dbxNormDate.AttachToPeriodEnd = false;
     this.dbxNormDate.set_Location(new System.Drawing.Point(0x43, 12));
     this.dbxNormDate.set_Mask("00/00/0000");
     this.dbxNormDate.set_Name("dbxNormDate");
     this.dbxNormDate.set_Size(new System.Drawing.Size(100, 20));
     this.dbxNormDate.set_TabIndex(0x3e);
     this.dbxNormDate.DateChanged += new DateChangedHandler(this.dbxNormDate_DateChanged_1);
     this.byUnitFaset.set_FormattingEnabled(true);
     this.byUnitFaset.set_Location(new System.Drawing.Point(190, 0x26));
     this.byUnitFaset.set_Name("byUnitFaset");
     this.byUnitFaset.set_Size(new System.Drawing.Size(0x47, 0x15));
     this.byUnitFaset.set_Sorted(true);
     this.byUnitFaset.set_TabIndex(0x41);
     this.unitFaset.set_FormattingEnabled(true);
     this.unitFaset.set_Location(new System.Drawing.Point(0x60, 0x26));
     this.unitFaset.set_Name("unitFaset");
     this.unitFaset.set_Size(new System.Drawing.Size(0x47, 0x15));
     this.unitFaset.set_Sorted(true);
     this.unitFaset.set_TabIndex(0x40);
     this.unitFaset.add_SelectedIndexChanged(new System.EventHandler(this.unitFaset_SelectedIndexChanged));
     this.label7.set_AutoSize(true);
     this.label7.set_Location(new System.Drawing.Point(0x205, 0x2b));
     this.label7.set_Name("label7");
     this.label7.set_Size(new System.Drawing.Size(0x69, 13));
     this.label7.set_TabIndex(0x38);
     this.label7.set_Text("Конечное значение");
     this.label8.set_AutoSize(true);
     this.label8.set_Location(new System.Drawing.Point(11, 15));
     this.label8.set_Name("label8");
     this.label8.set_Size(new System.Drawing.Size(0x21, 13));
     this.label8.set_TabIndex(0x39);
     this.label8.set_Text("Дата");
     this.label4.set_AutoSize(true);
     this.label4.set_Location(new System.Drawing.Point(0x132, 0x2a));
     this.label4.set_Name("label4");
     this.label4.set_Size(new System.Drawing.Size(0x70, 13));
     this.label4.set_TabIndex(0x3a);
     this.label4.set_Text("Начальное значение");
     this.nudEndValue.set_DecimalPlaces(6);
     int[] numArray = new int[4];
     numArray[0] = 5;
     numArray[3] = 0x10000;
     this.nudEndValue.set_Increment(new decimal(numArray));
     this.nudEndValue.set_Location(new System.Drawing.Point(0x274, 0x29));
     int[] numArray2 = new int[4];
     numArray2[0] = 0x98967f;
     this.nudEndValue.set_Maximum(new decimal(numArray2));
     this.nudEndValue.set_Name("nudEndValue");
     this.nudEndValue.set_Size(new System.Drawing.Size(80, 20));
     this.nudEndValue.set_TabIndex(0x43);
     this.nudStartValue.set_DecimalPlaces(6);
     int[] numArray3 = new int[4];
     numArray3[0] = 5;
     numArray3[3] = 0x10000;
     this.nudStartValue.set_Increment(new decimal(numArray3));
     this.nudStartValue.set_Location(new System.Drawing.Point(0x1a5, 0x29));
     int[] numArray4 = new int[4];
     numArray4[0] = 0x98967f;
     this.nudStartValue.set_Maximum(new decimal(numArray4));
     this.nudStartValue.set_Name("nudStartValue");
     this.nudStartValue.set_Size(new System.Drawing.Size(80, 20));
     this.nudStartValue.set_TabIndex(0x42);
     this.label5.set_AutoSize(true);
     this.label5.set_Location(new System.Drawing.Point(0xad, 0x2a));
     this.label5.set_Name("label5");
     this.label5.set_Size(new System.Drawing.Size(12, 13));
     this.label5.set_TabIndex(0x34);
     this.label5.set_Text("/");
     this.label10.set_AutoSize(true);
     this.label10.set_Location(new System.Drawing.Point(7, 0x2a));
     this.label10.set_Name("label10");
     this.label10.set_Size(new System.Drawing.Size(0x52, 13));
     this.label10.set_TabIndex(0x35);
     this.label10.set_Text(" Ед.измерения");
     this.selectOrgDocument.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectOrgDocument.set_Location(new System.Drawing.Point(0x135, 12));
     this.selectOrgDocument.set_Name("selectOrgDocument");
     this.selectOrgDocument.set_Size(new System.Drawing.Size(0x18f, 20));
     this.selectOrgDocument.set_TabIndex(0x3f);
     this.selectOrgDocument.OnOrgDocumentSelected += new OrgDocumentHandler(this.selectOrgDocument_OnOrgDocumentSelected);
     this.btnSave.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Top);
     this.btnSave.set_Location(new System.Drawing.Point(0x2f0, 5));
     this.btnSave.set_Name("btnSave");
     this.btnSave.set_Size(new System.Drawing.Size(150, 0x21));
     this.btnSave.set_TabIndex(0x44);
     this.btnSave.set_Text("Сохранить");
     this.btnSave.set_UseVisualStyleBackColor(true);
     this.btnSave.add_Click(new System.EventHandler(this.btnSave_Click));
     this.label1.set_AutoSize(true);
     this.label1.set_Location(new System.Drawing.Point(0xbc, 12));
     this.label1.set_Name("label1");
     this.label1.set_Size(new System.Drawing.Size(0x73, 13));
     this.label1.set_TabIndex(0x30);
     this.label1.set_Text("Документ основания");
     this.statusStrip.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.statsLabel });
     this.statusStrip.set_Location(new System.Drawing.Point(0, 0));
     this.statusStrip.set_Name("statusStrip");
     this.statusStrip.set_Size(new System.Drawing.Size(960, 0x19));
     this.statusStrip.set_TabIndex(6);
     this.statsLabel.set_Name("statsLabel");
     this.statsLabel.set_Size(new System.Drawing.Size(0, 20));
     base.set_AutoScaleDimensions(new System.Drawing.SizeF(6f, 13f));
     base.set_AutoScaleMode(System.Windows.Forms.AutoScaleMode.Font);
     base.set_ClientSize(new System.Drawing.Size(960, 0x24d));
     base.Controls.Add(this.splitContainer1);
     base.set_Name("AccountServiceNormAddForm");
     base.set_StartPosition(System.Windows.Forms.FormStartPosition.CenterParent);
     this.set_Text("Групповое добавление индивидуальных нормативов");
     base.set_WindowState(System.Windows.Forms.FormWindowState.Maximized);
     base.add_Load(new System.EventHandler(this.AccountServiceNormAddForm_Load));
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.gbSearchParams.ResumeLayout(false);
     this.gbSearchParams.PerformLayout();
     this.bsServiceTypes.EndInit();
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel1.PerformLayout();
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.Panel2.PerformLayout();
     this.splitContainer3.ResumeLayout(false);
     this.nudEndValue.EndInit();
     this.nudStartValue.EndInit();
     this.statusStrip.ResumeLayout(false);
     this.statusStrip.PerformLayout();
     base.ResumeLayout(false);
 }
Пример #17
0
 private void btnReCalc_Click(object sender, System.EventArgs e)
 {
     ObjectList<ServiceOld> selectedServices = this.vwServiceSearch.SelectedServices;
     ObjectList<LocalAddress> selectedAddresses = ((OperationGroupForm) base.Parent.Parent.Parent.Parent.Parent).GetSelectedAddresses();
     FasetItem selectedFasetItem = this.selectReCalc.SelectedFasetItem;
     OrgDocument selectedOrgDocument = this.selectOrgDocument.SelectedOrgDocument;
     System.Text.StringBuilder builder = new System.Text.StringBuilder();
     if (this.datePeriod.DateBeginIsNull)
     {
         builder.AppendLine("Введите дату начала периода");
     }
     if (this.datePeriod.DateEndIsNull)
     {
         builder.AppendLine("Введите дату конца периода");
     }
     if ((selectedFasetItem == FasetItem.Null) || (selectedFasetItem == null))
     {
         builder.AppendLine("Выберите причину перерасчета");
     }
     if (builder.get_Length() != 0)
     {
         BalloonWindow.Show(this.btnReCalc, builder.ToString());
     }
     else
     {
         Area @null;
         if (selectedAddresses.get_Count() == 0)
         {
             if (Messages.QuestionYesNo(this, "Вы не выбрали адреса. Перерасчёт без ограниения по адресу может занять продолжительное время.\nВы уверены что хотите продолжить?") != System.Windows.Forms.DialogResult.Yes)
             {
                 return;
             }
             @null = Area.Null;
         }
         else
         {
             @null = new Area();
             @null.SaveChanges();
             @null.SaveAddresses(selectedAddresses);
         }
         if ((selectedServices.get_Count() != 0) || (Messages.QuestionYesNo(this, "Вы не выбрали услуги. Будет произведён перерасчёт по всем услугам, который может занять продолжительное время.\nВы уверены что хотите продолжить?") == System.Windows.Forms.DialogResult.Yes))
         {
             bool isRecalc = true;
             if (this.rbCharge.get_Checked())
             {
                 isRecalc = false;
             }
             this.set_Cursor(System.Windows.Forms.Cursors.WaitCursor);
             try
             {
                 GroupOperation.RecalcAccountServices(selectedServices, selectedFasetItem.Id, this.datePeriod.DateBegin, this.datePeriod.DateEnd, selectedOrgDocument, @null, this.chbxWithBankrupt.get_Checked(), isRecalc);
             }
             catch (System.Exception exception)
             {
                 Messages.ShowException(this, exception);
             }
             finally
             {
                 this.set_Cursor(System.Windows.Forms.Cursors.Default);
             }
             Messages.ShowMessage("Групповой перерасчет был выполнен для " + ((selectedServices.get_Count() == 0) ? ((string) " всех ") : ((int) selectedServices.get_Count()).ToString()) + " услуг!");
             @null.DeleteWithRelations();
         }
     }
 }
 private void InitializeComponent()
 {
     this.components = new Container();
     System.Windows.Forms.DataGridViewCellStyle style = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style8 = new System.Windows.Forms.DataGridViewCellStyle();
     Area area = new Area();
     System.Windows.Forms.DataGridViewCellStyle style9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style12 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style13 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style14 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style15 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style16 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style17 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style18 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style19 = new System.Windows.Forms.DataGridViewCellStyle();
     this.ttsCounterIndicationsUnsert = new System.Windows.Forms.ToolStrip();
     this.btnUpdate = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnSave = new System.Windows.Forms.ToolStripButton();
     this.dgvApartmentCounterIndicationsView = new System.Windows.Forms.DataGridView();
     this.City = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Street = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.House = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Flat = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.AccountNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dgcNewVal = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.newValTypeName = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.newValDate = new DataGridViewDateColumn();
     this.isSaveDuplicateIndication = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dgcVal = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Consumption = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dgcValDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dgcCounterName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dgcServiceTypeName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dgcFromDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsApartmentCounterIndicationInputView = new System.Windows.Forms.BindingSource(this.components);
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.selectAddresses1 = new SelectAddresses();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.selectServiceTypes1 = new SelectServiceTypesByCounterContects();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.cbSaveDuplicateIndications = new System.Windows.Forms.CheckBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dtpDateIndications = new System.Windows.Forms.DateTimePicker();
     this.btChangeDate = new System.Windows.Forms.Button();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewComboBoxColumn1 = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewDateColumn1 = new DataGridViewDateColumn();
     this.dataGridViewDateColumn2 = new DataGridViewDateColumn();
     this.dataGridViewDateColumn3 = new DataGridViewDateColumn();
     this.ttsCounterIndicationsUnsert.SuspendLayout();
     this.dgvApartmentCounterIndicationsView.BeginInit();
     this.bsApartmentCounterIndicationInputView.BeginInit();
     this.groupBox1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     base.SuspendLayout();
     this.ttsCounterIndicationsUnsert.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.btnUpdate, this.toolStripSeparator1, this.btnSave });
     this.ttsCounterIndicationsUnsert.set_Location(new System.Drawing.Point(0, 0));
     this.ttsCounterIndicationsUnsert.set_Name("ttsCounterIndicationsUnsert");
     this.ttsCounterIndicationsUnsert.set_Size(new System.Drawing.Size(0x44d, 0x19));
     this.ttsCounterIndicationsUnsert.set_TabIndex(12);
     this.btnUpdate.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.btnUpdate.set_Image(Resources.UPDATE);
     this.btnUpdate.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.btnUpdate.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.btnUpdate.set_Name("btnUpdate");
     this.btnUpdate.set_Size(new System.Drawing.Size(0x1c, 0x16));
     this.btnUpdate.set_Text("Обновить");
     this.btnUpdate.add_Click(new System.EventHandler(this.btnUpdate_Click));
     this.toolStripSeparator1.set_Name("toolStripSeparator1");
     this.toolStripSeparator1.set_Size(new System.Drawing.Size(6, 0x19));
     this.btnSave.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.btnSave.set_Image(Resources.APPLY2);
     this.btnSave.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.btnSave.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.btnSave.set_Name("btnSave");
     this.btnSave.set_Size(new System.Drawing.Size(0x17, 0x16));
     this.btnSave.set_Text("Сохранить изменения");
     this.btnSave.add_Click(new System.EventHandler(this.btnSave_Click));
     this.dgvApartmentCounterIndicationsView.set_AllowUserToAddRows(false);
     this.dgvApartmentCounterIndicationsView.set_AllowUserToDeleteRows(false);
     this.dgvApartmentCounterIndicationsView.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Top);
     this.dgvApartmentCounterIndicationsView.set_AutoGenerateColumns(false);
     this.dgvApartmentCounterIndicationsView.set_AutoSizeColumnsMode(System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader);
     this.dgvApartmentCounterIndicationsView.set_AutoSizeRowsMode(System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells);
     style.set_Alignment(System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft);
     style.set_BackColor(System.Drawing.SystemColors.Control);
     style.set_Font(new System.Drawing.Font("Microsoft Sans Serif", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0xcc));
     style.set_ForeColor(System.Drawing.SystemColors.WindowText);
     style.set_SelectionBackColor(System.Drawing.SystemColors.Highlight);
     style.set_SelectionForeColor(System.Drawing.SystemColors.HighlightText);
     style.set_WrapMode(System.Windows.Forms.DataGridViewTriState.True);
     this.dgvApartmentCounterIndicationsView.set_ColumnHeadersDefaultCellStyle(style);
     this.dgvApartmentCounterIndicationsView.set_ColumnHeadersHeightSizeMode(System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize);
     this.dgvApartmentCounterIndicationsView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.City, this.Street, this.House, this.Flat, this.AccountNumber, this.dgcNewVal, this.newValTypeName, this.newValDate, this.isSaveDuplicateIndication, this.dgcVal, this.Consumption, this.dgcValDate, this.dgcCounterName, this.dgcServiceTypeName, this.dgcFromDate });
     this.dgvApartmentCounterIndicationsView.set_DataSource(this.bsApartmentCounterIndicationInputView);
     style2.set_Alignment(System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft);
     style2.set_BackColor(System.Drawing.SystemColors.Window);
     style2.set_Font(new System.Drawing.Font("Microsoft Sans Serif", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0xcc));
     style2.set_ForeColor(System.Drawing.SystemColors.ControlText);
     style2.set_SelectionBackColor(System.Drawing.SystemColors.Highlight);
     style2.set_SelectionForeColor(System.Drawing.SystemColors.HighlightText);
     style2.set_WrapMode(System.Windows.Forms.DataGridViewTriState.False);
     this.dgvApartmentCounterIndicationsView.set_DefaultCellStyle(style2);
     this.dgvApartmentCounterIndicationsView.set_GridColor(System.Drawing.SystemColors.ControlLight);
     this.dgvApartmentCounterIndicationsView.set_Location(new System.Drawing.Point(0, 0x1c));
     this.dgvApartmentCounterIndicationsView.set_MultiSelect(false);
     this.dgvApartmentCounterIndicationsView.set_Name("dgvApartmentCounterIndicationsView");
     style3.set_Alignment(System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft);
     style3.set_BackColor(System.Drawing.SystemColors.Control);
     style3.set_Font(new System.Drawing.Font("Microsoft Sans Serif", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0xcc));
     style3.set_ForeColor(System.Drawing.SystemColors.WindowText);
     style3.set_SelectionBackColor(System.Drawing.SystemColors.Highlight);
     style3.set_SelectionForeColor(System.Drawing.SystemColors.HighlightText);
     style3.set_WrapMode(System.Windows.Forms.DataGridViewTriState.True);
     this.dgvApartmentCounterIndicationsView.set_RowHeadersDefaultCellStyle(style3);
     this.dgvApartmentCounterIndicationsView.set_RowHeadersVisible(false);
     this.dgvApartmentCounterIndicationsView.set_SelectionMode(System.Windows.Forms.DataGridViewSelectionMode.CellSelect);
     this.dgvApartmentCounterIndicationsView.set_Size(new System.Drawing.Size(0x44d, 0x151));
     this.dgvApartmentCounterIndicationsView.set_TabIndex(13);
     this.dgvApartmentCounterIndicationsView.add_RowValidated(new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvApartmentCounterIndicationsView_RowEnter));
     this.dgvApartmentCounterIndicationsView.add_Sorted(new System.EventHandler(this.dgvApartmentCounterIndicationsView_Sorted));
     this.City.set_DataPropertyName("City");
     this.City.set_HeaderText("Нас. пункт");
     this.City.set_MinimumWidth(0x4b);
     this.City.set_Name("City");
     this.City.set_ReadOnly(true);
     this.City.set_ToolTipText("Нас. пункт");
     this.City.set_Width(0x4b);
     this.Street.set_DataPropertyName("Street");
     this.Street.set_HeaderText("Улица");
     this.Street.set_MinimumWidth(0x4b);
     this.Street.set_Name("Street");
     this.Street.set_ReadOnly(true);
     this.Street.set_ToolTipText("Улица");
     this.Street.set_Width(0x4b);
     this.House.set_DataPropertyName("House");
     this.House.set_HeaderText("Дом");
     this.House.set_MinimumWidth(0x2d);
     this.House.set_Name("House");
     this.House.set_ReadOnly(true);
     this.House.set_ToolTipText("Дом");
     this.House.set_Width(0x2d);
     this.Flat.set_DataPropertyName("Flat");
     this.Flat.set_HeaderText("Кв.");
     this.Flat.set_MinimumWidth(0x2d);
     this.Flat.set_Name("Flat");
     this.Flat.set_ReadOnly(true);
     this.Flat.set_ToolTipText("Кв.");
     this.Flat.set_Width(0x2d);
     this.AccountNumber.set_DataPropertyName("AccountNumber");
     this.AccountNumber.set_HeaderText("Лицевой счёт");
     this.AccountNumber.set_MinimumWidth(50);
     this.AccountNumber.set_Name("AccountNumber");
     this.AccountNumber.set_ReadOnly(true);
     this.AccountNumber.set_Width(50);
     this.dgcNewVal.set_DataPropertyName("NewVal");
     style4.set_BackColor(System.Drawing.Color.LemonChiffon);
     this.dgcNewVal.set_DefaultCellStyle(style4);
     this.dgcNewVal.set_HeaderText("Новое значение");
     this.dgcNewVal.set_MinimumWidth(0x4b);
     this.dgcNewVal.set_Name("dgcNewVal");
     this.dgcNewVal.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dgcNewVal.set_ToolTipText("Новое значение");
     this.dgcNewVal.set_Width(0x4b);
     this.newValTypeName.set_DataPropertyName("NewValTypeName");
     this.newValTypeName.set_DisplayStyle(System.Windows.Forms.DataGridViewComboBoxDisplayStyle.ComboBox);
     this.newValTypeName.set_HeaderText("Тип показания");
     this.newValTypeName.set_MinimumWidth(150);
     this.newValTypeName.set_Name("newValTypeName");
     this.newValTypeName.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.newValTypeName.set_SortMode(System.Windows.Forms.DataGridViewColumnSortMode.Automatic);
     this.newValTypeName.set_ToolTipText("Тип нового показания");
     this.newValTypeName.set_Width(150);
     this.newValDate.set_DataPropertyName("NewValDate");
     style5.set_BackColor(System.Drawing.Color.LemonChiffon);
     this.newValDate.set_DefaultCellStyle(style5);
     this.newValDate.set_HeaderText("Дата показания");
     this.newValDate.set_MinimumWidth(0x55);
     this.newValDate.set_Name("newValDate");
     this.newValDate.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.newValDate.set_SortMode(System.Windows.Forms.DataGridViewColumnSortMode.Automatic);
     this.newValDate.set_ToolTipText("Дата показания нового показания");
     this.newValDate.set_Width(0x55);
     this.isSaveDuplicateIndication.set_DataPropertyName("IsSaveDuplicateIndication");
     this.isSaveDuplicateIndication.set_HeaderText("Учитывать показание с расходом 0");
     this.isSaveDuplicateIndication.set_MinimumWidth(90);
     this.isSaveDuplicateIndication.set_Name("isSaveDuplicateIndication");
     this.isSaveDuplicateIndication.set_Width(90);
     this.dgcVal.set_DataPropertyName("Val");
     style6.set_Format("N4");
     this.dgcVal.set_DefaultCellStyle(style6);
     this.dgcVal.set_HeaderText("Последнее показание");
     this.dgcVal.set_MinimumWidth(90);
     this.dgcVal.set_Name("dgcVal");
     this.dgcVal.set_ReadOnly(true);
     this.dgcVal.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dgcVal.set_ToolTipText("Последнее показание");
     this.dgcVal.set_Width(90);
     this.Consumption.set_DataPropertyName("Consumption");
     this.Consumption.set_HeaderText("Расход");
     this.Consumption.set_MinimumWidth(0x41);
     this.Consumption.set_Name("Consumption");
     this.Consumption.set_Width(0x41);
     this.dgcValDate.set_DataPropertyName("ValDate");
     style7.set_Format("d");
     this.dgcValDate.set_DefaultCellStyle(style7);
     this.dgcValDate.set_HeaderText("Дата последнего показаний");
     this.dgcValDate.set_MinimumWidth(0x4b);
     this.dgcValDate.set_Name("dgcValDate");
     this.dgcValDate.set_ReadOnly(true);
     this.dgcValDate.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dgcValDate.set_ToolTipText("Дата последнего показаний");
     this.dgcValDate.set_Width(0x4b);
     this.dgcCounterName.set_DataPropertyName("CounterName");
     this.dgcCounterName.set_HeaderText("Название");
     this.dgcCounterName.set_MinimumWidth(0x4b);
     this.dgcCounterName.set_Name("dgcCounterName");
     this.dgcCounterName.set_ReadOnly(true);
     this.dgcCounterName.set_Width(0x4b);
     this.dgcServiceTypeName.set_DataPropertyName("ServiceTypeName");
     this.dgcServiceTypeName.set_HeaderText("Тип услуги");
     this.dgcServiceTypeName.set_MinimumWidth(150);
     this.dgcServiceTypeName.set_Name("dgcServiceTypeName");
     this.dgcServiceTypeName.set_ReadOnly(true);
     this.dgcServiceTypeName.set_Width(150);
     this.dgcFromDate.set_DataPropertyName("CounterFromDate");
     style8.set_Format("dd.MM.yyyy");
     style8.set_NullValue(null);
     this.dgcFromDate.set_DefaultCellStyle(style8);
     this.dgcFromDate.set_HeaderText("Дата установки");
     this.dgcFromDate.set_MinimumWidth(0x4b);
     this.dgcFromDate.set_Name("dgcFromDate");
     this.dgcFromDate.set_ReadOnly(true);
     this.dgcFromDate.set_Width(0x4b);
     this.bsApartmentCounterIndicationInputView.set_DataSource(typeof(ApartmentCounterIndicationInputView));
     this.groupBox1.Controls.Add(this.selectAddresses1);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.selectServiceTypes1);
     this.groupBox1.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.groupBox1.set_Location(new System.Drawing.Point(0, 0));
     this.groupBox1.set_Name("groupBox1");
     this.groupBox1.set_Size(new System.Drawing.Size(0x450, 0x51));
     this.groupBox1.set_TabIndex(14);
     this.groupBox1.set_TabStop(false);
     this.groupBox1.set_Text("Параметры поиска");
     this.selectAddresses1.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectAddresses1.IsByUser = true;
     this.selectAddresses1.set_Location(new System.Drawing.Point(0x52, 0x17));
     this.selectAddresses1.set_Name("selectAddresses1");
     area.AreaGroupId = 0L;
     area.AreaGroupName = null;
     area.Id = 0L;
     area.IsDeleted = false;
     area.IsDirty = false;
     area.Name = "";
     area.ObjectWithIdType = null;
     area.StatusTemporary = 0;
     this.selectAddresses1.SelectedArea = area;
     this.selectAddresses1.set_Size(new System.Drawing.Size(0x3f8, 20));
     this.selectAddresses1.set_TabIndex(4);
     this.label2.set_AutoSize(true);
     this.label2.set_Location(new System.Drawing.Point(6, 0x34));
     this.label2.set_Name("label2");
     this.label2.set_Size(new System.Drawing.Size(0x40, 13));
     this.label2.set_TabIndex(3);
     this.label2.set_Text("Типы услуг");
     this.label1.set_AutoSize(true);
     this.label1.set_Location(new System.Drawing.Point(6, 0x1b));
     this.label1.set_Name("label1");
     this.label1.set_Size(new System.Drawing.Size(0x2c, 13));
     this.label1.set_TabIndex(2);
     this.label1.set_Text("Адреса");
     this.selectServiceTypes1.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectServiceTypes1.IsByUser = true;
     this.selectServiceTypes1.set_Location(new System.Drawing.Point(0x52, 0x31));
     this.selectServiceTypes1.set_Name("selectServiceTypes1");
     this.selectServiceTypes1.set_Size(new System.Drawing.Size(0x3f8, 20));
     this.selectServiceTypes1.set_TabIndex(1);
     this.panel1.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Top);
     this.panel1.Controls.Add(this.ttsCounterIndicationsUnsert);
     this.panel1.Controls.Add(this.dgvApartmentCounterIndicationsView);
     this.panel1.set_Location(new System.Drawing.Point(0, 120));
     this.panel1.set_Name("panel1");
     this.panel1.set_Size(new System.Drawing.Size(0x44d, 0x17e));
     this.panel1.set_TabIndex(15);
     this.panel2.Controls.Add(this.cbSaveDuplicateIndications);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.dtpDateIndications);
     this.panel2.Controls.Add(this.btChangeDate);
     this.panel2.set_Location(new System.Drawing.Point(0, 0x51));
     this.panel2.set_Name("panel2");
     this.panel2.set_Size(new System.Drawing.Size(0x447, 0x24));
     this.panel2.set_TabIndex(0x11);
     this.cbSaveDuplicateIndications.set_AutoSize(true);
     this.cbSaveDuplicateIndications.set_Location(new System.Drawing.Point(0x19d, 8));
     this.cbSaveDuplicateIndications.set_Name("cbSaveDuplicateIndications");
     this.cbSaveDuplicateIndications.set_Size(new System.Drawing.Size(0xe5, 0x11));
     this.cbSaveDuplicateIndications.set_TabIndex(3);
     this.cbSaveDuplicateIndications.set_Text("Учитывать все показания с расходом 0");
     this.cbSaveDuplicateIndications.set_UseVisualStyleBackColor(true);
     this.label3.set_Location(new System.Drawing.Point(3, 6));
     this.label3.set_Name("label3");
     this.label3.set_Size(new System.Drawing.Size(0x61, 0x17));
     this.label3.set_TabIndex(2);
     this.label3.set_Text("Дата показаний");
     this.dtpDateIndications.set_Location(new System.Drawing.Point(0x6a, 6));
     this.dtpDateIndications.set_Name("dtpDateIndications");
     this.dtpDateIndications.set_Size(new System.Drawing.Size(0x79, 20));
     this.dtpDateIndications.set_TabIndex(1);
     this.btChangeDate.set_Location(new System.Drawing.Point(0xe9, 4));
     this.btChangeDate.set_Name("btChangeDate");
     this.btChangeDate.set_Size(new System.Drawing.Size(0x97, 0x17));
     this.btChangeDate.set_TabIndex(0);
     this.btChangeDate.set_Text("Поменять дату показаний");
     this.btChangeDate.set_UseVisualStyleBackColor(true);
     this.btChangeDate.add_Click(new System.EventHandler(this.btChangeDate_Click));
     this.dataGridViewTextBoxColumn1.set_DataPropertyName("NewVal");
     this.dataGridViewTextBoxColumn1.set_HeaderText("Новое значение");
     this.dataGridViewTextBoxColumn1.set_MinimumWidth(0x4b);
     this.dataGridViewTextBoxColumn1.set_Name("dataGridViewTextBoxColumn1");
     this.dataGridViewTextBoxColumn1.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn1.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dataGridViewTextBoxColumn1.set_ToolTipText("Новое значение");
     this.dataGridViewTextBoxColumn1.set_Width(0x4b);
     this.dataGridViewTextBoxColumn2.set_DataPropertyName("Comment");
     this.dataGridViewTextBoxColumn2.set_HeaderText("Комментарий");
     this.dataGridViewTextBoxColumn2.set_MinimumWidth(100);
     this.dataGridViewTextBoxColumn2.set_Name("dataGridViewTextBoxColumn2");
     this.dataGridViewTextBoxColumn2.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn2.set_ToolTipText("Комментарий");
     this.dataGridViewTextBoxColumn3.set_DataPropertyName("Val");
     style9.set_Format("N4");
     this.dataGridViewTextBoxColumn3.set_DefaultCellStyle(style9);
     this.dataGridViewTextBoxColumn3.set_HeaderText("Последнее показание");
     this.dataGridViewTextBoxColumn3.set_MinimumWidth(90);
     this.dataGridViewTextBoxColumn3.set_Name("dataGridViewTextBoxColumn3");
     this.dataGridViewTextBoxColumn3.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn3.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dataGridViewTextBoxColumn3.set_ToolTipText("Последнее показание");
     this.dataGridViewTextBoxColumn3.set_Width(90);
     this.dataGridViewTextBoxColumn4.set_DataPropertyName("ValDate");
     style10.set_Format("d");
     this.dataGridViewTextBoxColumn4.set_DefaultCellStyle(style10);
     this.dataGridViewTextBoxColumn4.set_HeaderText("Дата последнего показаний");
     this.dataGridViewTextBoxColumn4.set_MinimumWidth(0x4b);
     this.dataGridViewTextBoxColumn4.set_Name("dataGridViewTextBoxColumn4");
     this.dataGridViewTextBoxColumn4.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn4.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dataGridViewTextBoxColumn4.set_ToolTipText("Дата последнего показаний");
     this.dataGridViewTextBoxColumn4.set_Width(0x4b);
     this.dataGridViewTextBoxColumn5.set_DataPropertyName("CounterTypeName");
     style11.set_BackColor(System.Drawing.Color.LemonChiffon);
     this.dataGridViewTextBoxColumn5.set_DefaultCellStyle(style11);
     this.dataGridViewTextBoxColumn5.set_HeaderText("Тип прибора");
     this.dataGridViewTextBoxColumn5.set_MinimumWidth(0x4b);
     this.dataGridViewTextBoxColumn5.set_Name("dataGridViewTextBoxColumn5");
     this.dataGridViewTextBoxColumn5.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn5.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dataGridViewTextBoxColumn5.set_ToolTipText("Новое значение");
     this.dataGridViewTextBoxColumn5.set_Width(0x4b);
     this.dataGridViewTextBoxColumn6.set_DataPropertyName("CounterName");
     style12.set_BackColor(System.Drawing.Color.LemonChiffon);
     this.dataGridViewTextBoxColumn6.set_DefaultCellStyle(style12);
     this.dataGridViewTextBoxColumn6.set_HeaderText("Название");
     this.dataGridViewTextBoxColumn6.set_MinimumWidth(0x4b);
     this.dataGridViewTextBoxColumn6.set_Name("dataGridViewTextBoxColumn6");
     this.dataGridViewTextBoxColumn6.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn6.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dataGridViewTextBoxColumn6.set_ToolTipText("Дата показания нового показания");
     this.dataGridViewTextBoxColumn6.set_Width(0x4b);
     this.dataGridViewComboBoxColumn1.set_DataPropertyName("NewValTypeName");
     this.dataGridViewComboBoxColumn1.set_DisplayStyle(System.Windows.Forms.DataGridViewComboBoxDisplayStyle.ComboBox);
     this.dataGridViewComboBoxColumn1.set_HeaderText("Тип показания");
     this.dataGridViewComboBoxColumn1.set_MinimumWidth(150);
     this.dataGridViewComboBoxColumn1.set_Name("dataGridViewComboBoxColumn1");
     this.dataGridViewComboBoxColumn1.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dataGridViewComboBoxColumn1.set_SortMode(System.Windows.Forms.DataGridViewColumnSortMode.Automatic);
     this.dataGridViewComboBoxColumn1.set_ToolTipText("Тип нового показания");
     this.dataGridViewComboBoxColumn1.set_Width(150);
     this.dataGridViewTextBoxColumn7.set_DataPropertyName("ServiceTypeName");
     style13.set_BackColor(System.Drawing.Color.LemonChiffon);
     this.dataGridViewTextBoxColumn7.set_DefaultCellStyle(style13);
     this.dataGridViewTextBoxColumn7.set_HeaderText("Тип услуги");
     this.dataGridViewTextBoxColumn7.set_MinimumWidth(150);
     this.dataGridViewTextBoxColumn7.set_Name("dataGridViewTextBoxColumn7");
     this.dataGridViewTextBoxColumn7.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn7.set_ToolTipText("Комментарий");
     this.dataGridViewTextBoxColumn7.set_Width(150);
     this.dataGridViewTextBoxColumn8.set_DataPropertyName("CounterFromDate");
     style14.set_Format("dd.MM.yyyy");
     style14.set_NullValue(null);
     this.dataGridViewTextBoxColumn8.set_DefaultCellStyle(style14);
     this.dataGridViewTextBoxColumn8.set_HeaderText("Дата установки");
     this.dataGridViewTextBoxColumn8.set_MinimumWidth(0x4b);
     this.dataGridViewTextBoxColumn8.set_Name("dataGridViewTextBoxColumn8");
     this.dataGridViewTextBoxColumn8.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn8.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dataGridViewTextBoxColumn8.set_ToolTipText("Последнее показание");
     this.dataGridViewTextBoxColumn8.set_Width(0x4b);
     this.dataGridViewTextBoxColumn9.set_DataPropertyName("ValDate");
     style15.set_Format("d");
     this.dataGridViewTextBoxColumn9.set_DefaultCellStyle(style15);
     this.dataGridViewTextBoxColumn9.set_HeaderText("Дата последнего показаний");
     this.dataGridViewTextBoxColumn9.set_MinimumWidth(0x4b);
     this.dataGridViewTextBoxColumn9.set_Name("dataGridViewTextBoxColumn9");
     this.dataGridViewTextBoxColumn9.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn9.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dataGridViewTextBoxColumn9.set_ToolTipText("Дата последнего показаний");
     this.dataGridViewTextBoxColumn9.set_Width(0x4b);
     this.dataGridViewTextBoxColumn10.set_DataPropertyName("CounterTypeName");
     this.dataGridViewTextBoxColumn10.set_HeaderText("Тип прибора");
     this.dataGridViewTextBoxColumn10.set_MinimumWidth(0x4b);
     this.dataGridViewTextBoxColumn10.set_Name("dataGridViewTextBoxColumn10");
     this.dataGridViewTextBoxColumn10.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn10.set_Width(0x4b);
     this.dataGridViewTextBoxColumn11.set_DataPropertyName("CounterName");
     this.dataGridViewTextBoxColumn11.set_HeaderText("Название");
     this.dataGridViewTextBoxColumn11.set_MinimumWidth(0x4b);
     this.dataGridViewTextBoxColumn11.set_Name("dataGridViewTextBoxColumn11");
     this.dataGridViewTextBoxColumn11.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn11.set_Width(0x4b);
     this.dataGridViewTextBoxColumn12.set_DataPropertyName("ServiceTypeName");
     this.dataGridViewTextBoxColumn12.set_HeaderText("Тип услуги");
     this.dataGridViewTextBoxColumn12.set_MinimumWidth(150);
     this.dataGridViewTextBoxColumn12.set_Name("dataGridViewTextBoxColumn12");
     this.dataGridViewTextBoxColumn12.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn12.set_Width(150);
     this.dataGridViewTextBoxColumn13.set_DataPropertyName("CounterFromDate");
     style16.set_Format("dd.MM.yyyy");
     style16.set_NullValue(null);
     this.dataGridViewTextBoxColumn13.set_DefaultCellStyle(style16);
     this.dataGridViewTextBoxColumn13.set_HeaderText("Дата установки");
     this.dataGridViewTextBoxColumn13.set_MinimumWidth(0x4b);
     this.dataGridViewTextBoxColumn13.set_Name("dataGridViewTextBoxColumn13");
     this.dataGridViewTextBoxColumn13.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn13.set_Width(0x4b);
     this.dataGridViewDateColumn1.set_DataPropertyName("NewValDate");
     style17.set_NullValue(null);
     this.dataGridViewDateColumn1.set_DefaultCellStyle(style17);
     this.dataGridViewDateColumn1.set_HeaderText("Дата показания");
     this.dataGridViewDateColumn1.set_MinimumWidth(0x4b);
     this.dataGridViewDateColumn1.set_Name("dataGridViewDateColumn1");
     this.dataGridViewDateColumn1.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dataGridViewDateColumn1.set_SortMode(System.Windows.Forms.DataGridViewColumnSortMode.Automatic);
     this.dataGridViewDateColumn1.set_ToolTipText("Дата показания нового показания");
     this.dataGridViewDateColumn1.set_Width(0x4b);
     this.dataGridViewDateColumn2.set_DataPropertyName("NewValDate");
     style18.set_NullValue(null);
     this.dataGridViewDateColumn2.set_DefaultCellStyle(style18);
     this.dataGridViewDateColumn2.set_HeaderText("Дата показания");
     this.dataGridViewDateColumn2.set_MinimumWidth(0x4b);
     this.dataGridViewDateColumn2.set_Name("dataGridViewDateColumn2");
     this.dataGridViewDateColumn2.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dataGridViewDateColumn2.set_SortMode(System.Windows.Forms.DataGridViewColumnSortMode.Automatic);
     this.dataGridViewDateColumn2.set_ToolTipText("Дата показания нового показания");
     this.dataGridViewDateColumn2.set_Width(0x4b);
     this.dataGridViewDateColumn3.set_DataPropertyName("NewValDate");
     style19.set_NullValue(null);
     this.dataGridViewDateColumn3.set_DefaultCellStyle(style19);
     this.dataGridViewDateColumn3.set_HeaderText("Дата показания");
     this.dataGridViewDateColumn3.set_MinimumWidth(0x4b);
     this.dataGridViewDateColumn3.set_Name("dataGridViewDateColumn3");
     this.dataGridViewDateColumn3.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.dataGridViewDateColumn3.set_SortMode(System.Windows.Forms.DataGridViewColumnSortMode.Automatic);
     this.dataGridViewDateColumn3.set_ToolTipText("Дата показания нового показания");
     this.dataGridViewDateColumn3.set_Width(0x4b);
     base.set_AutoScaleDimensions(new System.Drawing.SizeF(6f, 13f));
     base.set_AutoScaleMode(System.Windows.Forms.AutoScaleMode.Font);
     this.set_AutoScroll(true);
     this.set_AutoSize(true);
     base.Controls.Add(this.panel2);
     base.Controls.Add(this.panel1);
     base.Controls.Add(this.groupBox1);
     this.set_DoubleBuffered(true);
     base.set_Name("GroupInputApartmentCountersView");
     base.set_Size(new System.Drawing.Size(0x450, 0x1f9));
     this.ttsCounterIndicationsUnsert.ResumeLayout(false);
     this.ttsCounterIndicationsUnsert.PerformLayout();
     this.dgvApartmentCounterIndicationsView.EndInit();
     this.bsApartmentCounterIndicationInputView.EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     base.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     Area area = new Area();
     House house = new House();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnOk = new System.Windows.Forms.Button();
     this.datePeriod = new DatePeriod();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.selectServices = new SelectServices();
     base.SuspendLayout();
     this.btnCancel.set_Location(new System.Drawing.Point(0x162, 0x1f));
     this.btnCancel.set_Name("btnCancel");
     this.btnCancel.set_Size(new System.Drawing.Size(0x42, 0x16));
     this.btnCancel.set_TabIndex(0x5d);
     this.btnCancel.set_Text("Отменить");
     this.btnCancel.set_UseVisualStyleBackColor(true);
     this.btnCancel.add_Click(new System.EventHandler(this.btnCancel_Click));
     this.btnOk.set_Location(new System.Drawing.Point(0x11a, 0x1f));
     this.btnOk.set_Name("btnOk");
     this.btnOk.set_Size(new System.Drawing.Size(0x42, 0x16));
     this.btnOk.set_TabIndex(0x5c);
     this.btnOk.set_Text("Добавить");
     this.btnOk.set_UseVisualStyleBackColor(true);
     this.btnOk.add_Click(new System.EventHandler(this.btnOk_Click));
     this.datePeriod.AttachToPeriod = false;
     this.datePeriod.DateBeginReadonly = false;
     this.datePeriod.DateEndReadonly = false;
     this.datePeriod.set_Location(new System.Drawing.Point(0x35, 0x20));
     this.datePeriod.set_Margin(new System.Windows.Forms.Padding(4));
     this.datePeriod.set_Name("datePeriod");
     this.datePeriod.set_Size(new System.Drawing.Size(0xe9, 0x17));
     this.datePeriod.set_TabIndex(0x5b);
     this.label2.set_AutoSize(true);
     this.label2.set_Location(new System.Drawing.Point(1, 0x24));
     this.label2.set_Name("label2");
     this.label2.set_Size(new System.Drawing.Size(0x2d, 13));
     this.label2.set_TabIndex(90);
     this.label2.set_Text("Период");
     this.label1.set_AutoSize(true);
     this.label1.set_Location(new System.Drawing.Point(1, 11));
     this.label1.set_Name("label1");
     this.label1.set_Size(new System.Drawing.Size(0x2b, 13));
     this.label1.set_TabIndex(0x59);
     this.label1.set_Text("Услуга");
     area.AreaGroupId = 0L;
     area.AreaGroupName = null;
     area.Id = 0L;
     area.IsDeleted = false;
     area.IsDirty = true;
     area.StatusTemporary = 0;
     area.Name = "";
     area.ObjectWithIdType = null;
     this.selectServices.Area = area;
     this.selectServices.Date = new System.DateTime(0L);
     this.selectServices.FromDate = new System.DateTime(0L);
     house.AdrId = 0L;
     house.AdrName = null;
     int[] numArray = new int[4];
     house.AnotherSquare = new decimal(numArray);
     house.BoroughId = 0;
     house.BoroughName = null;
     house.CargoLift = 0;
     house.Created = new System.DateTime(0L);
     house.Entrance = 0;
     house.FireAlarmType = 0;
     house.FireAlarmTypeName = null;
     int[] numArray2 = new int[4];
     house.FiredArea = new decimal(numArray2);
     house.FiveRoom = 0;
     house.Flat = 0;
     house.Floor = 0;
     int[] numArray3 = new int[4];
     house.FloorArea = new decimal(numArray3);
     house.FormControl = 0;
     house.FormControlTypeName = null;
     house.FourRoom = 0;
     house.GvsType = 0;
     house.GvsTypeName = null;
     house.HeatingType = 0;
     house.HeatingTypeName = null;
     house.HouseChief = null;
     house.HvsType = 0;
     house.HvsTypeName = null;
     house.Id = 0L;
     house.IsDeleted = false;
     house.IsDirty = false;
     int[] numArray4 = new int[4];
     house.KitchensSquare = new decimal(numArray4);
     house.Lift = 0;
     int[] numArray5 = new int[4];
     house.LivingSquare = new decimal(numArray5);
     house.LocalBroadcastingType = 0;
     house.LocalBroadcastingTypeName = null;
     house.ObjectWithIdType = null;
     house.OnDate = new System.DateTime(0L);
     house.OneRoom = 0;
     house.OverflowType = 0;
     house.OverFlowTypeName = null;
     house.OwnershipType = 0;
     house.OwnerShipTypeName = null;
     house.PassLift = 0;
     house.PercentWear = 0;
     house.RoofType = 0;
     house.RoofTypeName = null;
     house.Series = 0;
     house.SewerType = 0;
     house.SewerTypeName = null;
     house.StoveType = 0;
     house.StoveTypeName = null;
     house.SubProvider = null;
     house.ThreeRoom = 0;
     int[] numArray6 = new int[4];
     house.ToiletsSquare = new decimal(numArray6);
     int[] numArray7 = new int[4];
     house.TotalArea = new decimal(numArray7);
     int[] numArray8 = new int[4];
     house.TotalStructureVolume = new decimal(numArray8);
     house.Tvenquipmenttype = 0;
     house.Tvenquipmenttypename = null;
     house.TwoRoom = 0;
     house.Type = 0;
     house.TypeName = null;
     house.UtilizationType = 0;
     house.UtilizationTypeName = null;
     house.WallType = 0;
     house.WallTypeName = null;
     house.YearBegin = 0;
     house.YearPassport = 0;
     this.selectServices.House = house;
     this.selectServices.IsMultiSelect = false;
     this.selectServices.set_Location(new System.Drawing.Point(0x4f, 4));
     this.selectServices.set_Name("selectServices");
     this.selectServices.set_Size(new System.Drawing.Size(0x155, 20));
     this.selectServices.set_TabIndex(0x58);
     this.selectServices.ToDate = new System.DateTime(0x270f, 12, 0x1f, 0x17, 0x3b, 0x3b, 0x3e7);
     base.set_AutoScaleDimensions(new System.Drawing.SizeF(6f, 13f));
     base.set_AutoScaleMode(System.Windows.Forms.AutoScaleMode.Font);
     base.set_ClientSize(new System.Drawing.Size(0x1a8, 0x3b));
     base.Controls.Add(this.btnCancel);
     base.Controls.Add(this.btnOk);
     base.Controls.Add(this.datePeriod);
     base.Controls.Add(this.label2);
     base.Controls.Add(this.label1);
     base.Controls.Add(this.selectServices);
     base.set_FormBorderStyle(System.Windows.Forms.FormBorderStyle.FixedDialog);
     base.set_Name("HouseCounterServiceCounterAddChangeForm");
     base.set_StartPosition(System.Windows.Forms.FormStartPosition.CenterScreen);
     base.add_Load(new System.EventHandler(this.HouseCounterServiceCounterAddChangeForm_Load));
     base.add_FormClosed(new System.Windows.Forms.FormClosedEventHandler(this.HouseCounterServiceCounterAddChangeForm_FormClosed));
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Пример #20
0
 public long GetAreaId()
 {
     ObjectList<LocalAddress> selectedAddresses = this.areaAddressesTree.GetSelectedAddresses();
     this.area = new Area();
     this.area.SaveChanges();
     this.area.SaveAddresses(selectedAddresses);
     return this.area.Id;
 }
 private void btnRun_Click(object sender, System.EventArgs e)
 {
     ObjectList<ServiceOld> selectedServices = this.vwServiceSearch.SelectedServices;
     ObjectList<LocalAddress> selectedAddresses = ((OperationGroupForm) base.Parent.Parent.Parent.Parent.Parent).GetSelectedAddresses();
     string text = string.Empty;
     if (selectedServices.get_Count() == 0)
     {
         text = text + "Выберите одну или более услуг, которые нужно заменить" + System.Environment.get_NewLine();
     }
     Service service = ((Service) this.bsServices.get_Current()) ?? Service.Null;
     if (service == Service.Null)
     {
         text = text + "Выберите услугу, на которую нужно заменить" + System.Environment.get_NewLine();
     }
     if (text != string.Empty)
     {
         BalloonWindow.Show(this.btnRun, text);
     }
     else
     {
         Area @null;
         if (selectedAddresses.get_Count() == 0)
         {
             if (Messages.QuestionYesNo(this, "Вы не выбрали адреса.\nВы уверены что хотите продолжить?") != System.Windows.Forms.DialogResult.Yes)
             {
                 return;
             }
             @null = Area.Null;
         }
         else
         {
             @null = new Area();
             @null.SaveChanges();
             @null.SaveAddresses(selectedAddresses);
         }
         if (Messages.QuestionYesNo(this, "Откат данной операции невозможен, предусмотрительнее сделать перед выполнением операции копию базы, продолжить выполнение?") != System.Windows.Forms.DialogResult.Yes)
         {
             @null.DeleteWithRelations();
         }
         else
         {
             GroupOperation.ReplaceAccountServices(selectedServices, @null, service);
             Messages.ShowMessage("Замена услуг выполнена!");
             @null.DeleteWithRelations();
         }
     }
 }
Пример #22
0
 private void UpdateArea()
 {
     if (!this.m_UpdatingArea)
     {
         this.m_UpdatingArea = true;
         ObjectList<LocalAddress> selectedAddresses = this.areaAddressesTree.GetSelectedAddresses();
         this.area = new Area();
         this.area.SaveChanges();
         this.area.SaveAddresses(selectedAddresses);
         this.m_UpdatingArea = false;
         this.areaChanged = false;
     }
 }
 private void btnComprasion_Click(object sender, System.EventArgs e)
 {
     if (!this.workerCompareServices.get_IsBusy())
     {
         if (!this.isChangeParametrChangeHouseHolder && (Messages.QuestionYesNo(this, "Выполнить заново сопоставление?") != System.Windows.Forms.DialogResult.Yes))
         {
             this.tabctrlWizard.set_SelectedTab(this.tpLinking);
         }
         else
         {
             Organization organization = (Organization) this.bsOldHouseHolders.get_Current();
             Organization organization2 = (Organization) this.bsNewHouseHolders.get_Current();
             ObjectList<LocalAddress> selectedAddresses = ((OperationGroupForm) base.Parent.Parent.Parent.Parent.Parent).GetSelectedAddresses();
             string text = string.Empty;
             if ((organization == Organization.Null) || (organization == null))
             {
                 text = text + "Выберите старую управляющую компанию" + System.Environment.get_NewLine();
             }
             if ((organization2 == Organization.Null) || (organization2 == null))
             {
                 text = text + "Выберите новую управляющую компанию" + System.Environment.get_NewLine();
             }
             if ((((organization != null) && (organization2 != null)) && ((organization != Organization.Null) && (organization2 != Organization.Null))) && (organization.Id == organization2.Id))
             {
                 text = text + "Выберите разные управляющие компании" + System.Environment.get_NewLine();
             }
             if (this.dbFromDate.IsNull)
             {
                 text = text + "Введите дату смены управляющей компании" + System.Environment.get_NewLine();
             }
             if (this.tbAccountNumberSufix.get_Text().Trim() == string.Empty)
             {
                 text = text + "Введите символ для номера ЛС" + System.Environment.get_NewLine();
             }
             if (text != string.Empty)
             {
                 BalloonWindow.Show(this.btnComprasion, text);
             }
             else if ((selectedAddresses.get_Count() != 0) || (Messages.QuestionYesNo(this, "Вы не выбрали адреса!\nОперация будет произведена для всего адресного плана.\nВы уверены, что хотите продолжить?") == System.Windows.Forms.DialogResult.Yes))
             {
                 this.bsOldServices.Clear();
                 this.bsNewServices.Clear();
                 this.dgvServicesComparison.set_DataSource(null);
                 Area area = new Area();
                 area.SaveChanges();
                 area.SaveAddresses(selectedAddresses);
                 this.m_addresses = new ObjectList<LocalAddress>(selectedAddresses);
                 object[] objArray = new object[] { area, organization, organization2 };
                 this.workerCompareServices.RunWorkerAsync(objArray);
                 this.btnComprasion.set_Image(Resources.LOADING);
             }
         }
     }
 }
Пример #24
0
 public string CalcIndecation(string procName, System.DateTime startIndicationsDate, System.DateTime period, decimal countMonth, decimal countMonthAvg, System.DateTime programStartTime, Area area)
 {
     return new CalcAvgStartIndicationMapper().CalcIndecation(procName, startIndicationsDate, period, countMonth, countMonthAvg, programStartTime, area);
 }
Пример #25
0
 private void btnRight_Click(object sender, System.EventArgs e)
 {
     if (!this.bwArea.get_IsBusy())
     {
         this.areaAddressesTreeDest.AddTree(this.areaAddressesTreeSource);
         this.m_SelectedByUserArea = Area.Null;
     }
 }
Пример #26
0
 public static ObjectList<ServiceOld> GetUserServicesBy(ObjectList<Organization> organizations, ObjectList<ServiceTypeOld> serviceTypes, Area area, System.DateTime date)
 {
     return Mappers.ServiceOldMapper.GetUserServicesBy(organizations, serviceTypes, area, date);
 }
Пример #27
0
 private void UpdateAreaAddresses()
 {
     this.tsbSearch.set_Image(Resources.LOADING);
     if (this.addressesSelectControl1.getChecked)
     {
         this.m_SelectedByUserArea = this.addressesSelectControl1.getAreas ?? Area.Null;
         if (this.m_SelectedByUserArea == Area.Null)
         {
             AreaGroup group = this.addressesSelectControl1.getParamentsGroups ?? AreaGroup.Null;
             if (group == AreaGroup.Null)
             {
                 return;
             }
             this.bwArea.RunWorkerAsync(group);
         }
         if ((this.m_SelectedByUserArea != Area.Null) && !this.bwArea.get_IsBusy())
         {
             this.bwArea.RunWorkerAsync(this.m_SelectedByUserArea);
         }
     }
     else
     {
         this.m_SelectedByUserArea = Area.Null;
         this.addressesSearch = (ObjectList<LocalAddress>) (this.addressesSelectControl1.getParametrsNumbers ?? null);
         if ((this.addressesSearch != null) && !this.bwArea.get_IsBusy())
         {
             this.bwArea.RunWorkerAsync(this.addressesSearch);
         }
     }
 }
Пример #28
0
 public ObjectList<ServiceOld> GetByParametrs(Area area)
 {
     return Mappers.ServiceOldMapper.FindBy(area.Id, this);
 }
 public void ServicesTableUpdate(ObjectList<Service> services, bool loadNewRateColumn, System.Data.DataTable m_dtSerficeNormTypes, System.Data.DataTable m_dtSerficeNormTypesByProperty, Organization m_provider, Organization m_resource, Organization m_holder, ServiceType m_serviceType, bool m_isSeason, bool m_isOpenServicesForArea, Area m_area, System.Data.DataTable m_dtCanonicalProperties, bool m_isOpen, System.DateTime m_dateLastTariff, int m_houseYear)
 {
     this.bsServices.set_DataSource(services);
     this.dtServiceNormTypes.Rows.Clear();
     this.dtServiceNormTypesByProperty.Rows.Clear();
     this.CreatedColumnTempTables();
     if (loadNewRateColumn)
     {
         this.NewRateColumn.set_Visible(true);
         this.Selected.set_Visible(false);
         this.tsbFindLike.set_Visible(true);
         this.tsbSelectedAll.set_Visible(false);
         this.SelectedServiceNormType.set_Visible(false);
         this.SelectedServiceNormTypeByProperty.set_Visible(false);
         if ((m_dtSerficeNormTypesByProperty != null) && (m_dtSerficeNormTypesByProperty.Rows.get_Count() != 0))
         {
             this.dtServiceNormTypesByProperty = m_dtSerficeNormTypesByProperty;
         }
         if ((m_dtSerficeNormTypes != null) && (m_dtSerficeNormTypes.Columns.get_Count() != 0))
         {
             this.dtServiceNormTypes = m_dtSerficeNormTypes;
         }
     }
     else
     {
         this.NewRateColumn.set_Visible(false);
         this.Selected.set_Visible(true);
         this.SelectedServiceNormType.set_Visible(true);
         this.SelectedServiceNormTypeByProperty.set_Visible(true);
         this.tsbFindLike.set_Visible(false);
         this.NewValueApartmentProperty.set_Visible(false);
         this.NewValueNorm.set_Visible(false);
         this.dgvServices.set_SelectionMode(System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect);
         this.dgvServiceNormTypes.set_SelectionMode(System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect);
         this.dgvServiceNormTypesByProperties.set_SelectionMode(System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect);
         this.tsbSelectedAll.set_Visible(true);
         this.dtServiceNormTypesByPropertySave = m_dtSerficeNormTypesByProperty;
         this.dtServiceNormTypesSave = m_dtSerficeNormTypes;
         this.tsbFindByTypeService.set_Visible(false);
         this.houseYear = m_houseYear;
         this.arrangeColorinfForDGCSerivces();
     }
     this.provider = m_provider;
     this.resource = m_resource;
     this.holder = m_holder;
     this.serviceType = m_serviceType;
     this.isSeason = m_isSeason;
     this.isOpenServicesForArea = m_isOpenServicesForArea;
     this.area = m_area;
     this.dtCanonicalProperties = m_dtCanonicalProperties;
     this.isOpen = m_isOpen;
     this.dateLastTariff = m_dateLastTariff;
     this.dgvServices.Sort(this.dgvServices.Columns.get_Item("TypeName"), ListSortDirection.Ascending);
     this.dgvServices.Sort(this.dgvServices.Columns.get_Item("lastRateDataGridViewTextBoxColumn"), ListSortDirection.Descending);
     this.UpdateServiceNorm((this.bsServices.get_Current() as Service) ?? Service.Null, true);
 }
Пример #30
0
 private void InitializeComponent()
 {
     this.components = new Container();
     Area area = new Area();
     System.Windows.Forms.DataGridViewCellStyle style = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle style6 = new System.Windows.Forms.DataGridViewCellStyle();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(ReportsMainForm));
     this.m_WorkerThread = new BackgroundWorker();
     this.timerUpdate = new System.Windows.Forms.Timer(this.components);
     this.m_SearchWorker = new BackgroundWorker();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.reportsTree = new ReportsTree();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.panelParameters = new System.Windows.Forms.Panel();
     this.panelApartmentArea = new System.Windows.Forms.Panel();
     this.numApartmentArea = new System.Windows.Forms.NumericUpDown();
     this.lbApartmentArea = new System.Windows.Forms.Label();
     this.panelReportService = new System.Windows.Forms.Panel();
     this.gbReportService = new System.Windows.Forms.GroupBox();
     this.labelRunDate = new System.Windows.Forms.Label();
     this.dbDatePlanned = new DateBox();
     this.btnShowSheduler = new System.Windows.Forms.Button();
     this.btnAddSheduler = new System.Windows.Forms.Button();
     this.btnAddReport = new System.Windows.Forms.Button();
     this.panelWithRenderParametres = new System.Windows.Forms.Panel();
     this.cbWithRenderParametres = new System.Windows.Forms.CheckBox();
     this.panelTextParameter = new System.Windows.Forms.Panel();
     this.tbTextParameter = new System.Windows.Forms.TextBox();
     this.lbTextParameter = new System.Windows.Forms.Label();
     this.panelSelectCityBorough = new System.Windows.Forms.Panel();
     this.selectCityBoroughs = new SelectFasetData();
     this.lbCityRegion = new System.Windows.Forms.Label();
     this.panelSelectAccountPropertyFaset = new System.Windows.Forms.Panel();
     this.selectAccountPropertyFaset = new SelectFasetData();
     this.lbAccountProperty = new System.Windows.Forms.Label();
     this.panelPaymentAgents = new System.Windows.Forms.Panel();
     this.selectPaymentAgents = new SelectOrgs();
     this.label1 = new System.Windows.Forms.Label();
     this.panelSelectFasetFilter = new System.Windows.Forms.Panel();
     this.selectFilterFasetItems = new SelectFasetDatas();
     this.lbFilterFaset = new System.Windows.Forms.Label();
     this.panelSelectBank = new System.Windows.Forms.Panel();
     this.selectBank = new SelectBenefitBanks();
     this.lbBank = new System.Windows.Forms.Label();
     this.panelChbxWithoutClosesApartments = new System.Windows.Forms.Panel();
     this.chbxWithoutClosesApartments = new System.Windows.Forms.CheckBox();
     this.panelChbxWithoutBankrupt = new System.Windows.Forms.Panel();
     this.chbxWithoutBankrupt = new System.Windows.Forms.CheckBox();
     this.panelNumMinSumm = new System.Windows.Forms.Panel();
     this.numMinSumm = new System.Windows.Forms.NumericUpDown();
     this.lbMinSumm = new System.Windows.Forms.Label();
     this.panelCbxTerminals = new System.Windows.Forms.Panel();
     this.cbxTerminals = new System.Windows.Forms.ComboBox();
     this.lbTerminals = new System.Windows.Forms.Label();
     this.panelSelectPaymentAgentTypes = new System.Windows.Forms.Panel();
     this.selectPaymentAgentTypes = new SelectFasetData();
     this.lbPaymentAgentTypes = new System.Windows.Forms.Label();
     this.panelHouseTypes = new System.Windows.Forms.Panel();
     this.selectHouseTypes = new SelectFasetDatas();
     this.lbHouseTypes = new System.Windows.Forms.Label();
     this.panelCbxPaymentTypes = new System.Windows.Forms.Panel();
     this.cbxPaymentTypes = new System.Windows.Forms.ComboBox();
     this.lbPaymentTypes = new System.Windows.Forms.Label();
     this.panelCbxCalcOperationGroups = new System.Windows.Forms.Panel();
     this.cbxCalcOperationGroups = new System.Windows.Forms.ComboBox();
     this.bsCalcOperationGroups = new System.Windows.Forms.BindingSource(this.components);
     this.lbCalcOperGroup = new System.Windows.Forms.Label();
     this.panelSelectRecalcReason = new System.Windows.Forms.Panel();
     this.selectRecalcReason = new SelectFasetDatas();
     this.lbRecalcReason = new System.Windows.Forms.Label();
     this.panelCbIsDebt = new System.Windows.Forms.Panel();
     this.cbIsDebt = new System.Windows.Forms.CheckBox();
     this.panelCbExistsBenefitDiff = new System.Windows.Forms.Panel();
     this.cbExistsBenefitDiff = new System.Windows.Forms.CheckBox();
     this.panelSelectBenefits = new System.Windows.Forms.Panel();
     this.lbBenefits = new System.Windows.Forms.Label();
     this.selectBenefits = new SelectBenefits();
     this.panelSelectApartmentTypes = new System.Windows.Forms.Panel();
     this.selectApartmentTypes = new SelectFasetDatas();
     this.lbApartmentTypes = new System.Windows.Forms.Label();
     this.panelSelectAddresses = new System.Windows.Forms.Panel();
     this.selectAddresses = new SelectAddresses();
     this.lbAddresses = new System.Windows.Forms.Label();
     this.panelSelectConvenienceTypes = new System.Windows.Forms.Panel();
     this.selectConvenienceTypes = new SelectFasetDatas();
     this.lbConvenienceTypes = new System.Windows.Forms.Label();
     this.panelSelectCanonicalServices = new System.Windows.Forms.Panel();
     this.selectCanonicalServices = new SelectCanonicalServices();
     this.lbCanonicalServices = new System.Windows.Forms.Label();
     this.panelSelectServices = new System.Windows.Forms.Panel();
     this.selectServices = new SelectServicesFilter();
     this.lbServices = new System.Windows.Forms.Label();
     this.panelSelectServiceTypes = new System.Windows.Forms.Panel();
     this.selectServiceTypes = new SelectServiceTypes();
     this.lbServiceTypes = new System.Windows.Forms.Label();
     this.panelSelectOrgsCashlessTransferers = new System.Windows.Forms.Panel();
     this.selectOrgsCashlessTransferers = new SelectOrgs();
     this.lbOrgsCashlessTransferers1 = new System.Windows.Forms.Label();
     this.lbOrgsCashlessTransferers2 = new System.Windows.Forms.Label();
     this.panelSelectOrgsResourceProviders = new System.Windows.Forms.Panel();
     this.selectOrgsResourceProviders = new SelectOrgs();
     this.lbOrgsResourceProviders = new System.Windows.Forms.Label();
     this.panelSelectOrgsServiceProviders = new System.Windows.Forms.Panel();
     this.selectOrgsServiceProviders = new SelectOrgs();
     this.lbOrgsServiceProviders = new System.Windows.Forms.Label();
     this.panelSelectOrgsAccountHouseHolders = new System.Windows.Forms.Panel();
     this.selectOrgsAccountHouseHolders = new SelectOrgs();
     this.lbOrgsAccountHouseHolders = new System.Windows.Forms.Label();
     this.panelSelectOrgsServiceHouseHolders = new System.Windows.Forms.Panel();
     this.lbOrgsServiceHouseHolders = new System.Windows.Forms.Label();
     this.selectOrgsServiceHouseHolders = new SelectOrgs();
     this.panelSelectOrgsHouseHolders = new System.Windows.Forms.Panel();
     this.selectOrgsHouseHolders = new SelectOrgs();
     this.lbOrgsHouseHolders = new System.Windows.Forms.Label();
     this.panelDatePeriod = new System.Windows.Forms.Panel();
     this.lbDatePeriod = new System.Windows.Forms.Label();
     this.datePeriod = new DatePeriod();
     this.panelPeriod = new System.Windows.Forms.Panel();
     this.periodsSelector = new PeriodsSelector();
     this.lbPeriod = new System.Windows.Forms.Label();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.помощьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.оСистемеToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.настройкиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.panel2 = new System.Windows.Forms.Panel();
     this.scReport = new System.Windows.Forms.SplitContainer();
     this.dgvReports = new System.Windows.Forms.DataGridView();
     this.CheckPrint = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.ReportTemplateName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.statusDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.createdDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.UserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.StartTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FinishTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.PlannedDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsReports = new System.Windows.Forms.BindingSource(this.components);
     this.dgvReportParameters = new System.Windows.Forms.DataGridView();
     this.printNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.printValueDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsReportParameters = new System.Windows.Forms.BindingSource(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.tsReports = new System.Windows.Forms.ToolStrip();
     this.tsbRunReport = new System.Windows.Forms.ToolStripButton();
     this.tslbRunReportImageLoading = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.tsbDesigner = new System.Windows.Forms.ToolStripButton();
     this.tSepar = new System.Windows.Forms.ToolStripSeparator();
     this.btnRun = new System.Windows.Forms.ToolStripButton();
     this.m_RollingImage = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.tbsStart = new System.Windows.Forms.ToolStripButton();
     this.tslStart = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.tsbSelectAll = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.tsbCleanAll = new System.Windows.Forms.ToolStripButton();
     this.tsbPrint = new System.Windows.Forms.ToolStripButton();
     this.m_RollingImagePrint = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.tsbDeleteReport = new System.Windows.Forms.ToolStripButton();
     this.tsbDeleteReportsImage = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.tsbHorizontal = new System.Windows.Forms.ToolStripButton();
     this.tsbVertical = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.dbRepresentPeriodDate = new DatePeriod();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.tsbRepresentMyReport = new System.Windows.Forms.ToolStripButton();
     this.tsbRepresentAllReport = new System.Windows.Forms.ToolStripButton();
     this.sfdDBF = new System.Windows.Forms.SaveFileDialog();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.sfdExcel = new System.Windows.Forms.SaveFileDialog();
     this.bsReportTemplates = new System.Windows.Forms.BindingSource(this.components);
     this.erValidateRoles = new System.Windows.Forms.ErrorProvider(this.components);
     this.passporterServiceForSn1 = new PassporterServiceForSn();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.panelParameters.SuspendLayout();
     this.panelApartmentArea.SuspendLayout();
     this.numApartmentArea.BeginInit();
     this.panelReportService.SuspendLayout();
     this.gbReportService.SuspendLayout();
     this.panelWithRenderParametres.SuspendLayout();
     this.panelTextParameter.SuspendLayout();
     this.panelSelectCityBorough.SuspendLayout();
     this.panelSelectAccountPropertyFaset.SuspendLayout();
     this.panelPaymentAgents.SuspendLayout();
     this.panelSelectFasetFilter.SuspendLayout();
     this.panelSelectBank.SuspendLayout();
     this.panelChbxWithoutClosesApartments.SuspendLayout();
     this.panelChbxWithoutBankrupt.SuspendLayout();
     this.panelNumMinSumm.SuspendLayout();
     this.numMinSumm.BeginInit();
     this.panelCbxTerminals.SuspendLayout();
     this.panelSelectPaymentAgentTypes.SuspendLayout();
     this.panelHouseTypes.SuspendLayout();
     this.panelCbxPaymentTypes.SuspendLayout();
     this.panelCbxCalcOperationGroups.SuspendLayout();
     this.bsCalcOperationGroups.BeginInit();
     this.panelSelectRecalcReason.SuspendLayout();
     this.panelCbIsDebt.SuspendLayout();
     this.panelCbExistsBenefitDiff.SuspendLayout();
     this.panelSelectBenefits.SuspendLayout();
     this.panelSelectApartmentTypes.SuspendLayout();
     this.panelSelectAddresses.SuspendLayout();
     this.panelSelectConvenienceTypes.SuspendLayout();
     this.panelSelectCanonicalServices.SuspendLayout();
     this.panelSelectServices.SuspendLayout();
     this.panelSelectServiceTypes.SuspendLayout();
     this.panelSelectOrgsCashlessTransferers.SuspendLayout();
     this.panelSelectOrgsResourceProviders.SuspendLayout();
     this.panelSelectOrgsServiceProviders.SuspendLayout();
     this.panelSelectOrgsAccountHouseHolders.SuspendLayout();
     this.panelSelectOrgsServiceHouseHolders.SuspendLayout();
     this.panelSelectOrgsHouseHolders.SuspendLayout();
     this.panelDatePeriod.SuspendLayout();
     this.panelPeriod.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.scReport.Panel1.SuspendLayout();
     this.scReport.Panel2.SuspendLayout();
     this.scReport.SuspendLayout();
     this.dgvReports.BeginInit();
     this.bsReports.BeginInit();
     this.dgvReportParameters.BeginInit();
     this.bsReportParameters.BeginInit();
     this.panel1.SuspendLayout();
     this.tsReports.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.bsReportTemplates.BeginInit();
     this.erValidateRoles.BeginInit();
     base.SuspendLayout();
     this.m_WorkerThread.set_WorkerReportsProgress(true);
     this.m_WorkerThread.set_WorkerSupportsCancellation(true);
     this.timerUpdate.set_Interval(0x3a98);
     this.timerUpdate.add_Tick(new System.EventHandler(this.timerUpdate_Tick));
     this.m_SearchWorker.set_WorkerSupportsCancellation(true);
     this.m_SearchWorker.add_DoWork(new DoWorkEventHandler(this.m_SearchWorker_DoWork));
     this.m_SearchWorker.add_RunWorkerCompleted(new RunWorkerCompletedEventHandler(this.m_SearchWorker_RunWorkerCompleted));
     this.splitContainer1.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.splitContainer1.set_Location(new System.Drawing.Point(0, 0));
     this.splitContainer1.set_Name("splitContainer1");
     this.splitContainer1.Panel1.Controls.Add(this.reportsTree);
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
     this.splitContainer1.set_Size(new System.Drawing.Size(0x504, 0x36e));
     this.splitContainer1.set_SplitterDistance(0xe5);
     this.splitContainer1.set_TabIndex(0);
     this.reportsTree.set_BorderStyle(System.Windows.Forms.BorderStyle.FixedSingle);
     this.reportsTree.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.reportsTree.set_HideSelection(false);
     this.reportsTree.set_Location(new System.Drawing.Point(0, 0));
     this.reportsTree.set_Name("reportsTree");
     this.reportsTree.set_Size(new System.Drawing.Size(0xe5, 0x36e));
     this.reportsTree.set_TabIndex(0);
     this.reportsTree.add_BeforeCheck(new System.Windows.Forms.TreeViewCancelEventHandler(this.reportsTree_BeforeCheck));
     this.reportsTree.add_BeforeSelect(new System.Windows.Forms.TreeViewCancelEventHandler(this.reportsTree_BeforeSelect));
     this.reportsTree.add_AfterSelect(new System.Windows.Forms.TreeViewEventHandler(this.reportsTree_AfterSelect));
     this.reportsTree.add_KeyUp(new System.Windows.Forms.KeyEventHandler(this.reportsTree_KeyUp));
     this.splitContainer2.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.splitContainer2.set_Location(new System.Drawing.Point(0, 0));
     this.splitContainer2.set_Name("splitContainer2");
     this.splitContainer2.set_Orientation(System.Windows.Forms.Orientation.Horizontal);
     this.splitContainer2.Panel1.set_AutoScroll(true);
     this.splitContainer2.Panel1.Controls.Add(this.panelParameters);
     this.splitContainer2.Panel1.Controls.Add(this.menuStrip1);
     this.splitContainer2.Panel2.Controls.Add(this.panel2);
     this.splitContainer2.set_Size(new System.Drawing.Size(0x41b, 0x36e));
     this.splitContainer2.set_SplitterDistance(0x1dd);
     this.splitContainer2.set_TabIndex(0x52);
     this.panelParameters.set_AutoSize(true);
     this.panelParameters.Controls.Add(this.panelApartmentArea);
     this.panelParameters.Controls.Add(this.panelReportService);
     this.panelParameters.Controls.Add(this.panelWithRenderParametres);
     this.panelParameters.Controls.Add(this.panelTextParameter);
     this.panelParameters.Controls.Add(this.panelSelectCityBorough);
     this.panelParameters.Controls.Add(this.panelSelectAccountPropertyFaset);
     this.panelParameters.Controls.Add(this.panelPaymentAgents);
     this.panelParameters.Controls.Add(this.panelSelectFasetFilter);
     this.panelParameters.Controls.Add(this.panelSelectBank);
     this.panelParameters.Controls.Add(this.panelChbxWithoutClosesApartments);
     this.panelParameters.Controls.Add(this.panelChbxWithoutBankrupt);
     this.panelParameters.Controls.Add(this.panelNumMinSumm);
     this.panelParameters.Controls.Add(this.panelCbxTerminals);
     this.panelParameters.Controls.Add(this.panelSelectPaymentAgentTypes);
     this.panelParameters.Controls.Add(this.panelHouseTypes);
     this.panelParameters.Controls.Add(this.panelCbxPaymentTypes);
     this.panelParameters.Controls.Add(this.panelCbxCalcOperationGroups);
     this.panelParameters.Controls.Add(this.panelSelectRecalcReason);
     this.panelParameters.Controls.Add(this.panelCbIsDebt);
     this.panelParameters.Controls.Add(this.panelCbExistsBenefitDiff);
     this.panelParameters.Controls.Add(this.panelSelectBenefits);
     this.panelParameters.Controls.Add(this.panelSelectApartmentTypes);
     this.panelParameters.Controls.Add(this.panelSelectAddresses);
     this.panelParameters.Controls.Add(this.panelSelectConvenienceTypes);
     this.panelParameters.Controls.Add(this.panelSelectCanonicalServices);
     this.panelParameters.Controls.Add(this.panelSelectServices);
     this.panelParameters.Controls.Add(this.panelSelectServiceTypes);
     this.panelParameters.Controls.Add(this.panelSelectOrgsCashlessTransferers);
     this.panelParameters.Controls.Add(this.panelSelectOrgsResourceProviders);
     this.panelParameters.Controls.Add(this.panelSelectOrgsServiceProviders);
     this.panelParameters.Controls.Add(this.panelSelectOrgsAccountHouseHolders);
     this.panelParameters.Controls.Add(this.panelSelectOrgsServiceHouseHolders);
     this.panelParameters.Controls.Add(this.panelSelectOrgsHouseHolders);
     this.panelParameters.Controls.Add(this.panelDatePeriod);
     this.panelParameters.Controls.Add(this.panelPeriod);
     this.panelParameters.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelParameters.set_Location(new System.Drawing.Point(0, 0x18));
     this.panelParameters.set_Name("panelParameters");
     this.panelParameters.set_Padding(new System.Windows.Forms.Padding(0, 0, 3, 0));
     this.panelParameters.set_Size(new System.Drawing.Size(0x40a, 950));
     this.panelParameters.set_TabIndex(0x47);
     this.panelApartmentArea.Controls.Add(this.numApartmentArea);
     this.panelApartmentArea.Controls.Add(this.lbApartmentArea);
     this.panelApartmentArea.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelApartmentArea.set_Location(new System.Drawing.Point(0, 0x39c));
     this.panelApartmentArea.set_Name("panelApartmentArea");
     this.panelApartmentArea.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelApartmentArea.set_TabIndex(0x84);
     this.numApartmentArea.set_DecimalPlaces(3);
     this.numApartmentArea.set_Location(new System.Drawing.Point(0x8a, 3));
     int[] numArray = new int[4];
     numArray[0] = 0x3e8;
     this.numApartmentArea.set_Maximum(new decimal(numArray));
     this.numApartmentArea.set_Name("numApartmentArea");
     this.numApartmentArea.set_Size(new System.Drawing.Size(0x40, 20));
     this.numApartmentArea.set_TabIndex(0x5d);
     this.lbApartmentArea.set_AutoSize(true);
     this.lbApartmentArea.set_Location(new System.Drawing.Point(11, 6));
     this.lbApartmentArea.set_Name("lbApartmentArea");
     this.lbApartmentArea.set_Size(new System.Drawing.Size(0x36, 13));
     this.lbApartmentArea.set_TabIndex(0x5c);
     this.lbApartmentArea.set_Text("Площадь");
     this.panelReportService.Controls.Add(this.gbReportService);
     this.panelReportService.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelReportService.set_Location(new System.Drawing.Point(0, 0x35a));
     this.panelReportService.set_Name("panelReportService");
     this.panelReportService.set_Size(new System.Drawing.Size(0x407, 0x42));
     this.panelReportService.set_TabIndex(130);
     this.gbReportService.Controls.Add(this.labelRunDate);
     this.gbReportService.Controls.Add(this.dbDatePlanned);
     this.gbReportService.Controls.Add(this.btnShowSheduler);
     this.gbReportService.Controls.Add(this.btnAddSheduler);
     this.gbReportService.Controls.Add(this.btnAddReport);
     this.gbReportService.set_Location(new System.Drawing.Point(13, 6));
     this.gbReportService.set_Name("gbReportService");
     this.gbReportService.set_Size(new System.Drawing.Size(0x3f6, 0x2e));
     this.gbReportService.set_TabIndex(0x52);
     this.gbReportService.set_TabStop(false);
     this.gbReportService.set_Text("Для сервиса выполнения отчётов");
     this.labelRunDate.set_AutoSize(true);
     this.labelRunDate.set_Location(new System.Drawing.Point(6, 0x16));
     this.labelRunDate.set_Name("labelRunDate");
     this.labelRunDate.set_Size(new System.Drawing.Size(0x88, 13));
     this.labelRunDate.set_TabIndex(0x35);
     this.labelRunDate.set_Text("Дата начала выполнения");
     this.labelRunDate.add_Click(new System.EventHandler(this.labelRunDate_Click));
     this.dbDatePlanned.AttachToPeriod = false;
     this.dbDatePlanned.AttachToPeriodEnd = false;
     this.dbDatePlanned.set_Location(new System.Drawing.Point(0x94, 0x13));
     this.dbDatePlanned.set_Mask("00/00/0000");
     this.dbDatePlanned.set_Name("dbDatePlanned");
     this.dbDatePlanned.set_Size(new System.Drawing.Size(0x48, 20));
     this.dbDatePlanned.set_TabIndex(11);
     this.btnShowSheduler.set_AutoSize(true);
     this.btnShowSheduler.set_Location(new System.Drawing.Point(0x1fa, 0x10));
     this.btnShowSheduler.set_Name("btnShowSheduler");
     this.btnShowSheduler.set_Size(new System.Drawing.Size(0x8a, 0x19));
     this.btnShowSheduler.set_TabIndex(14);
     this.btnShowSheduler.set_Text("Показать планировщик");
     this.btnShowSheduler.set_UseVisualStyleBackColor(true);
     this.btnShowSheduler.add_Click(new System.EventHandler(this.btnShowSheduler_Click));
     this.btnAddSheduler.set_AutoSize(true);
     this.btnAddSheduler.set_Enabled(false);
     this.btnAddSheduler.set_Location(new System.Drawing.Point(0x160, 0x10));
     this.btnAddSheduler.set_Name("btnAddSheduler");
     this.btnAddSheduler.set_Size(new System.Drawing.Size(0x94, 0x19));
     this.btnAddSheduler.set_TabIndex(14);
     this.btnAddSheduler.set_Text("Добавить в планировщик");
     this.btnAddSheduler.set_UseVisualStyleBackColor(true);
     this.btnAddSheduler.add_Click(new System.EventHandler(this.btnAddSheduler_Click));
     this.btnAddReport.set_AutoSize(true);
     this.btnAddReport.set_Enabled(false);
     this.btnAddReport.set_Location(new System.Drawing.Point(0xe2, 0x10));
     this.btnAddReport.set_Name("btnAddReport");
     this.btnAddReport.set_Size(new System.Drawing.Size(120, 0x19));
     this.btnAddReport.set_TabIndex(14);
     this.btnAddReport.set_Text("Добавить в очередь");
     this.btnAddReport.set_UseVisualStyleBackColor(true);
     this.btnAddReport.add_Click(new System.EventHandler(this.btnAddReport_Click));
     this.panelWithRenderParametres.Controls.Add(this.cbWithRenderParametres);
     this.panelWithRenderParametres.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelWithRenderParametres.set_Location(new System.Drawing.Point(0, 0x340));
     this.panelWithRenderParametres.set_Name("panelWithRenderParametres");
     this.panelWithRenderParametres.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelWithRenderParametres.set_TabIndex(0x7f);
     this.cbWithRenderParametres.set_AutoSize(true);
     this.cbWithRenderParametres.set_Location(new System.Drawing.Point(14, 6));
     this.cbWithRenderParametres.set_Name("cbWithRenderParametres");
     this.cbWithRenderParametres.set_Size(new System.Drawing.Size(0xbd, 0x11));
     this.cbWithRenderParametres.set_TabIndex(0x57);
     this.cbWithRenderParametres.set_Text("С дополнительными фильтрами");
     this.cbWithRenderParametres.set_UseVisualStyleBackColor(true);
     this.panelTextParameter.Controls.Add(this.tbTextParameter);
     this.panelTextParameter.Controls.Add(this.lbTextParameter);
     this.panelTextParameter.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelTextParameter.set_Location(new System.Drawing.Point(0, 0x326));
     this.panelTextParameter.set_Name("panelTextParameter");
     this.panelTextParameter.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelTextParameter.set_TabIndex(0x83);
     this.tbTextParameter.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.tbTextParameter.set_Location(new System.Drawing.Point(0x8a, 3));
     this.tbTextParameter.set_Name("tbTextParameter");
     this.tbTextParameter.set_Size(new System.Drawing.Size(0x379, 20));
     this.tbTextParameter.set_TabIndex(0x5d);
     this.lbTextParameter.set_Location(new System.Drawing.Point(11, 6));
     this.lbTextParameter.set_MaximumSize(new System.Drawing.Size(120, 13));
     this.lbTextParameter.set_Name("lbTextParameter");
     this.lbTextParameter.set_Size(new System.Drawing.Size(120, 13));
     this.lbTextParameter.set_TabIndex(0x5c);
     this.lbTextParameter.set_Text("Наименование");
     this.panelSelectCityBorough.Controls.Add(this.selectCityBoroughs);
     this.panelSelectCityBorough.Controls.Add(this.lbCityRegion);
     this.panelSelectCityBorough.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectCityBorough.set_Location(new System.Drawing.Point(0, 780));
     this.panelSelectCityBorough.set_Name("panelSelectCityBorough");
     this.panelSelectCityBorough.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectCityBorough.set_TabIndex(0x86);
     this.selectCityBoroughs.set_FormattingEnabled(true);
     this.selectCityBoroughs.set_Location(new System.Drawing.Point(0x89, 3));
     this.selectCityBoroughs.set_Name("selectCityBoroughs");
     this.selectCityBoroughs.set_Size(new System.Drawing.Size(0x141, 0x15));
     this.selectCityBoroughs.set_Sorted(true);
     this.selectCityBoroughs.set_TabIndex(0x36);
     this.lbCityRegion.set_AutoSize(true);
     this.lbCityRegion.set_Location(new System.Drawing.Point(11, 6));
     this.lbCityRegion.set_Name("lbCityRegion");
     this.lbCityRegion.set_Size(new System.Drawing.Size(0x4c, 13));
     this.lbCityRegion.set_TabIndex(0x5c);
     this.lbCityRegion.set_Text("Район города");
     this.panelSelectAccountPropertyFaset.Controls.Add(this.selectAccountPropertyFaset);
     this.panelSelectAccountPropertyFaset.Controls.Add(this.lbAccountProperty);
     this.panelSelectAccountPropertyFaset.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectAccountPropertyFaset.set_Location(new System.Drawing.Point(0, 0x2f2));
     this.panelSelectAccountPropertyFaset.set_Name("panelSelectAccountPropertyFaset");
     this.panelSelectAccountPropertyFaset.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectAccountPropertyFaset.set_TabIndex(0x81);
     this.selectAccountPropertyFaset.set_FormattingEnabled(true);
     this.selectAccountPropertyFaset.set_Location(new System.Drawing.Point(0x89, 3));
     this.selectAccountPropertyFaset.set_Name("selectAccountPropertyFaset");
     this.selectAccountPropertyFaset.set_Size(new System.Drawing.Size(0x141, 0x15));
     this.selectAccountPropertyFaset.set_Sorted(true);
     this.selectAccountPropertyFaset.set_TabIndex(0x36);
     this.lbAccountProperty.set_AutoSize(true);
     this.lbAccountProperty.set_Location(new System.Drawing.Point(11, 6));
     this.lbAccountProperty.set_Name("lbAccountProperty");
     this.lbAccountProperty.set_Size(new System.Drawing.Size(0x54, 13));
     this.lbAccountProperty.set_TabIndex(0x5c);
     this.lbAccountProperty.set_Text("Параметры ЛС");
     this.panelPaymentAgents.Controls.Add(this.selectPaymentAgents);
     this.panelPaymentAgents.Controls.Add(this.label1);
     this.panelPaymentAgents.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelPaymentAgents.set_Location(new System.Drawing.Point(0, 0x2d8));
     this.panelPaymentAgents.set_Name("panelPaymentAgents");
     this.panelPaymentAgents.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelPaymentAgents.set_TabIndex(0x83);
     this.selectPaymentAgents.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectPaymentAgents.IsByUser = false;
     this.selectPaymentAgents.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectPaymentAgents.set_Name("selectPaymentAgents");
     this.selectPaymentAgents.SetFilter = null;
     this.selectPaymentAgents.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectPaymentAgents.set_TabIndex(0x5e);
     this.label1.set_AutoSize(true);
     this.label1.set_Location(new System.Drawing.Point(11, 6));
     this.label1.set_Name("label1");
     this.label1.set_Size(new System.Drawing.Size(0x61, 13));
     this.label1.set_TabIndex(0x21);
     this.label1.set_Text("Платежный агент");
     this.panelSelectFasetFilter.Controls.Add(this.selectFilterFasetItems);
     this.panelSelectFasetFilter.Controls.Add(this.lbFilterFaset);
     this.panelSelectFasetFilter.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectFasetFilter.set_Location(new System.Drawing.Point(0, 0x2be));
     this.panelSelectFasetFilter.set_Name("panelSelectFasetFilter");
     this.panelSelectFasetFilter.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectFasetFilter.set_TabIndex(130);
     this.selectFilterFasetItems.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectFilterFasetItems.set_Location(new System.Drawing.Point(0x89, 3));
     this.selectFilterFasetItems.set_Name("selectFilterFasetItems");
     this.selectFilterFasetItems.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectFilterFasetItems.set_TabIndex(0x5d);
     this.lbFilterFaset.set_Location(new System.Drawing.Point(11, 6));
     this.lbFilterFaset.set_MaximumSize(new System.Drawing.Size(120, 13));
     this.lbFilterFaset.set_Name("lbFilterFaset");
     this.lbFilterFaset.set_Size(new System.Drawing.Size(120, 13));
     this.lbFilterFaset.set_TabIndex(0x5c);
     this.lbFilterFaset.set_Text("Фасет");
     this.panelSelectBank.Controls.Add(this.selectBank);
     this.panelSelectBank.Controls.Add(this.lbBank);
     this.panelSelectBank.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectBank.set_Location(new System.Drawing.Point(0, 0x2a4));
     this.panelSelectBank.set_Name("panelSelectBank");
     this.panelSelectBank.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectBank.set_TabIndex(0x80);
     this.selectBank.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectBank.IsByUser = false;
     this.selectBank.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectBank.set_Name("selectBank");
     this.selectBank.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectBank.set_TabIndex(0x5b);
     this.lbBank.set_AutoSize(true);
     this.lbBank.set_Location(new System.Drawing.Point(11, 6));
     this.lbBank.set_Name("lbBank");
     this.lbBank.set_Size(new System.Drawing.Size(0x7b, 13));
     this.lbBank.set_TabIndex(90);
     this.lbBank.set_Text("Банк получателя льгот");
     this.panelChbxWithoutClosesApartments.Controls.Add(this.chbxWithoutClosesApartments);
     this.panelChbxWithoutClosesApartments.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelChbxWithoutClosesApartments.set_Location(new System.Drawing.Point(0, 650));
     this.panelChbxWithoutClosesApartments.set_Name("panelChbxWithoutClosesApartments");
     this.panelChbxWithoutClosesApartments.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelChbxWithoutClosesApartments.set_TabIndex(0x7f);
     this.chbxWithoutClosesApartments.set_AutoSize(true);
     this.chbxWithoutClosesApartments.set_Location(new System.Drawing.Point(14, 6));
     this.chbxWithoutClosesApartments.set_Name("chbxWithoutClosesApartments");
     this.chbxWithoutClosesApartments.set_Size(new System.Drawing.Size(0xea, 0x11));
     this.chbxWithoutClosesApartments.set_TabIndex(0x58);
     this.chbxWithoutClosesApartments.set_Text("Не учитывать закрытые паспорта жилья");
     this.chbxWithoutClosesApartments.set_UseVisualStyleBackColor(true);
     this.panelChbxWithoutBankrupt.Controls.Add(this.chbxWithoutBankrupt);
     this.panelChbxWithoutBankrupt.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelChbxWithoutBankrupt.set_Location(new System.Drawing.Point(0, 0x270));
     this.panelChbxWithoutBankrupt.set_Name("panelChbxWithoutBankrupt");
     this.panelChbxWithoutBankrupt.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelChbxWithoutBankrupt.set_TabIndex(0x7e);
     this.chbxWithoutBankrupt.set_AutoSize(true);
     this.chbxWithoutBankrupt.set_Location(new System.Drawing.Point(14, 6));
     this.chbxWithoutBankrupt.set_Name("chbxWithoutBankrupt");
     this.chbxWithoutBankrupt.set_Size(new System.Drawing.Size(0x97, 0x11));
     this.chbxWithoutBankrupt.set_TabIndex(0x57);
     this.chbxWithoutBankrupt.set_Text("Не учитывать банкротов");
     this.chbxWithoutBankrupt.set_UseVisualStyleBackColor(true);
     this.panelNumMinSumm.Controls.Add(this.numMinSumm);
     this.panelNumMinSumm.Controls.Add(this.lbMinSumm);
     this.panelNumMinSumm.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelNumMinSumm.set_Location(new System.Drawing.Point(0, 0x256));
     this.panelNumMinSumm.set_Name("panelNumMinSumm");
     this.panelNumMinSumm.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelNumMinSumm.set_TabIndex(0x7d);
     this.numMinSumm.set_Location(new System.Drawing.Point(0x89, 3));
     int[] numArray2 = new int[4];
     numArray2[0] = 0x540be400;
     numArray2[1] = 2;
     this.numMinSumm.set_Maximum(new decimal(numArray2));
     this.numMinSumm.set_Minimum(new decimal(new int[] { 0x540be400, 2, 0, -2147483648 }));
     this.numMinSumm.set_Name("numMinSumm");
     this.numMinSumm.set_Size(new System.Drawing.Size(0x40, 20));
     this.numMinSumm.set_TabIndex(0x40);
     int[] numArray3 = new int[4];
     numArray3[0] = 0x2710;
     this.numMinSumm.set_Value(new decimal(numArray3));
     this.lbMinSumm.set_AutoSize(true);
     this.lbMinSumm.set_Location(new System.Drawing.Point(11, 6));
     this.lbMinSumm.set_Name("lbMinSumm");
     this.lbMinSumm.set_Size(new System.Drawing.Size(0x44, 13));
     this.lbMinSumm.set_TabIndex(0x41);
     this.lbMinSumm.set_Text("Результат >");
     this.panelCbxTerminals.Controls.Add(this.cbxTerminals);
     this.panelCbxTerminals.Controls.Add(this.lbTerminals);
     this.panelCbxTerminals.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelCbxTerminals.set_Location(new System.Drawing.Point(0, 0x23c));
     this.panelCbxTerminals.set_Name("panelCbxTerminals");
     this.panelCbxTerminals.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelCbxTerminals.set_TabIndex(0x7c);
     this.cbxTerminals.set_FormattingEnabled(true);
     this.cbxTerminals.set_Location(new System.Drawing.Point(0x89, 3));
     this.cbxTerminals.set_Name("cbxTerminals");
     this.cbxTerminals.set_Size(new System.Drawing.Size(0x141, 0x15));
     this.cbxTerminals.set_TabIndex(0x48);
     this.lbTerminals.set_AutoSize(true);
     this.lbTerminals.set_Location(new System.Drawing.Point(11, 6));
     this.lbTerminals.set_Name("lbTerminals");
     this.lbTerminals.set_Size(new System.Drawing.Size(0x4c, 13));
     this.lbTerminals.set_TabIndex(0x49);
     this.lbTerminals.set_Text("Номер кассы");
     this.panelSelectPaymentAgentTypes.Controls.Add(this.selectPaymentAgentTypes);
     this.panelSelectPaymentAgentTypes.Controls.Add(this.lbPaymentAgentTypes);
     this.panelSelectPaymentAgentTypes.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectPaymentAgentTypes.set_Location(new System.Drawing.Point(0, 0x222));
     this.panelSelectPaymentAgentTypes.set_Name("panelSelectPaymentAgentTypes");
     this.panelSelectPaymentAgentTypes.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectPaymentAgentTypes.set_TabIndex(0x7b);
     this.selectPaymentAgentTypes.set_FormattingEnabled(true);
     this.selectPaymentAgentTypes.set_Location(new System.Drawing.Point(0x89, 2));
     this.selectPaymentAgentTypes.set_Name("selectPaymentAgentTypes");
     this.selectPaymentAgentTypes.set_Size(new System.Drawing.Size(0x141, 0x15));
     this.selectPaymentAgentTypes.set_Sorted(true);
     this.selectPaymentAgentTypes.set_TabIndex(0x47);
     this.lbPaymentAgentTypes.set_AutoSize(true);
     this.lbPaymentAgentTypes.set_Location(new System.Drawing.Point(11, 6));
     this.lbPaymentAgentTypes.set_Name("lbPaymentAgentTypes");
     this.lbPaymentAgentTypes.set_Size(new System.Drawing.Size(0x52, 13));
     this.lbPaymentAgentTypes.set_TabIndex(70);
     this.lbPaymentAgentTypes.set_Text("Режим работы");
     this.panelHouseTypes.Controls.Add(this.selectHouseTypes);
     this.panelHouseTypes.Controls.Add(this.lbHouseTypes);
     this.panelHouseTypes.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelHouseTypes.set_Location(new System.Drawing.Point(0, 520));
     this.panelHouseTypes.set_Name("panelHouseTypes");
     this.panelHouseTypes.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelHouseTypes.set_TabIndex(0x85);
     this.selectHouseTypes.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectHouseTypes.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectHouseTypes.set_Name("selectHouseTypes");
     this.selectHouseTypes.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectHouseTypes.set_TabIndex(7);
     this.lbHouseTypes.set_AutoSize(true);
     this.lbHouseTypes.set_Location(new System.Drawing.Point(11, 6));
     this.lbHouseTypes.set_Name("lbHouseTypes");
     this.lbHouseTypes.set_Size(new System.Drawing.Size(0x37, 13));
     this.lbHouseTypes.set_TabIndex(0x25);
     this.lbHouseTypes.set_Text("Тип дома");
     this.panelCbxPaymentTypes.Controls.Add(this.cbxPaymentTypes);
     this.panelCbxPaymentTypes.Controls.Add(this.lbPaymentTypes);
     this.panelCbxPaymentTypes.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelCbxPaymentTypes.set_Location(new System.Drawing.Point(0, 0x1ee));
     this.panelCbxPaymentTypes.set_Name("panelCbxPaymentTypes");
     this.panelCbxPaymentTypes.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelCbxPaymentTypes.set_TabIndex(0x7a);
     this.cbxPaymentTypes.set_FormattingEnabled(true);
     this.cbxPaymentTypes.Items.AddRange((object[]) new object[] { "Наличная оплата", "Пени (наличные)", "Безналичная оплата", "Пени (безналичные)", "Вся оплата", "Пени" });
     this.cbxPaymentTypes.set_Location(new System.Drawing.Point(0x89, 2));
     this.cbxPaymentTypes.set_Name("cbxPaymentTypes");
     this.cbxPaymentTypes.set_Size(new System.Drawing.Size(0x141, 0x15));
     this.cbxPaymentTypes.set_TabIndex(0x3e);
     this.lbPaymentTypes.set_AutoSize(true);
     this.lbPaymentTypes.set_Location(new System.Drawing.Point(11, 6));
     this.lbPaymentTypes.set_Name("lbPaymentTypes");
     this.lbPaymentTypes.set_Size(new System.Drawing.Size(0x42, 13));
     this.lbPaymentTypes.set_TabIndex(0x3f);
     this.lbPaymentTypes.set_Text("Тип оплаты");
     this.panelCbxCalcOperationGroups.Controls.Add(this.cbxCalcOperationGroups);
     this.panelCbxCalcOperationGroups.Controls.Add(this.lbCalcOperGroup);
     this.panelCbxCalcOperationGroups.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelCbxCalcOperationGroups.set_Location(new System.Drawing.Point(0, 0x1d4));
     this.panelCbxCalcOperationGroups.set_Name("panelCbxCalcOperationGroups");
     this.panelCbxCalcOperationGroups.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelCbxCalcOperationGroups.set_TabIndex(0x79);
     this.cbxCalcOperationGroups.set_DataSource(this.bsCalcOperationGroups);
     this.cbxCalcOperationGroups.set_FormattingEnabled(true);
     this.cbxCalcOperationGroups.set_Location(new System.Drawing.Point(0x89, 2));
     this.cbxCalcOperationGroups.set_Name("cbxCalcOperationGroups");
     this.cbxCalcOperationGroups.set_Size(new System.Drawing.Size(0x141, 0x15));
     this.cbxCalcOperationGroups.set_TabIndex(0x44);
     this.bsCalcOperationGroups.set_DataSource(typeof(CalcOperationGroup));
     this.lbCalcOperGroup.set_AutoSize(true);
     this.lbCalcOperGroup.set_Location(new System.Drawing.Point(11, 6));
     this.lbCalcOperGroup.set_Name("lbCalcOperGroup");
     this.lbCalcOperGroup.set_Size(new System.Drawing.Size(0x4d, 13));
     this.lbCalcOperGroup.set_TabIndex(0x45);
     this.lbCalcOperGroup.set_Text("Тип операции");
     this.panelSelectRecalcReason.Controls.Add(this.selectRecalcReason);
     this.panelSelectRecalcReason.Controls.Add(this.lbRecalcReason);
     this.panelSelectRecalcReason.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectRecalcReason.set_Location(new System.Drawing.Point(0, 0x1ba));
     this.panelSelectRecalcReason.set_Name("panelSelectRecalcReason");
     this.panelSelectRecalcReason.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectRecalcReason.set_TabIndex(110);
     this.selectRecalcReason.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectRecalcReason.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectRecalcReason.set_Name("selectRecalcReason");
     this.selectRecalcReason.set_Size(new System.Drawing.Size(0x37b, 0x17));
     this.selectRecalcReason.set_TabIndex(0x4a);
     this.lbRecalcReason.set_AutoSize(true);
     this.lbRecalcReason.set_Location(new System.Drawing.Point(11, 6));
     this.lbRecalcReason.set_Name("lbRecalcReason");
     this.lbRecalcReason.set_Size(new System.Drawing.Size(0x75, 13));
     this.lbRecalcReason.set_TabIndex(0x4b);
     this.lbRecalcReason.set_Text("Причина перерасчёта");
     this.panelCbIsDebt.Controls.Add(this.cbIsDebt);
     this.panelCbIsDebt.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelCbIsDebt.set_Location(new System.Drawing.Point(0, 0x1a0));
     this.panelCbIsDebt.set_Name("panelCbIsDebt");
     this.panelCbIsDebt.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelCbIsDebt.set_TabIndex(0x6d);
     this.cbIsDebt.set_AutoSize(true);
     this.cbIsDebt.set_Location(new System.Drawing.Point(14, 6));
     this.cbIsDebt.set_Name("cbIsDebt");
     this.cbIsDebt.set_Size(new System.Drawing.Size(0x8e, 0x11));
     this.cbIsDebt.set_TabIndex(12);
     this.cbIsDebt.set_Text("С разделением долгов");
     this.cbIsDebt.set_UseVisualStyleBackColor(true);
     this.panelCbExistsBenefitDiff.Controls.Add(this.cbExistsBenefitDiff);
     this.panelCbExistsBenefitDiff.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelCbExistsBenefitDiff.set_Location(new System.Drawing.Point(0, 390));
     this.panelCbExistsBenefitDiff.set_Name("panelCbExistsBenefitDiff");
     this.panelCbExistsBenefitDiff.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelCbExistsBenefitDiff.set_TabIndex(0x6c);
     this.cbExistsBenefitDiff.set_AutoSize(true);
     this.cbExistsBenefitDiff.set_Location(new System.Drawing.Point(14, 6));
     this.cbExistsBenefitDiff.set_Name("cbExistsBenefitDiff");
     this.cbExistsBenefitDiff.set_Size(new System.Drawing.Size(190, 0x11));
     this.cbExistsBenefitDiff.set_TabIndex(13);
     this.cbExistsBenefitDiff.set_Text("Исключать разночтения с КСЗН");
     this.cbExistsBenefitDiff.set_UseVisualStyleBackColor(true);
     this.panelSelectBenefits.Controls.Add(this.lbBenefits);
     this.panelSelectBenefits.Controls.Add(this.selectBenefits);
     this.panelSelectBenefits.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectBenefits.set_Location(new System.Drawing.Point(0, 0x16c));
     this.panelSelectBenefits.set_Name("panelSelectBenefits");
     this.panelSelectBenefits.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectBenefits.set_TabIndex(0x6b);
     this.lbBenefits.set_AutoSize(true);
     this.lbBenefits.set_Location(new System.Drawing.Point(11, 6));
     this.lbBenefits.set_Name("lbBenefits");
     this.lbBenefits.set_Size(new System.Drawing.Size(0x2b, 13));
     this.lbBenefits.set_TabIndex(0x27);
     this.lbBenefits.set_Text("Льгота");
     this.selectBenefits.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectBenefits.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectBenefits.set_Name("selectBenefits");
     this.selectBenefits.set_Size(new System.Drawing.Size(890, 20));
     this.selectBenefits.set_TabIndex(9);
     this.panelSelectApartmentTypes.Controls.Add(this.selectApartmentTypes);
     this.panelSelectApartmentTypes.Controls.Add(this.lbApartmentTypes);
     this.panelSelectApartmentTypes.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectApartmentTypes.set_Location(new System.Drawing.Point(0, 0x152));
     this.panelSelectApartmentTypes.set_Name("panelSelectApartmentTypes");
     this.panelSelectApartmentTypes.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectApartmentTypes.set_TabIndex(0x6a);
     this.selectApartmentTypes.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectApartmentTypes.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectApartmentTypes.set_Name("selectApartmentTypes");
     this.selectApartmentTypes.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectApartmentTypes.set_TabIndex(7);
     this.lbApartmentTypes.set_AutoSize(true);
     this.lbApartmentTypes.set_Location(new System.Drawing.Point(11, 6));
     this.lbApartmentTypes.set_Name("lbApartmentTypes");
     this.lbApartmentTypes.set_Size(new System.Drawing.Size(0x3d, 13));
     this.lbApartmentTypes.set_TabIndex(0x25);
     this.lbApartmentTypes.set_Text("Тип жилья");
     this.panelSelectAddresses.Controls.Add(this.selectAddresses);
     this.panelSelectAddresses.Controls.Add(this.lbAddresses);
     this.panelSelectAddresses.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectAddresses.set_Location(new System.Drawing.Point(0, 0x138));
     this.panelSelectAddresses.set_Name("panelSelectAddresses");
     this.panelSelectAddresses.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectAddresses.set_TabIndex(0x69);
     this.selectAddresses.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectAddresses.IsByUser = true;
     this.selectAddresses.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectAddresses.set_Name("selectAddresses");
     area.AreaGroupId = 0L;
     area.AreaGroupName = null;
     area.Id = 0L;
     area.IsDeleted = false;
     area.IsDirty = false;
     area.Name = "";
     area.ObjectWithIdType = null;
     area.StatusTemporary = 0;
     this.selectAddresses.SelectedArea = area;
     this.selectAddresses.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectAddresses.set_TabIndex(8);
     this.lbAddresses.set_AutoSize(true);
     this.lbAddresses.set_Location(new System.Drawing.Point(11, 6));
     this.lbAddresses.set_Name("lbAddresses");
     this.lbAddresses.set_Size(new System.Drawing.Size(0x2c, 13));
     this.lbAddresses.set_TabIndex(0x26);
     this.lbAddresses.set_Text("Адреса");
     this.panelSelectConvenienceTypes.Controls.Add(this.selectConvenienceTypes);
     this.panelSelectConvenienceTypes.Controls.Add(this.lbConvenienceTypes);
     this.panelSelectConvenienceTypes.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectConvenienceTypes.set_Location(new System.Drawing.Point(0, 0x11e));
     this.panelSelectConvenienceTypes.set_Name("panelSelectConvenienceTypes");
     this.panelSelectConvenienceTypes.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectConvenienceTypes.set_TabIndex(0x68);
     this.selectConvenienceTypes.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectConvenienceTypes.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectConvenienceTypes.set_Name("selectConvenienceTypes");
     this.selectConvenienceTypes.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectConvenienceTypes.set_TabIndex(0x3b);
     this.lbConvenienceTypes.set_AutoSize(true);
     this.lbConvenienceTypes.set_Location(new System.Drawing.Point(11, 6));
     this.lbConvenienceTypes.set_Name("lbConvenienceTypes");
     this.lbConvenienceTypes.set_Size(new System.Drawing.Size(0x59, 13));
     this.lbConvenienceTypes.set_TabIndex(0x3a);
     this.lbConvenienceTypes.set_Text("Тип благоуст-ва");
     this.panelSelectCanonicalServices.Controls.Add(this.selectCanonicalServices);
     this.panelSelectCanonicalServices.Controls.Add(this.lbCanonicalServices);
     this.panelSelectCanonicalServices.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectCanonicalServices.set_Location(new System.Drawing.Point(0, 260));
     this.panelSelectCanonicalServices.set_Name("panelSelectCanonicalServices");
     this.panelSelectCanonicalServices.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectCanonicalServices.set_TabIndex(0x67);
     this.selectCanonicalServices.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectCanonicalServices.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectCanonicalServices.set_Name("selectCanonicalServices");
     this.selectCanonicalServices.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectCanonicalServices.set_TabIndex(0x39);
     this.lbCanonicalServices.set_AutoSize(true);
     this.lbCanonicalServices.set_Location(new System.Drawing.Point(11, 6));
     this.lbCanonicalServices.set_Name("lbCanonicalServices");
     this.lbCanonicalServices.set_Size(new System.Drawing.Size(0x68, 13));
     this.lbCanonicalServices.set_TabIndex(0x38);
     this.lbCanonicalServices.set_Text("Благоуст-во услуги");
     this.panelSelectServices.Controls.Add(this.selectServices);
     this.panelSelectServices.Controls.Add(this.lbServices);
     this.panelSelectServices.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectServices.set_Location(new System.Drawing.Point(0, 0xea));
     this.panelSelectServices.set_Name("panelSelectServices");
     this.panelSelectServices.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectServices.set_TabIndex(0x66);
     this.selectServices.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectServices.IsByUser = false;
     this.selectServices.set_Location(new System.Drawing.Point(0x8b, 3));
     this.selectServices.set_Name("selectServices");
     this.selectServices.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectServices.set_TabIndex(0x25);
     this.lbServices.set_AutoSize(true);
     this.lbServices.set_Location(new System.Drawing.Point(11, 6));
     this.lbServices.set_Name("lbServices");
     this.lbServices.set_Size(new System.Drawing.Size(0x2b, 13));
     this.lbServices.set_TabIndex(0x24);
     this.lbServices.set_Text("Услуга");
     this.panelSelectServiceTypes.Controls.Add(this.selectServiceTypes);
     this.panelSelectServiceTypes.Controls.Add(this.lbServiceTypes);
     this.panelSelectServiceTypes.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectServiceTypes.set_Location(new System.Drawing.Point(0, 0xd0));
     this.panelSelectServiceTypes.set_Name("panelSelectServiceTypes");
     this.panelSelectServiceTypes.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectServiceTypes.set_TabIndex(0x65);
     this.selectServiceTypes.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectServiceTypes.IsByUser = true;
     this.selectServiceTypes.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectServiceTypes.set_Name("selectServiceTypes");
     this.selectServiceTypes.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectServiceTypes.set_TabIndex(5);
     this.lbServiceTypes.set_AutoSize(true);
     this.lbServiceTypes.set_Location(new System.Drawing.Point(11, 6));
     this.lbServiceTypes.set_Name("lbServiceTypes");
     this.lbServiceTypes.set_Size(new System.Drawing.Size(0x38, 13));
     this.lbServiceTypes.set_TabIndex(0x23);
     this.lbServiceTypes.set_Text("Тип услуг");
     this.panelSelectOrgsCashlessTransferers.Controls.Add(this.selectOrgsCashlessTransferers);
     this.panelSelectOrgsCashlessTransferers.Controls.Add(this.lbOrgsCashlessTransferers1);
     this.panelSelectOrgsCashlessTransferers.Controls.Add(this.lbOrgsCashlessTransferers2);
     this.panelSelectOrgsCashlessTransferers.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectOrgsCashlessTransferers.set_Location(new System.Drawing.Point(0, 0xb6));
     this.panelSelectOrgsCashlessTransferers.set_Name("panelSelectOrgsCashlessTransferers");
     this.panelSelectOrgsCashlessTransferers.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectOrgsCashlessTransferers.set_TabIndex(100);
     this.selectOrgsCashlessTransferers.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectOrgsCashlessTransferers.IsByUser = true;
     this.selectOrgsCashlessTransferers.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectOrgsCashlessTransferers.set_Name("selectOrgsCashlessTransferers");
     this.selectOrgsCashlessTransferers.SetFilter = null;
     this.selectOrgsCashlessTransferers.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectOrgsCashlessTransferers.set_TabIndex(80);
     this.lbOrgsCashlessTransferers1.set_AutoSize(true);
     this.lbOrgsCashlessTransferers1.set_Location(new System.Drawing.Point(11, 1));
     this.lbOrgsCashlessTransferers1.set_Name("lbOrgsCashlessTransferers1");
     this.lbOrgsCashlessTransferers1.set_Size(new System.Drawing.Size(0x83, 13));
     this.lbOrgsCashlessTransferers1.set_TabIndex(0x4e);
     this.lbOrgsCashlessTransferers1.set_Text("Организация по безнал.");
     this.lbOrgsCashlessTransferers2.set_AutoSize(true);
     this.lbOrgsCashlessTransferers2.set_Location(new System.Drawing.Point(10, 15));
     this.lbOrgsCashlessTransferers2.set_Name("lbOrgsCashlessTransferers2");
     this.lbOrgsCashlessTransferers2.set_Size(new System.Drawing.Size(0x56, 13));
     this.lbOrgsCashlessTransferers2.set_TabIndex(0x4f);
     this.lbOrgsCashlessTransferers2.set_Text("перечислениям");
     this.panelSelectOrgsResourceProviders.Controls.Add(this.selectOrgsResourceProviders);
     this.panelSelectOrgsResourceProviders.Controls.Add(this.lbOrgsResourceProviders);
     this.panelSelectOrgsResourceProviders.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectOrgsResourceProviders.set_Location(new System.Drawing.Point(0, 0x9c));
     this.panelSelectOrgsResourceProviders.set_Name("panelSelectOrgsResourceProviders");
     this.panelSelectOrgsResourceProviders.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectOrgsResourceProviders.set_TabIndex(0x63);
     this.selectOrgsResourceProviders.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectOrgsResourceProviders.IsByUser = true;
     this.selectOrgsResourceProviders.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectOrgsResourceProviders.set_Name("selectOrgsResourceProviders");
     this.selectOrgsResourceProviders.SetFilter = null;
     this.selectOrgsResourceProviders.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectOrgsResourceProviders.set_TabIndex(60);
     this.lbOrgsResourceProviders.set_AutoSize(true);
     this.lbOrgsResourceProviders.set_Location(new System.Drawing.Point(11, 6));
     this.lbOrgsResourceProviders.set_Name("lbOrgsResourceProviders");
     this.lbOrgsResourceProviders.set_Size(new System.Drawing.Size(0x54, 13));
     this.lbOrgsResourceProviders.set_TabIndex(0x3d);
     this.lbOrgsResourceProviders.set_Text("Ресурсоснабж.");
     this.panelSelectOrgsServiceProviders.Controls.Add(this.selectOrgsServiceProviders);
     this.panelSelectOrgsServiceProviders.Controls.Add(this.lbOrgsServiceProviders);
     this.panelSelectOrgsServiceProviders.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectOrgsServiceProviders.set_Location(new System.Drawing.Point(0, 130));
     this.panelSelectOrgsServiceProviders.set_Name("panelSelectOrgsServiceProviders");
     this.panelSelectOrgsServiceProviders.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectOrgsServiceProviders.set_TabIndex(0x62);
     this.selectOrgsServiceProviders.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectOrgsServiceProviders.IsByUser = true;
     this.selectOrgsServiceProviders.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectOrgsServiceProviders.set_Name("selectOrgsServiceProviders");
     this.selectOrgsServiceProviders.SetFilter = null;
     this.selectOrgsServiceProviders.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectOrgsServiceProviders.set_TabIndex(4);
     this.lbOrgsServiceProviders.set_AutoSize(true);
     this.lbOrgsServiceProviders.set_Location(new System.Drawing.Point(11, 6));
     this.lbOrgsServiceProviders.set_Name("lbOrgsServiceProviders");
     this.lbOrgsServiceProviders.set_Size(new System.Drawing.Size(0x41, 13));
     this.lbOrgsServiceProviders.set_TabIndex(0x22);
     this.lbOrgsServiceProviders.set_Text("Поставщик");
     this.panelSelectOrgsAccountHouseHolders.Controls.Add(this.selectOrgsAccountHouseHolders);
     this.panelSelectOrgsAccountHouseHolders.Controls.Add(this.lbOrgsAccountHouseHolders);
     this.panelSelectOrgsAccountHouseHolders.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectOrgsAccountHouseHolders.set_Location(new System.Drawing.Point(0, 0x68));
     this.panelSelectOrgsAccountHouseHolders.set_Name("panelSelectOrgsAccountHouseHolders");
     this.panelSelectOrgsAccountHouseHolders.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectOrgsAccountHouseHolders.set_TabIndex(0x61);
     this.selectOrgsAccountHouseHolders.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectOrgsAccountHouseHolders.IsByUser = true;
     this.selectOrgsAccountHouseHolders.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectOrgsAccountHouseHolders.set_Name("selectOrgsAccountHouseHolders");
     this.selectOrgsAccountHouseHolders.SetFilter = null;
     this.selectOrgsAccountHouseHolders.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectOrgsAccountHouseHolders.set_TabIndex(0x4c);
     this.lbOrgsAccountHouseHolders.set_AutoSize(true);
     this.lbOrgsAccountHouseHolders.set_Location(new System.Drawing.Point(11, 6));
     this.lbOrgsAccountHouseHolders.set_Name("lbOrgsAccountHouseHolders");
     this.lbOrgsAccountHouseHolders.set_Size(new System.Drawing.Size(0x37, 13));
     this.lbOrgsAccountHouseHolders.set_TabIndex(0x4d);
     this.lbOrgsAccountHouseHolders.set_Text("УК на ЛС");
     this.panelSelectOrgsServiceHouseHolders.Controls.Add(this.lbOrgsServiceHouseHolders);
     this.panelSelectOrgsServiceHouseHolders.Controls.Add(this.selectOrgsServiceHouseHolders);
     this.panelSelectOrgsServiceHouseHolders.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectOrgsServiceHouseHolders.set_Location(new System.Drawing.Point(0, 0x4e));
     this.panelSelectOrgsServiceHouseHolders.set_Name("panelSelectOrgsServiceHouseHolders");
     this.panelSelectOrgsServiceHouseHolders.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectOrgsServiceHouseHolders.set_TabIndex(0x60);
     this.lbOrgsServiceHouseHolders.set_AutoSize(true);
     this.lbOrgsServiceHouseHolders.set_Location(new System.Drawing.Point(11, 6));
     this.lbOrgsServiceHouseHolders.set_Name("lbOrgsServiceHouseHolders");
     this.lbOrgsServiceHouseHolders.set_Size(new System.Drawing.Size(0x3a, 13));
     this.lbOrgsServiceHouseHolders.set_TabIndex(0x21);
     this.lbOrgsServiceHouseHolders.set_Text("УК услуги");
     this.selectOrgsServiceHouseHolders.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectOrgsServiceHouseHolders.IsByUser = true;
     this.selectOrgsServiceHouseHolders.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectOrgsServiceHouseHolders.set_Name("selectOrgsServiceHouseHolders");
     this.selectOrgsServiceHouseHolders.SetFilter = null;
     this.selectOrgsServiceHouseHolders.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectOrgsServiceHouseHolders.set_TabIndex(3);
     this.panelSelectOrgsHouseHolders.Controls.Add(this.selectOrgsHouseHolders);
     this.panelSelectOrgsHouseHolders.Controls.Add(this.lbOrgsHouseHolders);
     this.panelSelectOrgsHouseHolders.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelSelectOrgsHouseHolders.set_Location(new System.Drawing.Point(0, 0x34));
     this.panelSelectOrgsHouseHolders.set_Name("panelSelectOrgsHouseHolders");
     this.panelSelectOrgsHouseHolders.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelSelectOrgsHouseHolders.set_TabIndex(0x5f);
     this.selectOrgsHouseHolders.set_Anchor(System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top);
     this.selectOrgsHouseHolders.IsByUser = true;
     this.selectOrgsHouseHolders.set_Location(new System.Drawing.Point(0x8a, 3));
     this.selectOrgsHouseHolders.set_Name("selectOrgsHouseHolders");
     this.selectOrgsHouseHolders.SetFilter = null;
     this.selectOrgsHouseHolders.set_Size(new System.Drawing.Size(890, 0x17));
     this.selectOrgsHouseHolders.set_TabIndex(3);
     this.lbOrgsHouseHolders.set_AutoSize(true);
     this.lbOrgsHouseHolders.set_Location(new System.Drawing.Point(11, 6));
     this.lbOrgsHouseHolders.set_Name("lbOrgsHouseHolders");
     this.lbOrgsHouseHolders.set_Size(new System.Drawing.Size(0x39, 13));
     this.lbOrgsHouseHolders.set_TabIndex(0x21);
     this.lbOrgsHouseHolders.set_Text("УК жилья");
     this.panelDatePeriod.Controls.Add(this.lbDatePeriod);
     this.panelDatePeriod.Controls.Add(this.datePeriod);
     this.panelDatePeriod.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelDatePeriod.set_Location(new System.Drawing.Point(0, 0x1a));
     this.panelDatePeriod.set_Name("panelDatePeriod");
     this.panelDatePeriod.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelDatePeriod.set_TabIndex(0x5e);
     this.lbDatePeriod.set_AutoSize(true);
     this.lbDatePeriod.set_Location(new System.Drawing.Point(11, 6));
     this.lbDatePeriod.set_Name("lbDatePeriod");
     this.lbDatePeriod.set_Size(new System.Drawing.Size(0x23, 13));
     this.lbDatePeriod.set_TabIndex(0x43);
     this.lbDatePeriod.set_Text("Даты");
     this.datePeriod.AttachToPeriod = false;
     this.datePeriod.set_AutoSize(true);
     this.datePeriod.DateBeginReadonly = false;
     this.datePeriod.DateEndReadonly = false;
     this.datePeriod.set_Location(new System.Drawing.Point(0x7f, 0));
     this.datePeriod.set_Margin(new System.Windows.Forms.Padding(4));
     this.datePeriod.set_Name("datePeriod");
     this.datePeriod.set_Padding(new System.Windows.Forms.Padding(2, 0, 0, 0));
     this.datePeriod.set_Size(new System.Drawing.Size(0xe4, 0x17));
     this.datePeriod.set_TabIndex(0x42);
     this.panelPeriod.Controls.Add(this.periodsSelector);
     this.panelPeriod.Controls.Add(this.lbPeriod);
     this.panelPeriod.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panelPeriod.set_Location(new System.Drawing.Point(0, 0));
     this.panelPeriod.set_Name("panelPeriod");
     this.panelPeriod.set_Size(new System.Drawing.Size(0x407, 0x1a));
     this.panelPeriod.set_TabIndex(0x5d);
     this.periodsSelector.set_Location(new System.Drawing.Point(0x89, 3));
     this.periodsSelector.set_Name("periodsSelector");
     this.periodsSelector.set_Size(new System.Drawing.Size(0x153, 0x19));
     this.periodsSelector.set_TabIndex(0x37);
     this.lbPeriod.set_AutoSize(true);
     this.lbPeriod.set_Location(new System.Drawing.Point(11, 6));
     this.lbPeriod.set_Name("lbPeriod");
     this.lbPeriod.set_Size(new System.Drawing.Size(0x2d, 13));
     this.lbPeriod.set_TabIndex(0x1b);
     this.lbPeriod.set_Text("Период");
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.помощьToolStripMenuItem, this.настройкиToolStripMenuItem });
     this.menuStrip1.set_Location(new System.Drawing.Point(0, 0));
     this.menuStrip1.set_Name("menuStrip1");
     this.menuStrip1.set_Size(new System.Drawing.Size(0x40a, 0x18));
     this.menuStrip1.set_TabIndex(1);
     this.menuStrip1.set_Text("menuStrip1");
     this.помощьToolStripMenuItem.set_Alignment(System.Windows.Forms.ToolStripItemAlignment.Right);
     this.помощьToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.оСистемеToolStripMenuItem1 });
     this.помощьToolStripMenuItem.set_Name("помощьToolStripMenuItem");
     this.помощьToolStripMenuItem.set_Size(new System.Drawing.Size(0x3e, 20));
     this.помощьToolStripMenuItem.set_Text("Справка");
     this.оСистемеToolStripMenuItem1.set_Name("оСистемеToolStripMenuItem1");
     this.оСистемеToolStripMenuItem1.set_Size(new System.Drawing.Size(0x88, 0x16));
     this.оСистемеToolStripMenuItem1.set_Text("О системе");
     this.оСистемеToolStripMenuItem1.add_Click(new System.EventHandler(this.оСистемеToolStripMenuItem1_Click));
     this.настройкиToolStripMenuItem.set_Alignment(System.Windows.Forms.ToolStripItemAlignment.Right);
     this.настройкиToolStripMenuItem.set_Name("настройкиToolStripMenuItem");
     this.настройкиToolStripMenuItem.set_Size(new System.Drawing.Size(0x49, 20));
     this.настройкиToolStripMenuItem.set_Text("Настройки");
     this.настройкиToolStripMenuItem.add_Click(new System.EventHandler(this.настройкиToolStripMenuItem_Click));
     this.panel2.set_BorderStyle(System.Windows.Forms.BorderStyle.FixedSingle);
     this.panel2.Controls.Add(this.scReport);
     this.panel2.Controls.Add(this.panel1);
     this.panel2.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel2.set_Location(new System.Drawing.Point(0, 0));
     this.panel2.set_Name("panel2");
     this.panel2.set_Size(new System.Drawing.Size(0x41b, 0x18d));
     this.panel2.set_TabIndex(70);
     this.scReport.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.scReport.set_Location(new System.Drawing.Point(0, 0x30));
     this.scReport.set_Name("scReport");
     this.scReport.set_Orientation(System.Windows.Forms.Orientation.Horizontal);
     this.scReport.Panel1.Controls.Add(this.dgvReports);
     this.scReport.Panel1.set_RightToLeft(System.Windows.Forms.RightToLeft.No);
     this.scReport.Panel2.Controls.Add(this.dgvReportParameters);
     this.scReport.Panel2.set_RightToLeft(System.Windows.Forms.RightToLeft.No);
     this.scReport.set_Size(new System.Drawing.Size(0x419, 0x15b));
     this.scReport.set_SplitterDistance(0x90);
     this.scReport.set_TabIndex(0x13);
     this.dgvReports.set_AllowUserToAddRows(false);
     this.dgvReports.set_AllowUserToDeleteRows(false);
     this.dgvReports.set_AutoGenerateColumns(false);
     this.dgvReports.set_AutoSizeColumnsMode(System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader);
     this.dgvReports.set_AutoSizeRowsMode(System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells);
     style.set_Alignment(System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft);
     style.set_BackColor(System.Drawing.SystemColors.Control);
     style.set_Font(new System.Drawing.Font("Microsoft Sans Serif", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0xcc));
     style.set_ForeColor(System.Drawing.SystemColors.WindowText);
     style.set_SelectionBackColor(System.Drawing.SystemColors.Highlight);
     style.set_SelectionForeColor(System.Drawing.SystemColors.HighlightText);
     style.set_WrapMode(System.Windows.Forms.DataGridViewTriState.True);
     this.dgvReports.set_ColumnHeadersDefaultCellStyle(style);
     this.dgvReports.set_ColumnHeadersHeightSizeMode(System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize);
     this.dgvReports.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.CheckPrint, this.ReportTemplateName, this.statusDataGridViewTextBoxColumn, this.createdDataGridViewTextBoxColumn, this.UserName, this.StartTime, this.FinishTime, this.PlannedDate, this.Id });
     this.dgvReports.set_DataSource(this.bsReports);
     style2.set_Alignment(System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft);
     style2.set_BackColor(System.Drawing.SystemColors.Window);
     style2.set_Font(new System.Drawing.Font("Microsoft Sans Serif", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0xcc));
     style2.set_ForeColor(System.Drawing.SystemColors.ControlText);
     style2.set_SelectionBackColor(System.Drawing.SystemColors.Highlight);
     style2.set_SelectionForeColor(System.Drawing.SystemColors.HighlightText);
     style2.set_WrapMode(System.Windows.Forms.DataGridViewTriState.False);
     this.dgvReports.set_DefaultCellStyle(style2);
     this.dgvReports.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.dgvReports.set_Location(new System.Drawing.Point(0, 0));
     this.dgvReports.set_Name("dgvReports");
     style3.set_Alignment(System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft);
     style3.set_BackColor(System.Drawing.SystemColors.Control);
     style3.set_Font(new System.Drawing.Font("Microsoft Sans Serif", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0xcc));
     style3.set_ForeColor(System.Drawing.SystemColors.WindowText);
     style3.set_SelectionBackColor(System.Drawing.SystemColors.Highlight);
     style3.set_SelectionForeColor(System.Drawing.SystemColors.HighlightText);
     style3.set_WrapMode(System.Windows.Forms.DataGridViewTriState.True);
     this.dgvReports.set_RowHeadersDefaultCellStyle(style3);
     this.dgvReports.set_RowHeadersVisible(false);
     this.dgvReports.set_SelectionMode(System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect);
     this.dgvReports.set_Size(new System.Drawing.Size(0x419, 0x90));
     this.dgvReports.set_TabIndex(0x11);
     this.dgvReports.add_CellDoubleClick(new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvReports_CellDoubleClick));
     this.CheckPrint.set_FillWeight((float) 10.43145f);
     this.CheckPrint.set_HeaderText("Выбор");
     this.CheckPrint.set_MinimumWidth(60);
     this.CheckPrint.set_Name("CheckPrint");
     this.CheckPrint.set_SortMode(System.Windows.Forms.DataGridViewColumnSortMode.Automatic);
     this.CheckPrint.set_Width(60);
     this.ReportTemplateName.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells);
     this.ReportTemplateName.set_DataPropertyName("ReportTemplateName");
     this.ReportTemplateName.set_HeaderText("Отчет");
     this.ReportTemplateName.set_MinimumWidth(0x3d);
     this.ReportTemplateName.set_Name("ReportTemplateName");
     this.ReportTemplateName.set_ReadOnly(true);
     this.ReportTemplateName.set_Width(0x3d);
     this.statusDataGridViewTextBoxColumn.set_DataPropertyName("Status");
     this.statusDataGridViewTextBoxColumn.set_FillWeight((float) 10.43145f);
     this.statusDataGridViewTextBoxColumn.set_HeaderText("Выполнено");
     this.statusDataGridViewTextBoxColumn.set_MinimumWidth(80);
     this.statusDataGridViewTextBoxColumn.set_Name("statusDataGridViewTextBoxColumn");
     this.statusDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.statusDataGridViewTextBoxColumn.set_Resizable(System.Windows.Forms.DataGridViewTriState.True);
     this.statusDataGridViewTextBoxColumn.set_SortMode(System.Windows.Forms.DataGridViewColumnSortMode.Automatic);
     this.statusDataGridViewTextBoxColumn.set_Width(80);
     this.createdDataGridViewTextBoxColumn.set_DataPropertyName("Created");
     this.createdDataGridViewTextBoxColumn.set_FillWeight((float) 10.43145f);
     this.createdDataGridViewTextBoxColumn.set_HeaderText("Создан");
     this.createdDataGridViewTextBoxColumn.set_MinimumWidth(80);
     this.createdDataGridViewTextBoxColumn.set_Name("createdDataGridViewTextBoxColumn");
     this.createdDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.createdDataGridViewTextBoxColumn.set_Width(80);
     this.UserName.set_DataPropertyName("UserName");
     this.UserName.set_FillWeight((float) 10.43145f);
     this.UserName.set_HeaderText("Пользователь");
     this.UserName.set_MinimumWidth(100);
     this.UserName.set_Name("UserName");
     this.UserName.set_ReadOnly(true);
     this.StartTime.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader);
     this.StartTime.set_DataPropertyName("StartTime");
     this.StartTime.set_HeaderText("Начато формирование");
     this.StartTime.set_MinimumWidth(100);
     this.StartTime.set_Name("StartTime");
     this.StartTime.set_ReadOnly(true);
     this.FinishTime.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader);
     this.FinishTime.set_DataPropertyName("FinishTime");
     this.FinishTime.set_HeaderText("Сформирован");
     this.FinishTime.set_MinimumWidth(100);
     this.FinishTime.set_Name("FinishTime");
     this.FinishTime.set_ReadOnly(true);
     this.PlannedDate.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader);
     this.PlannedDate.set_DataPropertyName("PlannedDate");
     this.PlannedDate.set_HeaderText("Выполнение запланированно");
     this.PlannedDate.set_MinimumWidth(100);
     this.PlannedDate.set_Name("PlannedDate");
     this.PlannedDate.set_ReadOnly(true);
     this.Id.set_DataPropertyName("Id");
     this.Id.set_HeaderText("ReportId");
     this.Id.set_Name("Id");
     this.Id.set_ReadOnly(true);
     this.Id.set_Visible(false);
     this.Id.set_Width(5);
     this.bsReports.set_DataSource(typeof(RepReport));
     this.bsReports.set_Sort("Created desc");
     this.bsReports.add_CurrentChanged(new System.EventHandler(this.bsReports_CurrentChanged));
     this.dgvReportParameters.set_AllowUserToAddRows(false);
     this.dgvReportParameters.set_AllowUserToDeleteRows(false);
     this.dgvReportParameters.set_AutoGenerateColumns(false);
     this.dgvReportParameters.set_AutoSizeColumnsMode(System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells);
     this.dgvReportParameters.set_AutoSizeRowsMode(System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells);
     style4.set_Alignment(System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft);
     style4.set_BackColor(System.Drawing.SystemColors.Control);
     style4.set_Font(new System.Drawing.Font("Microsoft Sans Serif", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0xcc));
     style4.set_ForeColor(System.Drawing.SystemColors.WindowText);
     style4.set_SelectionBackColor(System.Drawing.SystemColors.Highlight);
     style4.set_SelectionForeColor(System.Drawing.SystemColors.HighlightText);
     style4.set_WrapMode(System.Windows.Forms.DataGridViewTriState.True);
     this.dgvReportParameters.set_ColumnHeadersDefaultCellStyle(style4);
     this.dgvReportParameters.set_ColumnHeadersHeightSizeMode(System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize);
     this.dgvReportParameters.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.printNameDataGridViewTextBoxColumn, this.printValueDataGridViewTextBoxColumn });
     this.dgvReportParameters.set_DataSource(this.bsReportParameters);
     style5.set_Alignment(System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft);
     style5.set_BackColor(System.Drawing.SystemColors.Window);
     style5.set_Font(new System.Drawing.Font("Microsoft Sans Serif", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0xcc));
     style5.set_ForeColor(System.Drawing.SystemColors.ControlText);
     style5.set_SelectionBackColor(System.Drawing.SystemColors.Highlight);
     style5.set_SelectionForeColor(System.Drawing.SystemColors.HighlightText);
     style5.set_WrapMode(System.Windows.Forms.DataGridViewTriState.False);
     this.dgvReportParameters.set_DefaultCellStyle(style5);
     this.dgvReportParameters.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.dgvReportParameters.set_Location(new System.Drawing.Point(0, 0));
     this.dgvReportParameters.set_Name("dgvReportParameters");
     this.dgvReportParameters.set_ReadOnly(true);
     style6.set_Alignment(System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft);
     style6.set_BackColor(System.Drawing.SystemColors.Control);
     style6.set_Font(new System.Drawing.Font("Microsoft Sans Serif", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0xcc));
     style6.set_ForeColor(System.Drawing.SystemColors.WindowText);
     style6.set_SelectionBackColor(System.Drawing.SystemColors.Highlight);
     style6.set_SelectionForeColor(System.Drawing.SystemColors.HighlightText);
     style6.set_WrapMode(System.Windows.Forms.DataGridViewTriState.True);
     this.dgvReportParameters.set_RowHeadersDefaultCellStyle(style6);
     this.dgvReportParameters.set_RowHeadersVisible(false);
     this.dgvReportParameters.set_SelectionMode(System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect);
     this.dgvReportParameters.set_Size(new System.Drawing.Size(0x419, 0xc7));
     this.dgvReportParameters.set_TabIndex(0x12);
     this.printNameDataGridViewTextBoxColumn.set_DataPropertyName("PrintName");
     this.printNameDataGridViewTextBoxColumn.set_HeaderText("Параметр");
     this.printNameDataGridViewTextBoxColumn.set_Name("printNameDataGridViewTextBoxColumn");
     this.printNameDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.printNameDataGridViewTextBoxColumn.set_Width(0x53);
     this.printValueDataGridViewTextBoxColumn.set_DataPropertyName("PrintValue");
     this.printValueDataGridViewTextBoxColumn.set_HeaderText("Значение");
     this.printValueDataGridViewTextBoxColumn.set_Name("printValueDataGridViewTextBoxColumn");
     this.printValueDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.printValueDataGridViewTextBoxColumn.set_Width(80);
     this.bsReportParameters.set_DataSource(typeof(RepReportParameter));
     this.panel1.Controls.Add(this.tsReports);
     this.panel1.Controls.Add(this.dbRepresentPeriodDate);
     this.panel1.Controls.Add(this.toolStrip1);
     this.panel1.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panel1.set_Location(new System.Drawing.Point(0, 0));
     this.panel1.set_Name("panel1");
     this.panel1.set_Size(new System.Drawing.Size(0x419, 0x30));
     this.panel1.set_TabIndex(0x31);
     this.tsReports.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsbRunReport, this.tslbRunReportImageLoading, this.toolStripSeparator4, this.tsbDesigner, this.tSepar, this.btnRun, this.m_RollingImage, this.toolStripSeparator2, this.tbsStart, this.tslStart, this.toolStripSeparator1, this.tsbSelectAll, this.toolStripSeparator5, this.tsbCleanAll, this.tsbPrint, this.m_RollingImagePrint,
         this.toolStripSeparator3, this.tsbDeleteReport, this.tsbDeleteReportsImage, this.toolStripLabel2, this.tsbHorizontal, this.tsbVertical, this.toolStripSeparator6, this.toolStripSeparator7, this.toolStripSeparator8
      });
     this.tsReports.set_Location(new System.Drawing.Point(0, 0));
     this.tsReports.set_Name("tsReports");
     this.tsReports.set_Size(new System.Drawing.Size(0x419, 0x19));
     this.tsReports.set_TabIndex(15);
     this.tsReports.set_Text("toolStrip1");
     this.tsbRunReport.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tsbRunReport.set_Image((System.Drawing.Image) manager.GetObject("tsbRunReport.Image"));
     this.tsbRunReport.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbRunReport.set_Name("tsbRunReport");
     this.tsbRunReport.set_Size(new System.Drawing.Size(0x43, 0x16));
     this.tsbRunReport.set_Text("Выполнить");
     this.tsbRunReport.add_Click(new System.EventHandler(this.tsbRunReport_Click));
     this.tslbRunReportImageLoading.set_AutoSize(false);
     this.tslbRunReportImageLoading.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tslbRunReportImageLoading.set_Image(Resources.WAITING);
     this.tslbRunReportImageLoading.set_ImageAlign(System.Drawing.ContentAlignment.MiddleLeft);
     this.tslbRunReportImageLoading.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tslbRunReportImageLoading.set_ImageTransparentColor(System.Drawing.Color.White);
     this.tslbRunReportImageLoading.set_Name("tslbRunReportImageLoading");
     this.tslbRunReportImageLoading.set_Size(new System.Drawing.Size(0x11, 0x16));
     this.tslbRunReportImageLoading.set_Visible(false);
     this.toolStripSeparator4.set_Name("toolStripSeparator4");
     this.toolStripSeparator4.set_Size(new System.Drawing.Size(6, 0x19));
     this.tsbDesigner.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tsbDesigner.set_Image((System.Drawing.Image) manager.GetObject("tsbDesigner.Image"));
     this.tsbDesigner.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbDesigner.set_Name("tsbDesigner");
     this.tsbDesigner.set_Size(new System.Drawing.Size(60, 0x16));
     this.tsbDesigner.set_Text("Дизайнер");
     this.tsbDesigner.add_Click(new System.EventHandler(this.tsbDesigner_Click));
     this.tSepar.set_Name("tSepar");
     this.tSepar.set_Size(new System.Drawing.Size(6, 0x19));
     this.btnRun.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.btnRun.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.btnRun.set_Name("btnRun");
     this.btnRun.set_Size(new System.Drawing.Size(0x3b, 0x16));
     this.btnRun.set_Text("Просмотр");
     this.btnRun.add_Click(new System.EventHandler(this.btnRun_Click));
     this.m_RollingImage.set_AutoSize(false);
     this.m_RollingImage.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.m_RollingImage.set_Image(Resources.WAITING);
     this.m_RollingImage.set_ImageAlign(System.Drawing.ContentAlignment.MiddleLeft);
     this.m_RollingImage.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.m_RollingImage.set_ImageTransparentColor(System.Drawing.Color.White);
     this.m_RollingImage.set_Name("m_RollingImage");
     this.m_RollingImage.set_Size(new System.Drawing.Size(0x11, 0x16));
     this.m_RollingImage.set_Visible(false);
     this.toolStripSeparator2.set_Name("toolStripSeparator2");
     this.toolStripSeparator2.set_Size(new System.Drawing.Size(6, 0x19));
     this.tbsStart.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tbsStart.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tbsStart.set_Name("tbsStart");
     this.tbsStart.set_Size(new System.Drawing.Size(0x62, 0x16));
     this.tbsStart.set_Text("Заполнить отчет");
     this.tbsStart.set_Visible(false);
     this.tbsStart.add_Click(new System.EventHandler(this.tbsStart_Click));
     this.tslStart.set_AutoSize(false);
     this.tslStart.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tslStart.set_Image(Resources.WAITING);
     this.tslStart.set_ImageAlign(System.Drawing.ContentAlignment.MiddleLeft);
     this.tslStart.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tslStart.set_ImageTransparentColor(System.Drawing.Color.White);
     this.tslStart.set_Name("tslStart");
     this.tslStart.set_Size(new System.Drawing.Size(0x11, 0x16));
     this.tslStart.set_Visible(false);
     this.toolStripSeparator1.set_Name("toolStripSeparator1");
     this.toolStripSeparator1.set_Size(new System.Drawing.Size(6, 0x19));
     this.toolStripSeparator1.set_Visible(false);
     this.tsbSelectAll.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tsbSelectAll.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbSelectAll.set_Name("tsbSelectAll");
     this.tsbSelectAll.set_Size(new System.Drawing.Size(0x4b, 0x16));
     this.tsbSelectAll.set_Text("Выбрать все");
     this.tsbSelectAll.add_Click(new System.EventHandler(this.tsbSelectAll_Click));
     this.toolStripSeparator5.set_Name("toolStripSeparator5");
     this.toolStripSeparator5.set_Size(new System.Drawing.Size(6, 0x19));
     this.tsbCleanAll.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tsbCleanAll.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbCleanAll.set_Name("tsbCleanAll");
     this.tsbCleanAll.set_Size(new System.Drawing.Size(0x44, 0x16));
     this.tsbCleanAll.set_Text("Убрать все");
     this.tsbCleanAll.add_Click(new System.EventHandler(this.tsbCleanAll_Click));
     this.tsbPrint.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tsbPrint.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbPrint.set_Name("tsbPrint");
     this.tsbPrint.set_Size(new System.Drawing.Size(0x6d, 0x16));
     this.tsbPrint.set_Text("Печать выбранных");
     this.tsbPrint.add_Click(new System.EventHandler(this.tsbPrint_Click));
     this.m_RollingImagePrint.set_AutoSize(false);
     this.m_RollingImagePrint.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.m_RollingImagePrint.set_Image(Resources.WAITING);
     this.m_RollingImagePrint.set_ImageAlign(System.Drawing.ContentAlignment.MiddleLeft);
     this.m_RollingImagePrint.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.m_RollingImagePrint.set_ImageTransparentColor(System.Drawing.Color.White);
     this.m_RollingImagePrint.set_Name("m_RollingImagePrint");
     this.m_RollingImagePrint.set_Size(new System.Drawing.Size(0x11, 0x16));
     this.m_RollingImagePrint.set_Visible(false);
     this.toolStripSeparator3.set_Name("toolStripSeparator3");
     this.toolStripSeparator3.set_Size(new System.Drawing.Size(6, 0x19));
     this.tsbDeleteReport.set_Image(Resources.DELETE);
     this.tsbDeleteReport.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsbDeleteReport.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbDeleteReport.set_Name("tsbDeleteReport");
     this.tsbDeleteReport.set_Size(new System.Drawing.Size(140, 0x16));
     this.tsbDeleteReport.set_Text("Удалить выбранные");
     this.tsbDeleteReport.add_Click(new System.EventHandler(this.tsbDeleteReport_Click_1));
     this.tsbDeleteReportsImage.set_AutoSize(false);
     this.tsbDeleteReportsImage.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsbDeleteReportsImage.set_Image(Resources.WAITING);
     this.tsbDeleteReportsImage.set_ImageAlign(System.Drawing.ContentAlignment.MiddleLeft);
     this.tsbDeleteReportsImage.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsbDeleteReportsImage.set_ImageTransparentColor(System.Drawing.Color.White);
     this.tsbDeleteReportsImage.set_Name("tsbDeleteReportsImage");
     this.tsbDeleteReportsImage.set_Size(new System.Drawing.Size(0x11, 0x16));
     this.tsbDeleteReportsImage.set_Visible(false);
     this.toolStripLabel2.set_Name("toolStripLabel2");
     this.toolStripLabel2.set_Size(new System.Drawing.Size(0x84, 0x16));
     this.toolStripLabel2.set_Text("Показывать параметры:");
     this.tsbHorizontal.set_Checked(true);
     this.tsbHorizontal.set_CheckState(System.Windows.Forms.CheckState.Checked);
     this.tsbHorizontal.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tsbHorizontal.set_Image((System.Drawing.Image) manager.GetObject("tsbHorizontal.Image"));
     this.tsbHorizontal.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbHorizontal.set_Name("tsbHorizontal");
     this.tsbHorizontal.set_Size(new System.Drawing.Size(0x57, 0x16));
     this.tsbHorizontal.set_Text("горизонтально");
     this.tsbHorizontal.add_Click(new System.EventHandler(this.tsbHorizontal_Click));
     this.tsbVertical.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tsbVertical.set_Image((System.Drawing.Image) manager.GetObject("tsbVertical.Image"));
     this.tsbVertical.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbVertical.set_Name("tsbVertical");
     this.tsbVertical.set_Size(new System.Drawing.Size(0x4d, 0x16));
     this.tsbVertical.set_Text("вертикально");
     this.tsbVertical.add_Click(new System.EventHandler(this.tsbVertical_Click));
     this.toolStripSeparator6.set_Name("toolStripSeparator6");
     this.toolStripSeparator6.set_Size(new System.Drawing.Size(6, 0x19));
     this.toolStripSeparator7.set_Name("toolStripSeparator7");
     this.toolStripSeparator7.set_Size(new System.Drawing.Size(6, 0x19));
     this.toolStripSeparator8.set_Name("toolStripSeparator8");
     this.toolStripSeparator8.set_Size(new System.Drawing.Size(6, 0x19));
     this.dbRepresentPeriodDate.AttachToPeriod = false;
     this.dbRepresentPeriodDate.DateBeginReadonly = false;
     this.dbRepresentPeriodDate.DateEndReadonly = false;
     this.dbRepresentPeriodDate.set_Location(new System.Drawing.Point(0x97, 0x19));
     this.dbRepresentPeriodDate.set_Margin(new System.Windows.Forms.Padding(4));
     this.dbRepresentPeriodDate.set_Name("dbRepresentPeriodDate");
     this.dbRepresentPeriodDate.set_Size(new System.Drawing.Size(0xe9, 0x17));
     this.dbRepresentPeriodDate.set_TabIndex(15);
     this.toolStrip1.set_Dock(System.Windows.Forms.DockStyle.None);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripLabel1, this.tsbRepresentMyReport, this.tsbRepresentAllReport });
     this.toolStrip1.set_Location(new System.Drawing.Point(0, 0x19));
     this.toolStrip1.set_Name("toolStrip1");
     this.toolStrip1.set_Size(new System.Drawing.Size(0x95, 0x19));
     this.toolStrip1.set_TabIndex(0x10);
     this.toolStrip1.set_Text("toolStrip1");
     this.toolStripLabel1.set_Name("toolStripLabel1");
     this.toolStripLabel1.set_Size(new System.Drawing.Size(0x4b, 0x16));
     this.toolStripLabel1.set_Text("Отображать:");
     this.tsbRepresentMyReport.set_Checked(true);
     this.tsbRepresentMyReport.set_CheckState(System.Windows.Forms.CheckState.Checked);
     this.tsbRepresentMyReport.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tsbRepresentMyReport.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbRepresentMyReport.set_Name("tsbRepresentMyReport");
     this.tsbRepresentMyReport.set_Size(new System.Drawing.Size(0x22, 0x16));
     this.tsbRepresentMyReport.set_Text("свои");
     this.tsbRepresentMyReport.add_Click(new System.EventHandler(this.tsbRepresentMyReport_Click_1));
     this.tsbRepresentAllReport.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tsbRepresentAllReport.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbRepresentAllReport.set_Name("tsbRepresentAllReport");
     this.tsbRepresentAllReport.set_Size(new System.Drawing.Size(0x1c, 0x16));
     this.tsbRepresentAllReport.set_Text("все");
     this.tsbRepresentAllReport.add_Click(new System.EventHandler(this.tsbRepresentAllReport_Click_1));
     this.sfdDBF.set_DefaultExt("dbf");
     this.dataGridViewTextBoxColumn1.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells);
     this.dataGridViewTextBoxColumn1.set_DataPropertyName("Id");
     this.dataGridViewTextBoxColumn1.set_HeaderText("Id");
     this.dataGridViewTextBoxColumn1.set_MinimumWidth(0x3d);
     this.dataGridViewTextBoxColumn1.set_Name("dataGridViewTextBoxColumn1");
     this.dataGridViewTextBoxColumn1.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn2.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader);
     this.dataGridViewTextBoxColumn2.set_DataPropertyName("ReportTemplateId");
     this.dataGridViewTextBoxColumn2.set_FillWeight((float) 10.43145f);
     this.dataGridViewTextBoxColumn2.set_HeaderText("ReportTemplateId");
     this.dataGridViewTextBoxColumn2.set_MinimumWidth(100);
     this.dataGridViewTextBoxColumn2.set_Name("dataGridViewTextBoxColumn2");
     this.dataGridViewTextBoxColumn2.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn3.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader);
     this.dataGridViewTextBoxColumn3.set_DataPropertyName("UserId");
     this.dataGridViewTextBoxColumn3.set_FillWeight((float) 10.43145f);
     this.dataGridViewTextBoxColumn3.set_HeaderText("UserId");
     this.dataGridViewTextBoxColumn3.set_MinimumWidth(100);
     this.dataGridViewTextBoxColumn3.set_Name("dataGridViewTextBoxColumn3");
     this.dataGridViewTextBoxColumn3.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn4.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader);
     this.dataGridViewTextBoxColumn4.set_DataPropertyName("Created");
     this.dataGridViewTextBoxColumn4.set_FillWeight((float) 10.43145f);
     this.dataGridViewTextBoxColumn4.set_HeaderText("Created");
     this.dataGridViewTextBoxColumn4.set_MinimumWidth(100);
     this.dataGridViewTextBoxColumn4.set_Name("dataGridViewTextBoxColumn4");
     this.dataGridViewTextBoxColumn4.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn5.set_DataPropertyName("UserName");
     this.dataGridViewTextBoxColumn5.set_FillWeight((float) 10.43145f);
     this.dataGridViewTextBoxColumn5.set_HeaderText("Пользователь");
     this.dataGridViewTextBoxColumn5.set_MinimumWidth(100);
     this.dataGridViewTextBoxColumn5.set_Name("dataGridViewTextBoxColumn5");
     this.dataGridViewTextBoxColumn5.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn6.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader);
     this.dataGridViewTextBoxColumn6.set_DataPropertyName("PlannedDate");
     this.dataGridViewTextBoxColumn6.set_HeaderText("Дата начала выполнения");
     this.dataGridViewTextBoxColumn6.set_MinimumWidth(100);
     this.dataGridViewTextBoxColumn6.set_Name("dataGridViewTextBoxColumn6");
     this.dataGridViewTextBoxColumn6.set_ReadOnly(true);
     this.sfdExcel.set_DefaultExt("xls");
     this.bsReportTemplates.set_DataSource(typeof(RepReportTemplate));
     this.erValidateRoles.set_ContainerControl(this);
     this.erValidateRoles.set_Icon((System.Drawing.Icon) manager.GetObject("erValidateRoles.Icon"));
     this.passporterServiceForSn1.Url = "http://localhost:49859/Passporter.WebService/PassporterServiceForSn.asmx";
     this.passporterServiceForSn1.UseDefaultCredentials = true;
     base.set_AutoScaleDimensions(new System.Drawing.SizeF(6f, 13f));
     base.set_AutoScaleMode(System.Windows.Forms.AutoScaleMode.Font);
     base.set_ClientSize(new System.Drawing.Size(0x504, 0x36e));
     base.Controls.Add(this.splitContainer1);
     base.set_Name("ReportsMainForm");
     base.set_StartPosition(System.Windows.Forms.FormStartPosition.CenterScreen);
     this.set_Text("АРМ \"Отчеты\"");
     base.set_WindowState(System.Windows.Forms.FormWindowState.Maximized);
     base.add_FormClosing(new System.Windows.Forms.FormClosingEventHandler(this.ReportsMainForm_FormClosing));
     base.add_Load(new System.EventHandler(this.ReportsMainForm_Load));
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.panelParameters.ResumeLayout(false);
     this.panelApartmentArea.ResumeLayout(false);
     this.panelApartmentArea.PerformLayout();
     this.numApartmentArea.EndInit();
     this.panelReportService.ResumeLayout(false);
     this.gbReportService.ResumeLayout(false);
     this.gbReportService.PerformLayout();
     this.panelWithRenderParametres.ResumeLayout(false);
     this.panelWithRenderParametres.PerformLayout();
     this.panelTextParameter.ResumeLayout(false);
     this.panelTextParameter.PerformLayout();
     this.panelSelectCityBorough.ResumeLayout(false);
     this.panelSelectCityBorough.PerformLayout();
     this.panelSelectAccountPropertyFaset.ResumeLayout(false);
     this.panelSelectAccountPropertyFaset.PerformLayout();
     this.panelPaymentAgents.ResumeLayout(false);
     this.panelPaymentAgents.PerformLayout();
     this.panelSelectFasetFilter.ResumeLayout(false);
     this.panelSelectBank.ResumeLayout(false);
     this.panelSelectBank.PerformLayout();
     this.panelChbxWithoutClosesApartments.ResumeLayout(false);
     this.panelChbxWithoutClosesApartments.PerformLayout();
     this.panelChbxWithoutBankrupt.ResumeLayout(false);
     this.panelChbxWithoutBankrupt.PerformLayout();
     this.panelNumMinSumm.ResumeLayout(false);
     this.panelNumMinSumm.PerformLayout();
     this.numMinSumm.EndInit();
     this.panelCbxTerminals.ResumeLayout(false);
     this.panelCbxTerminals.PerformLayout();
     this.panelSelectPaymentAgentTypes.ResumeLayout(false);
     this.panelSelectPaymentAgentTypes.PerformLayout();
     this.panelHouseTypes.ResumeLayout(false);
     this.panelHouseTypes.PerformLayout();
     this.panelCbxPaymentTypes.ResumeLayout(false);
     this.panelCbxPaymentTypes.PerformLayout();
     this.panelCbxCalcOperationGroups.ResumeLayout(false);
     this.panelCbxCalcOperationGroups.PerformLayout();
     this.bsCalcOperationGroups.EndInit();
     this.panelSelectRecalcReason.ResumeLayout(false);
     this.panelSelectRecalcReason.PerformLayout();
     this.panelCbIsDebt.ResumeLayout(false);
     this.panelCbIsDebt.PerformLayout();
     this.panelCbExistsBenefitDiff.ResumeLayout(false);
     this.panelCbExistsBenefitDiff.PerformLayout();
     this.panelSelectBenefits.ResumeLayout(false);
     this.panelSelectBenefits.PerformLayout();
     this.panelSelectApartmentTypes.ResumeLayout(false);
     this.panelSelectApartmentTypes.PerformLayout();
     this.panelSelectAddresses.ResumeLayout(false);
     this.panelSelectAddresses.PerformLayout();
     this.panelSelectConvenienceTypes.ResumeLayout(false);
     this.panelSelectConvenienceTypes.PerformLayout();
     this.panelSelectCanonicalServices.ResumeLayout(false);
     this.panelSelectCanonicalServices.PerformLayout();
     this.panelSelectServices.ResumeLayout(false);
     this.panelSelectServices.PerformLayout();
     this.panelSelectServiceTypes.ResumeLayout(false);
     this.panelSelectServiceTypes.PerformLayout();
     this.panelSelectOrgsCashlessTransferers.ResumeLayout(false);
     this.panelSelectOrgsCashlessTransferers.PerformLayout();
     this.panelSelectOrgsResourceProviders.ResumeLayout(false);
     this.panelSelectOrgsResourceProviders.PerformLayout();
     this.panelSelectOrgsServiceProviders.ResumeLayout(false);
     this.panelSelectOrgsServiceProviders.PerformLayout();
     this.panelSelectOrgsAccountHouseHolders.ResumeLayout(false);
     this.panelSelectOrgsAccountHouseHolders.PerformLayout();
     this.panelSelectOrgsServiceHouseHolders.ResumeLayout(false);
     this.panelSelectOrgsServiceHouseHolders.PerformLayout();
     this.panelSelectOrgsHouseHolders.ResumeLayout(false);
     this.panelSelectOrgsHouseHolders.PerformLayout();
     this.panelDatePeriod.ResumeLayout(false);
     this.panelDatePeriod.PerformLayout();
     this.panelPeriod.ResumeLayout(false);
     this.panelPeriod.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.scReport.Panel1.ResumeLayout(false);
     this.scReport.Panel2.ResumeLayout(false);
     this.scReport.ResumeLayout(false);
     this.dgvReports.EndInit();
     this.bsReports.EndInit();
     this.dgvReportParameters.EndInit();
     this.bsReportParameters.EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.tsReports.ResumeLayout(false);
     this.tsReports.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.bsReportTemplates.EndInit();
     this.erValidateRoles.EndInit();
     base.ResumeLayout(false);
 }