public void GuardarVenta(string cmbTipoVenta) { int numFilas = LstVenta.Count(); if (numFilas > 0) { Venta v = new Venta(); v.LstDetalle = new List<DetalleVenta>(); v.LstPagos = new List<VentaPago>(); v.LstDetalleServicio = new List<DetalleVentaServicio>(); //guardar datos de la venta //completar if (tipoVenta[cmbTipoVenta] == 0) v.TipoDocPago = "Boleta"; else { v.TipoDocPago = "Factura"; //validar que los datos de ruc y razon social if (!string.IsNullOrEmpty(TxtRuc) && !string.IsNullOrEmpty(TxtRazonSocial)) { v.Ruc = TxtRuc; v.RazonSocial = TxtRazonSocial; } else { MessageBox.Show("Falta ingresar Ruc o Razón Social", "AVISO", MessageBoxButton.OK, MessageBoxImage.Error); return; } } v.NumDocPago = null; v.TipoVenta = "Tienda"; v.Estado = 1; v.FechaReg = System.DateTime.Now; v.IdUsuario = Convert.ToInt32(Thread.CurrentPrincipal.Identity.Name); //idCliente desde la tarjeta de este si es que hay if (!string.IsNullOrEmpty(TxtCliente)) { v.IdCliente = Convert.ToInt32(cliente.Id); v.CodTarjeta = Convert.ToInt32(TxtCliente); } else { v.IdCliente = -1; v.CodTarjeta = -1; } //guardar detalle de la venta foreach (DetalleVenta dv in lstVenta) { v.LstDetalle.Add(dv); } v.Monto = total; v.Descuento = desc; v.Igv = igv_total; v.PtosGanados = Convert.ToInt32(v.Monto / PUNTO); foreach (VentaPago vp in lstPagos) { if (vp.Nombre.Equals("Efectivo")) { vp.Monto -= Double.Parse(txtVuelto); } v.LstPagos.Add(vp); } //guardar detalle de servicios de la venta, si es que hay if (LstVentaServicios.Count() > 0) { foreach (DetalleVentaServicio dvs in LstVentaServicios) { v.LstDetalleServicio.Add(dvs); } } //insertar en la base de datos DBConexion db = new DBConexion(); db.conn.Open(); SqlTransaction trans = db.conn.BeginTransaction(IsolationLevel.Serializable); db.cmd.Transaction = trans; VentaSQL vsql = new VentaSQL(db); if (v.IdCliente == -1) { int k = vsql.AgregarSinCliente(v); if (k != 0) { NotaISSQL ntgw = new NotaISSQL(); NotaIS nota = new NotaIS(); AlmacenSQL asql = new AlmacenSQL(); nota.IdAlmacen = asql.BuscarAlmacen(-1, idTienda, 2).IdAlmacen; // Logica de Referencia de documento //Si existe documento de referencia colocar el ID nota.IdDoc = v.IdVenta; nota.IdMotivo = 9; nota.IdResponsable = v.IdUsuario; nota.Observaciones = "Venta en Cajero"; nota.Tipo = 2; List<ProductoCant> LstProductos = new List<ProductoCant>(); List<ProductoCant> lpcan = new List<ProductoCant>(); for (int i = 0; i < v.LstDetalle.Count; i++) { Producto p = new ProductoSQL().Buscar_por_CodigoProducto(v.LstDetalle.ElementAt(i).IdProducto); ProductoCant pcan = new ProductoCant(); pcan.IdProducto = p.IdProducto; pcan.CodigoProd = p.CodigoProd; pcan.Nombre = p.Nombre; pcan.CanAtender = v.LstDetalle.ElementAt(i).Cantidad.ToString(); lpcan.Add(pcan); } LstProductos = new List<ProductoCant>(lpcan); nota.LstProducto = LstProductos; nota.IdNota = ntgw.AgregarNota(nota); trans.Commit(); ntgw.AgregarNotaxSector(nota); MessageBox.Show("Venta Realizada con Exito"); Limpiar(); } else { trans.Rollback(); MessageBox.Show("Ocurrio un Error en el proceso"); } } else { int k = vsql.Agregar(v); if (k != 0) { NotaISSQL ntgw = new NotaISSQL(); NotaIS nota = new NotaIS(); AlmacenSQL asql = new AlmacenSQL(); nota.IdAlmacen = asql.BuscarAlmacen(-1, idTienda, 2).IdAlmacen; // Logica de Referencia de documento //Si existe documento de referencia colocar el ID nota.IdDoc = v.IdVenta; nota.IdMotivo = 9; nota.IdResponsable = v.IdUsuario; nota.Observaciones = "Venta en Cajero"; nota.Tipo = 2; List<ProductoCant> LstProductos = new List<ProductoCant>(); List<ProductoCant> lpcan = new List<ProductoCant>(); for (int i = 0; i < v.LstDetalle.Count; i++) { Producto p = new ProductoSQL().Buscar_por_CodigoProducto(v.LstDetalle.ElementAt(i).IdProducto); ProductoCant pcan = new ProductoCant(); pcan.IdProducto = p.IdProducto; pcan.CodigoProd = p.CodigoProd; pcan.Nombre = p.Nombre; pcan.CanAtender = v.LstDetalle.ElementAt(i).Cantidad.ToString(); lpcan.Add(pcan); } LstProductos = new List<ProductoCant>(lpcan); nota.LstProducto = LstProductos; nota.IdNota = ntgw.AgregarNota(nota); trans.Commit(); ntgw.AgregarNotaxSector(nota); MessageBox.Show("Venta Realizada con Exito"); Limpiar(); } else { trans.Rollback(); MessageBox.Show("Ocurrio un Error en el proceso"); } } if (v.TipoDocPago.Equals("Boleta")) { GenerarPDFBoletaProductos(v); if (v.LstDetalleServicio.Count() > 0) GenerarPDFBoletaServicios(v); } else { GenerarPDFFacturaProductos(v); if (v.LstDetalleServicio.Count() > 0) GenerarPDFFacturaServicios(v); } } else { MessageBox.Show("Debe ingreasar datos de la venta"); return; } }
public void GuardarMovimiento(DynamicGrid anaquel, DynamicGrid deposito) { int exito; /*Inicializacion de la transacción*/ DBConexion db = new DBConexion(); try { db.conn.Open(); SqlTransaction trans = db.conn.BeginTransaction(IsolationLevel.ReadCommitted); db.cmd.Transaction = trans; SectorSQL sectorSQL = new SectorSQL(db); UbicacionSQL ubicacionSQL = new UbicacionSQL(db); /*Tablas temporales*/ DataTable sectoresDT = sectorSQL.CrearSectoresDT(); DataTable ubicacionesDT = ubicacionSQL.CrearUbicacionesDT(); List<Sector> lstSectores = new List<Sector>(); List<Ubicacion> ubicacionesModificadas = new List<Ubicacion>(); /*Agrupo todos los sectores y ubicaciones modificadas*/ for (int i = 0; i < anaquel.lstZonas.Count; i++) { lstSectores.AddRange(anaquel.lstZonas[i].LstSectores); for (int j = 0; j < anaquel.lstZonas[i].LstSectores.Count; j++) { ubicacionesModificadas.AddRange(anaquel.lstZonas[i].LstSectores[j].LstUbicaciones); } } /*Agrego las filas a los DT*/ sectorSQL.AgregarFilasToSectoresDT(sectoresDT, lstSectores); ubicacionSQL.AgregarFilasToUbicacionesDT(ubicacionesDT, ubicacionesModificadas); /*empieza el guardado en la bd*/ exito = sectorSQL.AgregarMasivo(sectoresDT, trans); //insertados en TemporalSector if (exito > 0) { exito = sectorSQL.ActualizarSectorMasivo(); //actualizados en tabla Sector if (exito > 0) { exito = sectorSQL.ActualizarIdSector(); //actualizo idSector en tabla sector if (exito > 0) { /*Agrego las ubicaciones de almacen de salida*/ ubicacionSQL.AgregarFilasToUbicacionesDT(ubicacionesDT, deposito.Ubicaciones, deposito.Ubicaciones[0][0][0].IdAlmacen); exito = ubicacionSQL.AgregarMasivo(ubicacionesDT, trans); if (exito > 0) { exito = ubicacionSQL.ActualizarIdSector(); if (exito > 0) { exito = ubicacionSQL.ActualizarUbicacionMasivo(); if (exito > 0) { /*Agrego el movimiento como un "todo" a la bd*/ NotaISSQL notaSQL = new NotaISSQL(db); /*Salida para el depósito*/ NotaIS nota = new NotaIS(); nota.IdMotivo = 8; nota.Tipo = 2; nota.Observaciones = ""; nota.IdDoc = 0; nota.IdAlmacen = idDeposito; nota.IdResponsable = idResponsable; /*Entrada para el anaquel*/ NotaIS notaAn = new NotaIS(); notaAn.IdMotivo = 8; notaAn.Tipo = 1; notaAn.Observaciones = ""; notaAn.IdDoc = 0; notaAn.IdAlmacen = idAnaquel; notaAn.IdResponsable = idResponsable; int idNotaDeposito = notaSQL.AgregarNota(nota, 1); int idNotaAnaquel = notaSQL.AgregarNota(notaAn, 1); if (idNotaDeposito > 0 && idNotaAnaquel> 0) { exito = sectorSQL.ActualizarTemporalSector(idNotaDeposito); if (exito > 0) { exito = notaSQL.AgregarNotaxSector(); if (exito > 0) { exito = sectorSQL.ActualizarTemporalSector(idNotaAnaquel); if (exito > 0) { exito = notaSQL.AgregarNotaxSector(); if (exito > 0) { UtilesSQL util = new UtilesSQL(db); util.LimpiarTabla("TemporalUbicacion"); util.LimpiarTabla("TemporalSector"); trans.Commit(); _windowManager.ShowDialog(new AlertViewModel(_windowManager, "Los productos fueron transferidos correctamente")); return; } } } } } } } } } } } _windowManager.ShowDialog(new AlertViewModel(_windowManager, "Lo sentimos , se produjo un error")); trans.Rollback(); } catch (SqlException e) { _windowManager.ShowDialog(new AlertViewModel(_windowManager, "Se fue la conexión")); } }