public static CENVentaFiltroPA ListarDetalleVenta(int codigo) { CENVentaFiltroPA listES = new CENVentaFiltroPA(); CLN_Venta clnVenta = new CLN_Venta(); try { listES = clnVenta.listarVentaCodigo(codigo); CLNVentaPdf clnPDF = new CLNVentaPdf(); CENPreventaLista lista = new CENPreventaLista(); //listES.l_pdfbytes = clnPDF.VentaPdf(codigo); } catch (Exception ex) { throw ex; } return(listES); }
public static CENRespVenta RegistrarVenta(int codPreventa, int codCliente, int codVendedor, string fechPag, int tipoVenta, int tipoMoneda, double recargo, double IGV, double total, int sucursal, int tipoDocumentoVenta, int codPuntoEntrega) { CLN_Venta clnVenta = new CLN_Venta(); CLNConcepto clnConcepto = new CLNConcepto(); CLNConsultas consulta = new CLNConsultas(); CENRespVenta respuesta = new CENRespVenta(); try { respuesta = clnVenta.RegistrarVenta(codPreventa, codCliente, codVendedor, fechPag, tipoVenta, tipoMoneda, recargo, IGV, total, sucursal, tipoDocumentoVenta, codPuntoEntrega); } catch (Exception ex) { //throw ex; respuesta.flag = -1; respuesta.venta = 0; respuesta.msje = clnConcepto.obtener_descripcion_concepto(CENConstante.g_const_100, CENConstante.g_const_1046); } return(respuesta); }
public static List <CENPreventaFiltroPA> ListarPreventa(string codPreventa, string codCliente, string codVendedor, string codFechaI, string codFechaF) { CLN_Venta clnVenta = new CLN_Venta(); CLNConsultas consulta = new CLNConsultas(); CENPreventaFiltro data = new CENPreventaFiltro(); List <CENPreventaFiltroPA> lista = new List <CENPreventaFiltroPA>(); try { if (consulta.ValidarNumero(codCliente)) { data.codCliente = Int32.Parse(codCliente); } else { data.codCliente = CENConstante.g_const_0; } if (consulta.ValidarNumero(codVendedor)) { data.codUsuario = Int32.Parse(codVendedor); } else { data.codUsuario = CENConstante.g_const_0; } if (consulta.ValidarNumero(codPreventa)) { data.ntraPreventa = Int32.Parse(codPreventa); } else { data.ntraPreventa = CENConstante.g_const_0; } if (codFechaI != CENConstante.g_const_vacio) { data.codfechaRegistroIDate = consulta.ConvertFechaStringToDate(codFechaI); } else { data.codfechaRegistroIDate = DateTime.Today.AddDays(-30); } if (codFechaF != CENConstante.g_const_vacio) { data.codfechaRegistroFDate = consulta.ConvertFechaStringToDate(codFechaF); } else { data.codfechaRegistroFDate = DateTime.Now; } lista = clnVenta.listarPreventaFiltro(data); } catch (Exception ex) { throw ex; } return(lista); }