public void Limpiar() { TbIdPresupuesto.Text = ""; TbIdPresupuestoDetalle.Text = ""; TbValor.Text = ""; TbDescripcion.Text = ""; VistaGridView.DataSource = null; VistaGridView.DataBind(); }
public void Limpiar() { TbIdPago.Text = ""; TbIdPagoDetalle.Text = ""; TbValorDetalle.Text = ""; TbValor.Text = ""; VistaGridView.DataSource = null; VistaGridView.DataBind(); }
protected void BtnAgregar_Click(object sender, EventArgs e) { if (Session["PagoDetalle"] != null) { pag = (PagosCxP)Session["PagoDetalle"]; } pag.AgregarDetalle(Convert.ToInt32(DdIdCxP.SelectedValue), Convert.ToDouble(TbValorDetalle.Text)); VistaGridView.DataSource = pag.pagoDetalle; VistaGridView.DataBind(); Session["PagoDetalle"] = pag; LimpiarDetelle(); }
protected void BtnAgregar_Click(object sender, EventArgs e) { if (Session["PresupuestoDetalle"] != null) { pre = (Presupuesto)Session["PresupuestoDetalle"]; } pre.AgregarDetalle(Convert.ToInt32(DdIdCategoria.SelectedValue), Convert.ToDouble(TbValor.Text)); VistaGridView.DataSource = pre.presupuestoDetalle; VistaGridView.DataBind(); Session["PresupuestoDetalle"] = pre; LimpiarDetalle(); }
protected void BtnAgregar_Click(object sender, EventArgs e) { if (Session["CobroDetalle"] != null) { Cob = (CobroCxC)Session["CobroDetalle"]; } Cob.AgregarDetalle(Convert.ToInt32(DdIdCxC.SelectedValue), Convert.ToDouble(TbValorDetalle.Text)); VistaGridView.DataSource = Cob.cobroDetalle; VistaGridView.DataBind(); Session["CobroDetalle"] = Cob; LimpiarDetalle(); }
protected void BtnSiguiente_Click(object sender, EventArgs e) { if (TbIdPresupuesto.Text == string.Empty) { if (Session["CobroDetalle"] != null) { pre = (Presupuesto)Session["PresupuestoDetalle"]; } OtenerDatos(); if (pre.Insertar()) { Alert("Presupuesto Se Guardo Corectamente"); VistaGridView.DataSource = null; VistaGridView.DataBind(); Limpiar(); } else { Alert("Presupuesto No Se Pudo Guardar Corectamente "); } } else { OtenerDatos(); Limpiar(); if (pre.Modificar()) { Alert("Presupuesto Se Modificada Corectamente"); } else { Alert("Presupuesto No Se Modificar Corectamente"); } } }
public void Buscar(int ID) { VistaGridView.DataSource = PresupuestoDetalles.Lista("*", "PresupuestoDetalles where IdPresupuesto =" + ID); VistaGridView.DataBind(); }
public void Buscar(int ID) { VistaGridView.DataSource = PagoDetalle.Lista("*", "PagoDetalle where IdPago =" + ID); VistaGridView.DataBind(); }