public static void crearDistribucionesCliente(CabeceraVentaBE cabecera) { int resp = BDGP.GetInstance().Ejecute("InsertarDistribucionClienteSOP", cabecera.IdCliente.Trim(), cabecera.NroDoc.Trim()); if (resp == -2) { throw BDGP.GetInstance().MensajeErrorReal; } }
public static void InsertarAdicionalesConsumos(string idVentana, string jrentry, int nroCampo, string valor) { int resp = BDGP.GetInstance().Ejecute("InsertarAdicionalesConsumos", idVentana, jrentry, nroCampo, valor); if (resp == -2) { throw BDGP.GetInstance().MensajeErrorReal; } }
public static void crearDistribucionesSOPRM(int jrentry, Int16 nroTipoDistribucion) { int resp = BDGP.GetInstance().Ejecute("InsertarAC_Financiero_SOP_RM", jrentry, nroTipoDistribucion); if (resp == -2) { throw BDGP.GetInstance().MensajeErrorReal; } }
public static void InsertarFechaProcesoLote(DateTime fecha, string nroLote, string origen) { int resp = BDGP.GetInstance().Ejecute("PROC_ACTUALIZAR_FECHA_LOTE_VENTA", nroLote, fecha, origen); if (resp == -2) { throw new Exception(BDGP.GetInstance().MensajeErrorReal.Message + " nroLote: " + nroLote + " Fecha: " + fecha.ToString("dd/MM/yyyy") + " Origen: " + origen); } }
public static void InsertarFechaProcesoLote(DateTime fecha, string nroLote, string origen) { BDGP helper = BDGP.GetInstance(); int resp = helper.Ejecute("PROC_ACTUALIZAR_FECHA_LOTE_VENTA", nroLote, fecha, origen); if (resp == -2) { throw helper.MensajeErrorReal; } }
public static void InsertarValoresDefinidosUsuario(Int16 soptype, string nroDoc, DateTime fecproc, string def1, string def2, string def3, string def4, string def5) { int resp = BDGP.GetInstance().Ejecute("InsertarValoresDefinidosUsuarioSOP", soptype, nroDoc, fecproc, def1, def2, def3, def4, def5); if (resp == -2) { throw BDGP.GetInstance().MensajeErrorReal; } }
public static void InsertarFechaProcesoVentanaPago(string idVentana, string SopNumber, string numPago, int nroCampo, DateTime valor) { string cod = numPago + SopNumber; BDGP helper = BDGP.GetInstance(); int resp = helper.Ejecute("INSERTAR_EXTENDER_FECHA", idVentana, cod, nroCampo, valor); if (resp == -2) { throw helper.MensajeErrorReal; } }
public static void guardarDatosAdicionales(int jrnentry, string turno, string estacion, string categoria, string numeroVale, string placa, string numeroFactura) { BDGP helper = BDGP.GetInstance(); try { if (turno == null) { turno = ""; } if (estacion == null) { estacion = ""; } if (categoria == null) { categoria = ""; } if (numeroVale == null) { numeroVale = ""; } if (placa == null) { placa = ""; } if (numeroFactura == null) { numeroFactura = ""; } int resp = helper.Ejecute("PROC_COV_ADIC_CONS_INSERTAR_MODIFICAR", jrnentry, turno, estacion, categoria, numeroVale, placa, numeroFactura); if (resp == -2) { throw helper.MensajeErrorReal; } } catch (SqlException ex) { throw ex; } catch (DataException ex) { throw ex; } }
public static void InsertarDatosLocalizacion(String nroDoc, String correlativo, String idCliente, String tipoDoc, String destinoOperacion, String idSitio, String nroSerie, DateTime fecDoc, String idMoneda, String idUsuario) { int resp = BDGP.GetInstance().Ejecute("PROC_COVI_INSERTAR_DATOS_TRIBUTARIOS_VENTA", nroDoc, correlativo, idCliente, tipoDoc, destinoOperacion, idSitio, nroSerie, fecDoc, idMoneda, idUsuario); if (resp == -2) { throw BDGP.GetInstance().MensajeErrorReal; } }
public static List <EstacionesBE> obtenerEstacionesPeaje() { List <EstacionesBE> listaEstaciones = new List <EstacionesBE>(); IDataReader reader = BDGP.GetInstance().CargarDataReaderProc("ObtenerEstacionesPeaje"); if (reader != null) { listaEstaciones = Util.ConvertirAEntidades <EstacionesBE>(reader); } return(listaEstaciones); }
public static ClaseClienteBE obtenerClaseCliente(string idClase) { IDataReader reader = BDGP.GetInstance().CargarDataReaderProc("COVI_OBTENER_CLASE_CLIENTE", idClase); ClaseClienteBE cli = null; List <ClaseClienteBE> ls = Util.ConvertirAEntidades <ClaseClienteBE>(reader); if (ls != null && ls.Count > 0) { cli = ls.First <ClaseClienteBE>(); } return(cli); }
public static List <CasetaBE> listaCasetas() { List <CasetaBE> listaCasetas = new List <CasetaBE>(); IDataReader reader = BDGP.GetInstance().CargarDataReaderProc("PROC_LISTA_CASETAS"); if (reader != null) { listaCasetas = Util.ConvertirAEntidades <CasetaBE>(reader); } return(listaCasetas); }
//CURID -> Z-US$ public static Int32 ObtenerCantidadDecimalesPorMoneda(string IdMoneda) { Int32 cantDec = 0; var query = string.Format(@"SELECT DECPLCUR-1 CANTDEC FROM DYNAMICS..MC40200 WHERE CURNCYID = '{0}'", IdMoneda); DataTable dt = BDGP.GetInstance().CargarDataTableSQL(query, "formatoMoneda"); Nullable <Int32> numDec = dt.Rows[0].Field <Nullable <Int32> > ("CANTDEC"); if (numDec != null) { cantDec = numDec.Value; } return(cantDec); }
public static List <CasetaBE> obtenerCasetasPeaje(string cod_estacion) { List <CasetaBE> listaCasetas = new List <CasetaBE>(); IDataReader reader = BDGP.GetInstance().CargarDataReaderProc("PROC_OBTENER_CASETAS_ESTACION_TODAS", cod_estacion); if (reader != null) { listaCasetas = Util.ConvertirAEntidades <CasetaBE>(reader); } return(listaCasetas); }
public static bool existeClienteGP(string idCliente) { DataTable tabla = BDGP.GetInstance().CargarDataTableProc("validarExistenciaCliente", idCliente); Nullable <Int32> numClientes = tabla.Rows[0].Field <Nullable <Int32> >(0); if (numClientes != null) { if (numClientes.Value > 0) { return(true); } } return(false); }
public static List <EstacionesBE> obtenerEstacionesPeajeTodas() { BDGP helper = BDGP.GetInstance(); List <EstacionesBE> listaEstaciones = new List <EstacionesBE>(); IDataReader reader = helper.CargarDataReaderProc("ObtenerEstacionesPeajeTodas"); if (reader == null) { throw helper.getErrorReal(); } listaEstaciones = Util.ConvertirAEntidades <EstacionesBE>(reader); return(listaEstaciones); }
public static void insertarClienteGP(ClienteBE cli, string userId) { int resp = 0; BDGP helper = BDGP.GetInstance(); try { // transformar datos cli.IdVendedor = cli.IdVendedor == String.Empty || cli.IdVendedor == null ? "" : cli.IdVendedor; cli.Nombre1 = cli.Nombre1 == String.Empty || cli.Nombre1 == null ? "" : cli.Nombre1; cli.Nombre2 = cli.Nombre2 == String.Empty || cli.Nombre2 == null? "" : cli.Nombre2; cli.ApePaterno = cli.ApePaterno == String.Empty || cli.ApePaterno == null ? "" : cli.ApePaterno; cli.ApeMaterno = cli.ApeMaterno == String.Empty || cli.ApeMaterno == null ? "" : cli.ApeMaterno; cli.CondNivelPrecio = cli.CondNivelPrecio == String.Empty || cli.CondNivelPrecio == null ? "" : cli.CondNivelPrecio; cli.TipoDocumento = cli.TipoDocumento == String.Empty || cli.TipoDocumento == null ? "" : cli.TipoDocumento; // verificar tipo de persona if (cli.Tipopersona == 1) { resp = helper.Ejecute("InterfazCovi_InsertaClienteLOC", cli.NomCliente, cli.IdCliente, cli.Nombre1, cli.Nombre2, cli.ApePaterno, cli.ApeMaterno, cli.IdCliente, cli.Tipopersona, cli.TipoDocumento, "", userId, cli.IdVendedor, cli.CondNivelPrecio, "", ""); } if (cli.Tipopersona == 2 || cli.Tipopersona == 3 || cli.Tipopersona == 4) { // persona juridica resp = helper.Ejecute("InterfazCovi_InsertaClienteLOC", cli.NomCliente, cli.IdCliente, "", "", "", "", cli.IdCliente, cli.Tipopersona, cli.TipoDocumento, cli.NomCliente, userId, cli.IdVendedor, cli.CondNivelPrecio, "", ""); } if (resp == -2) { throw helper.MensajeErrorReal; } } catch (DataException ex) { throw ex; } }
public static int crearAsientosContables(AsientoContable a) { int jrentry = 0; DataTable tabla = BDGP.GetInstance().CargarDataTableProc("covi_insertarAsientosContables", a.nroLote, a.REFRENCE, a.monto, a.cuentaDebito, a.cuentaCredito, a.DSCRIPTN, a.CURNCYID, a.TRXDATE, a.RVRSNGDT, a.EXPNDATE, a.EXCHDATE, a.SOURCDOC); if (BDGP.GetInstance().MensajeErrorReal != null) { throw BDGP.GetInstance().MensajeErrorReal; } if (tabla != null && tabla.Rows.Count > 0) { jrentry = tabla.Rows[0].Field <Int32>(0); } return(jrentry); }
public static bool existeClienteGP(string idCliente) { BDGP helper = BDGP.GetInstance(); DataTable tabla = helper.CargarDataTableProc("validarExistenciaCliente", idCliente); if (tabla == null) { throw helper.MensajeErrorReal; } Nullable <Int32> numClientes = tabla.Rows[0].Field <Nullable <Int32> >(0); if (numClientes != null) { if (numClientes.Value > 0) { return(true); } } return(false); }