protected void ButtonPagar_Click(object sender, EventArgs e) { Venta v = new Venta(); List <Producto> carrito = new List <Producto>(); carrito = (List <Producto>)Session["carrito"]; v.Total = totalizar(carrito); v.Fecha = DateTime.Now; Session["venta"] = v; if (Agregar.AgregarVenta(v) == false) { this.Page.Response.Write("<script language='JavaScript'>window.alert('error al procesar la venta');</script>"); } Usuario user = (Usuario)Session["user"]; int idVenta = Buscar.ultimaVenta(); int idUsuario = Buscar.IdUsuario(user.Rut); foreach (var item in carrito) { if (!Agregar.AgregarDetalle(idVenta, idUsuario, item.Id)) { this.Page.Response.Write("<script language='JavaScript'>window.alert('error al procesar la venta');</script>"); } } Response.Redirect("~/Forms/Boleta.aspx"); }
public void pasarPedidos() { Random random = new Random(); foreach (Pedidos item in pedidosXML) { ListaPedidos.Enqueue(item); Thread.Sleep(random.Next(1000, 2000)); Agregar.Invoke(ListaPedidos.Dequeue()); } }
public static Respuesta GuardarDatos(PersonaFisicaJugador obj) { Respuesta resultado = new Respuesta(); try { resultado = Agregar.AltaPersonaFisicaJugador(obj); } catch (Exception e) { resultado.Exito = false; resultado.Errores = new List <string>(); resultado.Errores.Add(e.Message); } return(resultado); }
public static Respuesta GuardarUsuario(Usuario obj) { Respuesta resultado = new Respuesta(); try { resultado = Agregar.AltaUsuario(obj); } catch (Exception e) { resultado.Exito = false; resultado.Errores = new List <string>(); resultado.Errores.Add(e.Message); } return(resultado); }
public static Respuesta GuardarDatos(EquipoRival obj) { Respuesta resultado = new Respuesta(); try { obj.IdUsuario = ((Usuario)HttpContext.Current.Session["loginUsuario"]).IdUsuario; resultado = Agregar.AltaEquipoRival(obj); } catch (Exception e) { resultado.Exito = false; resultado.Errores = new List <string>(); resultado.Errores.Add(e.Message); } return(resultado); }
public static Respuesta GuardarDatos(FichaTecnicaJugador obj) { Respuesta resultado = new Respuesta(); try { obj.IdJugador = ((int)HttpContext.Current.Session["personaJugador"]); resultado = Agregar.AltaFichaTecnicaJugador(obj); } catch (Exception e) { resultado.Exito = false; resultado.Errores = new List <string>(); resultado.Errores.Add(e.Message); } return(resultado); }
public static Respuesta GuardarDatos(JugadorCartera obj) { Respuesta resultado = new Respuesta(); try { obj.idUsuario = ((Usuario)HttpContext.Current.Session["loginUsuario"]).IdUsuario; resultado = Agregar.AltaJugadorCartera(obj); HttpContext.Current.Session["personaJugador"] = resultado.Id; } catch (Exception e) { resultado.Exito = false; resultado.Errores = new List <string>(); resultado.Errores.Add(e.Message); } return(resultado); }
public static Respuesta GuardarDatos(FichaTecnicaJugadorDeCartera obj) { Respuesta resultado = new Respuesta(); //string asd = HttpContext.Current.Request.Form["PiernaHabil"].ToString(); try { obj.IdJugador = ((int)HttpContext.Current.Session["personaJugador"]); resultado = Agregar.AltaFichaTecnicaJugadorDeCartera(obj); } catch (Exception e) { resultado.Exito = false; resultado.Errores = new List <string>(); resultado.Errores.Add(e.Message); } return(resultado); }
protected void ButtonAgregarUsuario_Click(object sender, EventArgs e) { Usuario user = new Usuario(); user.Rut = int.Parse(TextBoxRut.Text); user.Nombre = TextBoxNombre.Text; user.Mail = TextBoxMail.Text; user.Username = TextBoxUser.Text; user.Password = TextBoxContraseña.Text; user.Privilegio = false; if (Agregar.AgregarUsuario(user)) { this.Page.Response.Write("<script language='JavaScript'>window.alert('se agrego correctamente');</script>"); } else { this.Page.Response.Write("<script language='JavaScript'>window.alert('error al ingresar producto');</script>"); } }
protected void ButtonInsertProducto_Click(object sender, EventArgs e) { Producto p = new Producto(); p.Nombre = TextBoxNombreProducto.Text; p.Descripcion = TextBoxDescripcion.Text; p.Precio = int.Parse(TextBoxPrecio.Text); p.Stock = int.Parse(TextBoxStock.Text); p.Foto = "~/FotoArticulos/" + FileUploadFoto.FileName; FileUploadFoto.SaveAs(Server.MapPath("~/FotoArticulos/" + FileUploadFoto.FileName)); p.IdCategoria = int.Parse(DropDownListCategoria.SelectedValue); if (Agregar.AgregarProducto(p)) { this.Page.Response.Write("<script language='JavaScript'>window.alert('se agrego correctamente');</script>"); } else { this.Page.Response.Write("<script language='JavaScript'>window.alert('error al ingresar producto');</script>"); } }
protected void Unnamed1_Click(object sender, EventArgs e) { if (dxtproblema.Text.Trim() != "" && txtdescripcion.Text.Trim() != "" && txtmaquina.Text.Trim() != "" && txtescritor.Text.Trim() != "") { try { Agregar pReporte = new Agregar(); pReporte.Maquina = txtmaquina.Text.Trim(); pReporte.Descripcion = txtdescripcion.Text.Trim(); pReporte.Problema = dxtproblema.Text.Trim(); pReporte.Escritor = txtescritor.Text.Trim(); int resultado = conexiones.agregar(pReporte); conec.Open(); MySqlCommand cmd = conec.CreateCommand(); cmd.CommandText = "select * from reporte"; cmd.ExecuteNonQuery(); DataTable dt = new DataTable(); MySqlDataAdapter da = new MySqlDataAdapter(cmd); da.Fill(dt); conec.Close(); alerta.Text = "<script>Swal.fire('Su Reporte se Envio con exito.', '¡Gracias por preferirnos!', 'success'); </script>"; txtmaquina.Text = ""; dxtproblema.Text = ""; txtescritor.Text = ""; txtdescripcion.Text = ""; } catch { alerta.Text = "<script>Swal.fire('Algo salio mal', 'Intentalo otra vez', 'error') </script>"; } } else { alerta.Text = "<script>Swal.fire('ADVERTENCIA', 'No deje espacios en blanco', 'error') </script>"; } }