private void Page_Load(object sender, System.EventArgs e)
        {
            string permiteReportes   = System.Configuration.ConfigurationSettings.AppSettings["Server"];
            string dirServerReportes = System.Configuration.ConfigurationSettings.AppSettings["DirServerReportes"];

            if (permiteReportes == "P")
            {
                // si no permite reportes, entonces redirecciona al servidor de reportes
                string pass = Session["Pass"] != null ? Session["Pass"].ToString() : "";
                Response.Redirect(dirServerReportes + "Redirecciona.aspx?LoginRedir=" + this.UsuarioConectadoID + "&p=" + pass + "&Pagina=ReporteVendedoresCartera.aspx");
            }

            if (User.Identity.IsAuthenticated)
            {
                //this.SetCultura();
                string sOpcion = "reporteVendedorCartera";
                Menu   oMenu   = (Menu)this.FindControl("Menu1");
                this.ValidarSeguridad(oMenu, sOpcion);
            }

            LlenarHashMeses();

            if (!Page.IsPostBack)
            {
                Session["FechaDesde"]             = null;
                Session["FechaHasta"]             = null;
                Session["DsVentasAgenciasPorMes"] = null;
                Session["DsVentas"]                 = null;
                Session["MesesAmostrar"]            = null;
                Session["DsVentasDetalleUVenta"]    = null;
                Session["VendedorID"]               = null;
                Session["DsCarteraVendedorDetalle"] = null;

                Session["Resto"] = -1;
                CargarCategoria();
                CargarUnidadesVentas();
                this.butExportarExcel.Enabled = false;
            }
            else
            {
                this.butExportarExcel.Enabled = true;
            }

            IUsuarios usuario = (IUsuarios)Session["Usuario"];

            if (usuario.VendedorID != 0)
            {
                IVendedor vendedor = VendedorFactory.GetVendedor();
                vendedor.VendedorID = usuario.VendedorID;
                vendedor.Consultar();
                this.busqVendedor.ApellidoNombre = vendedor.Apellido + ", " + vendedor.Nombre;
                this.busqVendedor.Codigo         = vendedor.NroLegajo;
                this.busqVendedor.VendedorID     = vendedor.VendedorID.ToString();

                ((TextBox)((Control)busqVendedor).FindControl("txtCodigo")).Enabled         = false;
                ((TextBox)((Control)busqVendedor).FindControl("txtApellidoNombre")).Enabled = false;
            }
        }
Exemplo n.º 2
0
        private void CargarVendedor(IVendedor vendedor)
        {
            this.txtNombre.Text    = vendedor.Nombre;
            this.txtApellido.Text  = vendedor.Apellido;
            this.txtNroLegajo.Text = vendedor.NroLegajo;
            if (vendedor.Supervisor.VendedorID != 0)
            {
                IVendedor supervisor = VendedorFactory.GetVendedor();
                supervisor.VendedorID = vendedor.Supervisor.VendedorID;

                if (supervisor.Consultar())
                {
                    this.busqSupervisor.Codigo         = supervisor.NroLegajo;
                    this.busqSupervisor.VendedorID     = supervisor.VendedorID.ToString();
                    this.busqSupervisor.ApellidoNombre = supervisor.Apellido + " " + supervisor.Nombre;
                    this.busqSupervisor.EmpActual      = vendedor.VendedorID.ToString();
                }
            }
            this.chkEsSupervisor.Checked = vendedor.EsSupervisor;
            if (vendedor.AgenciaID != 0)
            {
                this.txtNroSucursal.Text = vendedor.NroLegajo.Substring(1, vendedor.NroLegajo.Length - 1);
                SetearSoloLectura();
            }
            this.txtAgenciaID.Text = vendedor.AgenciaID.ToString();
            IDatosDomicilio domicilio = (IDatosDomicilio)phDomicilio.FindControl("domicilio");

            domicilio.DomicilioID = vendedor.Domicilio.DomicilioID;
            domicilio.Calle       = vendedor.Domicilio.Calle;
            domicilio.CalleNro    = vendedor.Domicilio.CalleNro;
            domicilio.Telefono    = vendedor.Domicilio.Telefono;
            domicilio.ProvinciaID = vendedor.Domicilio.Localidad.Provincia.ProvinciaID;
            domicilio.LocalidadID = vendedor.Domicilio.Localidad.LocalidadID;
            domicilio.Fax         = vendedor.Domicilio.Fax;
            domicilio.Depto       = vendedor.Domicilio.Depto;

            //unidades de venta Asociados al vendedor
            if (vendedor.UnidadesVentaCol.getCount() > 0)
            {
                for (int i = 0; i < vendedor.UnidadesVentaCol.getCount(); i++)
                {
                    IUnidadVenta unidadVenta = vendedor.UnidadesVentaCol.GetUnidadVenta(i);
                    for (int j = 0; j < this.lstUnidadesVenta.Items.Count; j++)
                    {
                        if (this.lstUnidadesVenta.Items[j].Value == unidadVenta.UnidadVentaID.ToString())
                        {
                            this.lstUnidadesVenta.Items[j].Selected = true;
                        }
                    }
                }
            }

            //cuota mensual

            this.txtCuotaMensual.Text = vendedor.CuotaMensual.ToString();
        }
Exemplo n.º 3
0
        private void EditarVendedor()
        {
            IVendedor vendedor = VendedorFactory.GetVendedor();

            vendedor.VendedorID = Utiles.Validaciones.obtieneEntero(this.txtVendedorID.Text);
            vendedor.Consultar();

            this.lblLegajo.Text   = vendedor.NroLegajo;
            this.lblNombre.Text   = vendedor.Nombre;
            this.lblApellido.Text = vendedor.Apellido;
        }
Exemplo n.º 4
0
        private void Page_Load(object sender, System.EventArgs e)
        {
            #region IsAuthenticated

            if (Session["Usuario"] != null)
            {
                usuario = (IUsuarios)Session["Usuario"];
            }

            if (User.Identity.IsAuthenticated)
            {
                string sOpcion = "ReporteAlertaOperativaAgenciaUV";
                Menu   oMenu   = (Menu)this.FindControl("Menu1");
                this.ValidarSeguridad(oMenu, sOpcion);
            }

            agenciaID = usuario.AgenciaID; //Paso la agencia a una variable para después consultar de esa agencia especificamente

            IVentas ventas = VentasFactory.GetVentas();

            /*validar cuando entra un vendedor*/
            if (usuario.VendedorID != 0)
            {
                #region Vendedor
                IVendedor vendedor = VendedorFactory.GetVendedor();
                vendedor.VendedorID = usuario.VendedorID;
                vendedor.Consultar();
                #endregion
            }
            else if (usuario.AgenciaID != 0 && usuario.AgenciaID != ventas.EsAdministracion(UnidadNegocioID))
            {
                IAgencia agencia = AgenciaFactory.GetAgencia();
                agencia.AgenciaID = usuario.AgenciaID;
                agencia.ConsultarBasicoByAgenciaID();
                busqAgencia.AgenciaID   = agencia.AgenciaID.ToString();
                busqAgencia.Sucursal    = agencia.SucursalDGI;
                busqAgencia.RazonSocial = agencia.RazonSocial;
                ((TextBox)((Control)busqAgencia).FindControl("txtSucursal")).Enabled    = false;
                ((TextBox)((Control)busqAgencia).FindControl("txtRazonSocial")).Enabled = false;
            }

            #endregion

            if (!IsPostBack)
            {
                Session["dsResultado"] = null;
                this.BindGrid(0, false);
            }
        }
Exemplo n.º 5
0
        private void Editar()
        {
            vendedorO = VendedorFactory.GetVendedor();
            if (Session["Vendedor"] == null)
            {
                vendedorO.VendedorID = Convert.ToInt32(this.txtVendedorID.Text);
                vendedorO.Consultar();
            }
            else
            {
                vendedorO = (IVendedor)Session["Vendedor"];
            }



            CargarVendedor(vendedorO);
        }
Exemplo n.º 6
0
        private void CargarVendedor()
        {
            IVendedor vendedor = VendedorFactory.GetVendedor();

            vendedor.VendedorID = this.vendedorID;

            // SFE. 11/12/2014. Esta variable se introduce para que no cargue todas las unidades de venta en la pagina de convenios de cliente, donde no lo necesita y hace mas lenta la carga de la pagina.
            if (this.Parent.Page.ToString().ToLower().Contains("conveniocliente"))
            {
                vendedor.CargarUnidadesDeVenta = false;
            }
            vendedor.Consultar();

            this.txtVendedorID.Text = vendedor.VendedorID.ToString();
            this.txtLegajo.Text     = vendedor.NroLegajo.ToString();
            this.txtNombre.Text     = vendedor.Nombre;
            this.txtApellido.Text   = vendedor.Apellido;
        }
        private void Page_Load(object sender, System.EventArgs e)
        {
            if (User.Identity.IsAuthenticated)
            {
                //this.SetCultura();
                string sOpcion = "liquidacionConsul";
                Menu   oMenu   = (Menu)this.FindControl("Menu1");
                this.ValidarSeguridad(oMenu, sOpcion);
            }

            if (!IsPostBack)
            {
                this.lblFechaActual.Text = System.DateTime.Today.ToString("dd/MM/yyyy");

                this.txtTipoEntidadID.Text = Request.QueryString["TipoEntidadID"];
                this.txtEntidadID.Text     = Request.QueryString["EntidadID"];

                if (this.txtTipoEntidadID.Text == "1")               //TipoEntidad = 1 es una liquidacion para una agencia
                {
                    this.lblTituloPagina.Text = this.TraducirTexto("Titulo.LiquidacionAgencia");
                    IAgencia ag = AgenciaFactory.GetAgencia();
                    ag.AgenciaID = Convert.ToInt32(this.txtEntidadID.Text);
                    ag.ConsultarBasico();
                    this.lbl.Text = this.TraducirTexto("Etiquetas.Agencia");
                    this.lblEntidadDescrip.Text = ag.RazonSocial;
                }
                else                //TipoEntidad = 2 es una liquidacion para un vendedor
                {
                    this.lblTituloPagina.Text = this.TraducirTexto("Titulo.LiquidacionVendedor");
                    IVendedor vend = VendedorFactory.GetVendedor();
                    vend.VendedorID = Convert.ToInt32(this.txtEntidadID.Text);
                    vend.Consultar();
                    this.lbl.Text = this.TraducirTexto("Etiquetas.Vendedor");
                    this.lblEntidadDescrip.Text = vend.Nombre + " " + vend.Apellido;
                }
                // Elimino del objeto session DsLiquidacionEntidad
                Session.Remove("DsLiquidacionEntidad");
                BindGrid(0);
            }
            //this.SetearValidadores();
        }
Exemplo n.º 8
0
        private void butAceptar_Click(object sender, System.EventArgs e)
        {
            IVendedor vendedor = VendedorFactory.GetVendedor();

            vendedor.VendedorID    = Convert.ToInt32(this.txtVendedor.Text);
            vendedor.FechaBajaReal = new DateTime(Convert.ToInt32(txtFecha.Text.Substring(6, 4)), Convert.ToInt32(txtFecha.Text.Substring(3, 2)), Convert.ToInt32(txtFecha.Text.Substring(0, 2)));
            vendedor.Consultar();

            try
            {
                vendedor.Eliminar(usuario);
            }
            catch (Exception ex)
            {
                string mensaje = ex.Message;
                try
                {
                    mensaje = this.TraducirTexto(ex.Message);
                    if (mensaje == "" || mensaje == null)
                    {
                        mensaje = ex.Message;
                    }
                }
                catch (Exception)
                {
                    mensaje = ex.Message;
                }
                ((ErrorWeb)this.phErrores.Controls[0]).setMensaje(mensaje);
                return;
            }

            Page.RegisterStartupScript("muestraMensaje", SisPackController.GenerarJavaScripts.MostrarMensaje("El vendedor se eliminó correctamente."));
            StringBuilder scriptString = new StringBuilder();

            scriptString.Append("<script language='javascript'>\n");
            scriptString.Append("window.close();\n");
            scriptString.Append("</script>");
            Page.RegisterStartupScript("LlamadaCerrar" + this.ID, scriptString.ToString());
        }
        private void Page_Load(object sender, System.EventArgs e)
        {
            if (User.Identity.IsAuthenticated)
            {
                //this.SetCultura();
                string sOpcion = "conceptosLiqAgenciaAlta";
                Menu   oMenu   = (Menu)this.FindControl("Menu1");
                this.ValidarSeguridad(oMenu, sOpcion);
            }

            if (!IsPostBack)
            {
                Session["dsConceptosEntidad"] = null;
                this.txtTipoEntidadID.Text    = this.Request.QueryString["TipoEntidadID"];
                this.txtEntidadID.Text        = this.Request.QueryString["EntidadID"];

                if (this.txtTipoEntidadID.Text == "1")
                {
                    IAgencia oAgencia = AgenciaFactory.GetAgencia();
                    oAgencia.AgenciaID = Convert.ToInt32(this.txtEntidadID.Text);
                    oAgencia.ConsultarBasico();
                    this.lbl.Text = TraducirTexto("Etiquetas.Agencia");
                    this.lblEntidadDescrip.Text = oAgencia.RazonSocial;
                }
                else
                {
                    IVendedor oVendedor = VendedorFactory.GetVendedor();
                    oVendedor.VendedorID = Convert.ToInt32(this.txtEntidadID.Text);
                    oVendedor.Consultar();
                    this.lbl.Text = TraducirTexto("Etiquetas.Vendedor");
                    this.lblEntidadDescrip.Text = oVendedor.Apellido + " " + oVendedor.Nombre;
                }
            }
            if (this.txtTipoEntidadID.Text != "" && this.txtTipoEntidadID.Text != null)
            {
                this.BindGrid();
            }
        }
Exemplo n.º 10
0
        private void Page_Load(object sender, System.EventArgs e)
        {
            this.lblFechaActual.Text = DateTime.Today.ToString("dd/MM/yyyy");
            if (this.Request.QueryString["VendedorID"] != null && this.Request.QueryString["AgenciaID"] == null)
            {
                #region EsVendedor
                IVendedor vendedor = VendedorFactory.GetVendedor();
                vendedor.VendedorID = Convert.ToInt32(this.Request.QueryString["VendedorID"].ToString());
                vendedor.Consultar();
                this.lblTitulo.Text = "Vendedor: " + vendedor.NroLegajo.ToString() + " - " + vendedor.Nombre + " " + vendedor.Apellido;

                if (User.Identity.IsAuthenticated)
                {
                    string sOpcion = "evaluacionObjetivosIncentivosVendedores";
                    Menu   oMenu   = (Menu)this.FindControl("Menu1");
                    this.ValidarSeguridad(oMenu, sOpcion);
                }
                if (!IsPostBack)
                {
                    //this.BindGrillaObjetivosVendedor();
                    //this.BindGrillaIncentivosVendedor();
                    tdObjetivos.Attributes.Add("STYLE", "DISPLAY:none");
                    tdIncentivos.Attributes.Add("STYLE", "DISPLAY:none");
                    LlenarObjetivo();
                    LlenarIncentivo();
                }
                #endregion
            }
            else if (this.Request.QueryString["VendedorID"] == null && this.Request.QueryString["AgenciaID"] != null)
            {
                #region EsAgencia
                IAgencia agencia = AgenciaFactory.GetAgencia();
                agencia.AgenciaID = Convert.ToInt32(this.Request.QueryString["AgenciaID"].ToString());
                agencia.ConsultarBasicoByAgenciaID();
                this.lblTitulo.Text = "Agencia: " + agencia.SucursalDGI.ToString() + " - " + agencia.RazonSocial;

                if (User.Identity.IsAuthenticated)
                {
                    string sOpcion = "evaluacionObjetivosIncentivosAgencias";
                    Menu   oMenu   = (Menu)this.FindControl("Menu1");
                    this.ValidarSeguridad(oMenu, sOpcion);
                }
                if (!IsPostBack)
                {
                    //this.BindGrillaObjetivosAgencia();
                    //this.BindGrillaIncentivosAgencia();
                    tdObjetivos.Attributes.Add("STYLE", "DISPLAY:none");
                    tdIncentivos.Attributes.Add("STYLE", "DISPLAY:none");
                    LlenarObjetivo();
                    LlenarIncentivo();
                }
                #endregion
            }
            else if (Request.QueryString["PersonalID"] != null)
            {
                #region Personal
                IPersonal personal = PersonalFactory.GetPersonalFactory();
                personal.PersonalID = Utiles.Validaciones.obtieneEntero(Request.QueryString["PersonalID"]);
                personal.Consultar();
                lblTitulo.Text = "Personal: " + personal.Nombre + " " + personal.Apellido;

                if (User.Identity.IsAuthenticated)
                {
                    string sOpcion = "evaluacionObjetivosIncentivosPersonal";
                    Menu   oMenu   = (Menu)this.FindControl("Menu1");
                    this.ValidarSeguridad(oMenu, sOpcion);
                }

                if (!IsPostBack)
                {
                    tdObjetivos.Attributes.Add("STYLE", "DISPLAY:none");
                    LlenarObjetivo();
                }
                tdIncentivos.Attributes.Add("STYLE", "DISPLAY:none");
                lblIncentivo.Attributes.Add("STYLE", "DISPLAY:none");
                ddlIncentivo.Attributes.Add("STYLE", "DISPLAY:none");
                #endregion
            }
            SetearValidadores();
        }
Exemplo n.º 11
0
        private void Page_Load(object sender, System.EventArgs e)
        {
            #region permiteReportes
            string permiteReportes   = System.Configuration.ConfigurationSettings.AppSettings["Server"];
            string dirServerReportes = System.Configuration.ConfigurationSettings.AppSettings["DirServerReportes"];

            if (permiteReportes == "P")
            {
                // si no permite reportes, entonces redirecciona al servidor de reportes
                string pass = Session["Pass"] != null ? Session["Pass"].ToString() : "";
                Response.Redirect(dirServerReportes + "Redirecciona.aspx?LoginRedir=" + this.UsuarioConectadoID + "&p=" + pass + "&Pagina=ListadoMontosVentas.aspx");
            }
            #endregion

            #region User IsAuthenticated
            if (User.Identity.IsAuthenticated)
            {
                //this.SetCultura();
                string sOpcion = "montosVentas";
                Menu   oMenu   = (Menu)this.FindControl("Menu1");
                this.ValidarSeguridad(oMenu, sOpcion);
            }
            #endregion

            usuario = (IUsuarios)Session["Usuario"];
            this.tblAgencia.Attributes.Add("Style", "Display: none");
            this.tblVendedor.Attributes.Add("Style", "Display: none");
            this.tblCliente.Attributes.Add("Style", "Display: none");
            this.tblAgrupacionCliente.Attributes.Add("Style", "Display: none");

            if (!IsPostBack)
            {
                this.butExportarExcel.Enabled = false;
                CargarUnidadesVentas();
                CargarConceptosFacturacion();
                CargarCombosOrden();
                CargarCondicionesPago();
                this.LlenarListaZonas();
            }

            SetearValidadores();
            ScriptMostrar();
            RegistrarLimpiarAgencia();
            RegistrarLimpiarVendedor();
            RegistrarLimpiarCliente();
            RegistrarLimpiarAgrupacionCliente();

            IMontoVenta monto = MontoVentaFactory.GetMontoVenta();
            if (usuario.VendedorID != 0)
            {
                #region Vendedor
                this.tblAgencia.Attributes.Add("Style", "Display: none");
                this.tblVendedor.Attributes.Add("Style", "Display: inline");
                this.tblCliente.Attributes.Add("Style", "Display: none");
                this.tblEstadoCartera.Attributes.Add("Style", "Display: none");
                this.tblAgrupacionCliente.Attributes.Add("Style", "Display: none");

                IVendedor vendedor = VendedorFactory.GetVendedor();
                vendedor.VendedorID = usuario.VendedorID;
                vendedor.Consultar();
                this.busqVendedor.ApellidoNombre  = vendedor.Apellido + ", " + vendedor.Nombre;
                this.busqVendedor.Codigo          = vendedor.NroLegajo;
                this.busqVendedor.VendedorID      = vendedor.VendedorID.ToString();
                this.rbtVendedores.Checked        = true;
                this.rbtClientes.Checked          = false;
                this.rbtAgencias.Checked          = false;
                this.rbtAgrupacionCliente.Checked = false;
                this.rbtClientes.Attributes.Add("Style", "display: none");
                this.rbtAgencias.Attributes.Add("Style", "display: none");
                this.rbtAgrupacionCliente.Attributes.Add("Style", "display: none");

                ((TextBox)((Control)busqVendedor).FindControl("txtCodigo")).Enabled         = false;
                ((TextBox)((Control)busqVendedor).FindControl("txtApellidoNombre")).Enabled = false;
                #endregion
            }
            else if (usuario.AgenciaID != 0 && usuario.AgenciaID != monto.EsAdministracion(UnidadNegocioID))
            {
                tblAgencia.Attributes.Add("Style", "Display: inline");
                tblVendedor.Attributes.Add("Style", "Display: none");
                tblCliente.Attributes.Add("Style", "Display: none");
                tblEstadoCartera.Attributes.Add("Style", "Display: none");
                tblAgrupacionCliente.Attributes.Add("Style", "Display: none");

                IAgencia agencia = AgenciaFactory.GetAgencia();
                agencia.AgenciaID = usuario.AgenciaID;
                agencia.ConsultarBasicoByAgenciaID();
                busqAgencia.AgenciaID   = agencia.AgenciaID.ToString();
                busqAgencia.Sucursal    = agencia.SucursalDGI;
                busqAgencia.RazonSocial = agencia.RazonSocial;
                rbtVendedores.Checked   = false;
                rbtClientes.Checked     = false;
                rbtAgencias.Checked     = true;
                rbtClientes.Attributes.Add("Style", "display: none");
                rbtVendedores.Attributes.Add("Style", "display: none");
                rbtAgrupacionCliente.Attributes.Add("Style", "display: none");
                ((TextBox)((Control)busqAgencia).FindControl("txtSucursal")).Enabled    = false;
                ((TextBox)((Control)busqAgencia).FindControl("txtRazonSocial")).Enabled = false;
            }

            /*Esto agregue*/
            this.RegistrarHabilitarZonas();
            this.chkZona.Attributes.Add("onclick", "HabilitarZonas();");
            ScriptMostrar();
            RegistrarLimpiarAgencia();
            RegistrarLimpiarVendedor();
            RegistrarLimpiarCliente();
            RegistrarLimpiarAgrupacionCliente();
            this.rbtAgencias.Attributes.Add("onclick", "mostrar();LimpiarAgencia();document.getElementById('tblEstadoCartera').style.display = 'none';");
            this.rbtVendedores.Attributes.Add("onclick", "mostrar();LimpiarVendedor();document.getElementById('tblEstadoCartera').style.display = 'none';");
            this.rbtClientes.Attributes.Add("onclick", "mostrar();LimpiarCliente();document.getElementById('tblEstadoCartera').style.display = 'inline';");
            this.rbtAgrupacionCliente.Attributes.Add("onclick", "mostrar();LimpiarAgrupacionCliente();document.getElementById('tblEstadoCartera').style.display = 'none';");

            /* Esto estaba
             * else
             * {
             * this.rbtAgencias.Attributes.Add("onclick","mostrar();LimpiarAgencia();document.getElementById('tblEstadoCartera').style.display = 'none';");
             * this.rbtVendedores.Attributes.Add("onclick","mostrar();LimpiarVendedor();document.getElementById('tblEstadoCartera').style.display = 'none';");
             * this.rbtClientes.Attributes.Add("onclick","mostrar();LimpiarCliente();document.getElementById('tblEstadoCartera').style.display = 'inline';");
             * }*/
        }
Exemplo n.º 12
0
        private void Editar()
        {
            IUsuarios usuario = UsuariosFactory.GetUsuario();

            usuario.UsuarioID = Utiles.Validaciones.obtieneEntero(this.txtUsuarioID.Text);
            usuario.Consultar();

            // seteo los atributos del usuario en la pagina
            this.txtUsuarioID.Text       = usuario.UsuarioID.ToString();
            this.txtApellido.Text        = usuario.Apellido;
            this.txtEmail.Text           = usuario.Email;
            this.txtLogin.Text           = usuario.Login;
            this.txtNombre.Text          = usuario.Nombre;
            this.cmbEstado.SelectedValue = usuario.EstadoUsuarioPerfilID.ToString();


            ///faltannnnn
            ///TODO: FALTA TRAER LA UNegocio del usuario: sacada hasta ver que no hayan creado ningún usuario con la UNEgocio: Petrobus
            this.cmbUnidadNegocio.SelectedValue = usuario.UnidadNegocioID.ToString();             //descomentar esto cuando se haga el control de la UNegocio
            if (usuario.AgenciaID != 0)
            {
                IAgencia oAgencia = AgenciaFactory.GetAgencia();
                oAgencia.AgenciaID = usuario.AgenciaID;

                oAgencia.ConsultarBasico();
                this.busqAgencia.AgenciaID   = oAgencia.AgenciaID.ToString();
                this.busqAgencia.Sucursal    = oAgencia.SucursalDGI;
                this.busqAgencia.RazonSocial = oAgencia.RazonSocial;
                this.rbtAgencias.Checked     = true;
//				this.tblCliente.Visible=false;
//				this.tblVendedor.Visible=false;
//				this.tblNinguno.Visible=false;
            }
            else if (usuario.VendedorID != 0)
            {
                IVendedor oVendedor = VendedorFactory.GetVendedor();
                oVendedor.VendedorID = usuario.VendedorID;

                oVendedor.Consultar();
                this.busqVendedor.VendedorID     = oVendedor.VendedorID.ToString();
                this.busqVendedor.Codigo         = oVendedor.NroLegajo;
                this.busqVendedor.ApellidoNombre = oVendedor.Apellido + " " + oVendedor.Nombre;
                this.rbtVendedores.Checked       = true;
//				this.tblCliente.Visible=false;
//				this.tblAgencia.Visible=false;
//				this.tblNinguno.Visible=false;
            }
            else if (usuario.ClienteID != 0)
            {
                ICliente oCliente = ClienteFactory.GetCliente();
                oCliente.ClienteID = usuario.ClienteID;

                oCliente.Consultar();
                this.busqCliente.ClienteID   = oCliente.ClienteID.ToString();
                this.busqCliente.Codigo      = oCliente.Codigo;
                this.busqCliente.RazonSocial = oCliente.RazonSocial;
                this.rbtCliente.Checked      = true;
//				this.tblVendedor.Visible=false;
//				this.tblAgencia.Visible=false;
//				this.tblNinguno.Visible=false;

                //si el lciente tiene asociada una agencia de retiro la muestro
                if (usuario.AgenciaRetiroID != 0)
                {
                    IAgencia oAgencia = AgenciaFactory.GetAgencia();
                    oAgencia.AgenciaID = usuario.AgenciaRetiroID;

                    oAgencia.ConsultarBasico();
                    this.busqAgenciaRetiro.AgenciaID   = oAgencia.AgenciaID.ToString();
                    this.busqAgenciaRetiro.Sucursal    = oAgencia.SucursalDGI;
                    this.busqAgenciaRetiro.RazonSocial = oAgencia.RazonSocial;
                }
            }
            else
            {
                this.rbtNinguno.Checked = true;
//				this.tblVendedor.Visible=false;
//				this.tblAgencia.Visible=false;
//				this.tblCliente.Visible=false;
            }
        }
        private void Page_Load(object sender, System.EventArgs e)
        {
            string permiteReportes   = System.Configuration.ConfigurationSettings.AppSettings["Server"];
            string dirServerReportes = System.Configuration.ConfigurationSettings.AppSettings["DirServerReportes"];

            if (permiteReportes == "P")
            {
                // si no permite reportes, entonces redirecciona al servidor de reportes
                string pass = Session["Pass"] != null ? Session["Pass"].ToString() : "";
                Response.Redirect(dirServerReportes + "Redirecciona.aspx?LoginRedir=" + this.UsuarioConectadoID + "&p=" + pass + "&Pagina=ReporteAlertaVentas.aspx");
            }

            if (User.Identity.IsAuthenticated)
            {
                //this.SetCultura();
                string sOpcion = "reporteAlertaVentas";
                Menu   oMenu   = (Menu)this.FindControl("Menu1");
                this.ValidarSeguridad(oMenu, sOpcion);
            }

            if (!Page.IsPostBack)
            {
                CargarCategoria();
                CargarUnidadesVentas();
            }

            ScriptMostrar();
            RegistrarLimpiarAgencia();
            RegistrarLimpiarVendedor();
            RegistrarLimpiarCliente();
            SetearValidadores();

            IUsuarios usuario = (IUsuarios)Session["Usuario"];

            if (usuario.VendedorID != 0)
            {
                this.tblAgencia.Attributes.Add("Style", "Display: none");
                this.tblVendedor.Attributes.Add("Style", "Display: inline");
                this.tblCliente.Attributes.Add("Style", "Display: inline");

                this.rbtVendedores.Attributes.Add("onclick", "mostrar();");

                IVendedor vendedor = VendedorFactory.GetVendedor();
                vendedor.VendedorID = usuario.VendedorID;
                vendedor.Consultar();
                this.busqVendedor.ApellidoNombre = vendedor.Apellido + ", " + vendedor.Nombre;
                this.busqVendedor.Codigo         = vendedor.NroLegajo;
                this.busqVendedor.VendedorID     = vendedor.VendedorID.ToString();

                this.rbtAgencias.Attributes.Add("Style", "display: none");
                this.rbtClientes.Attributes.Add("Style", "display: none");

                ((TextBox)((Control)busqVendedor).FindControl("txtCodigo")).Enabled         = false;
                ((TextBox)((Control)busqVendedor).FindControl("txtApellidoNombre")).Enabled = false;

                this.busqCliente.Visible = false;
                this.lblCliente.Visible  = false;

                this.rbtVendedores.Checked = true;
            }
            else
            {
                this.rbtAgencias.Attributes.Add("onclick", "mostrar();LimpiarAgencia();");
                this.rbtVendedores.Attributes.Add("onclick", "mostrar();LimpiarVendedor();");
                this.rbtClientes.Attributes.Add("onclick", "mostrar();LimpiarCliente();");
            }
        }