Esempio n. 1
0
    protected void btn_editGuardar_Click(object sender, EventArgs e)
    {
        RemoProgDistribuicionBC r = new RemoProgDistribuicionBC();

        r.SITE_ID     = Convert.ToInt32(this.ddl_editSite.SelectedValue);
        r.DESCRIPCION = this.txt_editDesc.Text;
        if (string.IsNullOrEmpty(this.hf_idRPD.Value))
        {
            if (r.Crear(r))
            {
                this.ddl_site.SelectedValue = this.ddl_editSite.SelectedValue;
                this.ObtenerProgramacion(true);
                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "mensaje", "showAlert('Agregado Correctamente!');", true);
                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "mensaje2", " $('#modalRemoProg').modal('hide')", true);
            }
            else
            {
                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "mensaje", "alert('Error!');", true);
            }
        }
        else
        {
            r.ID = Convert.ToInt32(this.hf_idRPD.Value);
            if (r.Modificar(r))
            {
                this.ObtenerProgramacion(true);
                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "mensaje", "alert('Modificado Correctamente!');", true);
            }
            else
            {
                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "mensaje", "alert('Error!');", true);
            }
        }
    }
Esempio n. 2
0
    private void ObtenerSeleccionados(bool forzarBD)
    {
        DataTable dt;

        if (this.ViewState["seleccionados"] == null || forzarBD)
        {
            RemoProgDistribuicionBC rpd = new RemoProgDistribuicionBC();
            this.ViewState["seleccionados"] = rpd.ObtenerPlayas(Convert.ToInt32(this.hf_idRPD.Value));
        }
        DataView dw = new DataView((DataTable)this.ViewState["seleccionados"]);

        dw.Sort = "ORDEN ASC";
        dt      = dw.ToTable();
        string cadena = "";

        foreach (DataRow dr in dt.Rows)
        {
            if (!string.IsNullOrEmpty(cadena))
            {
                cadena += ",";
            }
            cadena += dr["PLAY_ID"].ToString();
        }
        this.hf_seleccionados.Value      = cadena;
        this.gv_seleccionados.DataSource = dt;
        this.gv_seleccionados.DataBind();
    }
Esempio n. 3
0
 protected void gv_listar_RowCommand(object sender, GridViewCommandEventArgs e)
 {
     if (e.CommandName == "ASIGNAR")
     {
         this.LimpiarTodo();
         RemoProgDistribuicionBC r = new RemoProgDistribuicionBC();
         this.hf_idRPD.Value = e.CommandArgument.ToString();
         int id = Convert.ToInt32(this.hf_idRPD.Value);
         r = r.ObtenerXId(id);
         this.hf_idSite.Value = r.SITE_ID.ToString();
         ZonaBC z = new ZonaBC();
         this.utils.CargaDrop(this.ddl_asignarZona, "ID", "DESCRIPCION", z.ObtenerXSite(r.SITE_ID, false));
         this.ObtenerSeleccionados(true);
         ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "modal", "modalAsignar();", true);
     }
     if (e.CommandName == "EDITAR")
     {
         this.LimpiarTodo();
         RemoProgDistribuicionBC r = new RemoProgDistribuicionBC();
         this.hf_idRPD.Value = e.CommandArgument.ToString();
         int id = Convert.ToInt32(this.hf_idRPD.Value);
         r = r.ObtenerXId(id);
         this.ddl_editSite.SelectedValue = r.SITE_ID.ToString();
         this.txt_editDesc.Text          = r.DESCRIPCION;
         ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "modal", "modalRemoProg();", true);
     }
     if (e.CommandName == "ACTIVAR")
     {
         this.hf_idRPD.Value = e.CommandArgument.ToString();
         ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "modal", "modalConfirmar();", true);
     }
 }
Esempio n. 4
0
    private void cargarDropsForm()
    {
        int                     site_id = int.Parse(this.ddl_siteEdit.SelectedValue);
        RemolcadorBC            r       = new RemolcadorBC();
        RemoProgDistribuicionBC rpd     = new RemoProgDistribuicionBC();

        this.drops.Usuario(this.ddl_usuaEdit, site_id, true);
        this.utils.CargaDrop(this.ddl_programacionEdit, "ID", "DESCRIPCION", rpd.ObtenerTodo(site_id));
        this.utils.CargaDrop(this.ddl_remoEdit, "ID", "DESCRIPCION", r.obtenerTodos(site_id));
    }
Esempio n. 5
0
    protected void btn_Conf_Click(object sender, EventArgs e)
    {
        RemoProgDistribuicionBC r = new RemoProgDistribuicionBC();

        if (r.ActivarDesactivar(Convert.ToInt32(this.hf_idRPD.Value)))
        {
            ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "mensaje", "showAlert('Todo OK');", true);
        }
        else
        {
            ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "mensaje", "alert('Todo mal!');", true);
        }
        this.ObtenerProgramacion(true);
        ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "cerrar", "$('#modalConfirmar').modal('hide');", true);
    }
Esempio n. 6
0
    protected void btn_asignarGuardar_Click(object sender, EventArgs e)
    {
        RemoProgDistribuicionBC r = new RemoProgDistribuicionBC();
        DataTable dt = (DataTable)this.ViewState["seleccionados"];
        int       id = Convert.ToInt32(this.hf_idRPD.Value);

        if (r.Asignar(dt, id))
        {
            ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "mensaje", "showAlert('Todo OK!');", true);
        }
        else
        {
            ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "mensaje", "alert('Error!');", true);
        }
        ObtenerPlayas(true);
        ObtenerProgramacion(true);
    }
Esempio n. 7
0
    private void ObtenerProgramacion(bool forzarBD)
    {
        if (this.ViewState["listado"] == null || forzarBD)
        {
            RemoProgDistribuicionBC rpd = new RemoProgDistribuicionBC();
            this.ViewState["listado"] = rpd.ObtenerTodo(Convert.ToInt32(this.ddl_site.SelectedValue));
            this.ViewState.Remove("filtrados");
        }
        DataTable dt;

        if (this.ViewState["filtrados"] == null)
        {
            dt = (DataTable)this.ViewState["listado"];
        }
        else
        {
            dt = (DataTable)this.ViewState["filtrados"];
        }
        this.gv_listar.DataSource = dt;
        this.gv_listar.DataBind();
    }
Esempio n. 8
0
 public bool Modificar(RemoProgDistribuicionBC r)
 {
     return(tran.RemoProgDistribuicion_Modificar(r));
 }
Esempio n. 9
0
 public bool Crear(RemoProgDistribuicionBC r)
 {
     return(tran.RemoProgDistribuicion_Crear(r));
 }