void GetSector(int tipo) { ELRMaestros.FormSectores frm = new ELRMaestros.FormSectores(); int sectorId = 0, municipioId = 0; try { frm.empresaID = EMPRESA_ID; frm.oficinaID = OFICINA_ID; frm.esBusqueda = true; frm.EnEjecusion = true; frm.EsAgregar = true; frm.EsModificar = true; if (tipo == 0 && cboMunicipio.SelectedValue != null) { municipioId = int.Parse(cboMunicipio.SelectedValue.ToString()); } else if (tipo == 1 && cboCliEmpresaMunicipio.SelectedValue != null) { municipioId = int.Parse(cboCliEmpresaMunicipio.SelectedValue.ToString()); } else { municipioId = defMunicipioId; } frm.FiltroEstatico = "EsActivo = 1 And Municipio_Id = " + municipioId.ToString(); frm.ShowDialog(); if (frm.filaSelecionada != null) { cboSector.LlenarCombo(); cboClienteEmpresaSector.LlenarCombo(); sectorId = objUtil.GetAsInt("Sector_Id", frm.filaSelecionada); if (tipo <= 0) { cboSector.SelectedValue = sectorId; } else if (tipo == 1) { cboClienteEmpresaSector.SelectedValue = sectorId; } } } catch (Exception ex) { objUtil.MostrarMensajeError(ex.Message); } finally { frm.Dispose(); } }
void GetSector(int tipo) { ELRMaestros.FormSectores frm = new ELRMaestros.FormSectores(); int sectorId = 0; try { frm.empresaID = EMPRESA_ID; frm.oficinaID = OFICINA_ID; frm.esBusqueda = true; frm.EnEjecusion = true; frm.EsAgregar = true; frm.EsModificar = true; frm.ShowDialog(); if (frm.filaSelecionada != null) { cboSector.LlenarCombo(); cboClienteEmpresaSector.LlenarCombo(); sectorId = objUtil.GetAsInt("Sector_Id", frm.filaSelecionada); if (tipo <= 0) { cboSector.SelectedValue = sectorId; } else if (tipo == 1) { cboClienteEmpresaSector.SelectedValue = sectorId; } } } catch (Exception ex) { objUtil.MostrarMensajeError(ex.Message); } finally { frm.Dispose(); } }