Exemple #1
0
        static void Main(string[] args)
        {
            /*
             * RfcInvoke rfcs = new RfcInvoke("01.01.2016", "01.07.2019");
             * rfcs.WriteToFile();
             */

            RfcInvoke    rfcs = new RfcInvoke();
            BdConnection bd   = new BdConnection();

            Console.WriteLine("Recuperando la información.Espere un momento...");
            DataTable dt = rfcs.ObtenerMovimientos();

            if (dt != null)
            {
                Console.WriteLine("Se recupero " + dt.Rows.Count.ToString() + " registros");
                Console.WriteLine("Se procesara la información en la base de datos.Espere un momento...");

                if (bd.AgregarMovimientosAlmacen(dt))
                {
                    Console.WriteLine("Se proceso la información con éxito");
                }
                else
                {
                    Console.WriteLine("Hubo un problema al procesar la información");
                }
            }
            else
            {
                Console.WriteLine("Hubo un problema al recuperar la información");
            }
        }
Exemple #2
0
        static void Main(string[] args)
        {
            BdConnection bd   = new BdConnection();
            RfcInvoke    rfcs = new RfcInvoke();

            Console.WriteLine("Recuperando la información.Espere un momento...");
            DataTable tableCobranza = rfcs.ObtenerDatosCobranza();

            if (tableCobranza != null)


            {
                Console.WriteLine("Se recupero " + tableCobranza.Rows.Count.ToString() + "  registros");
                Console.WriteLine("Se guardara la informacion en la base de datos.Espere un momento...");
                if (bd.AgregarDatosCobranza(tableCobranza))
                {
                    Console.WriteLine("Se procesaron todos los registros con éxito");
                }
                else
                {
                    Console.WriteLine("Hubo un problema al registrar la información");
                }
            }
            else
            {
                Console.WriteLine("No se recupero informacion");
            }
        }
Exemple #3
0
        static void Main(string[] args)
        {
            BdConnection bd = new BdConnection();

            RfcInvoke rfcs = new RfcInvoke("20190619");

            DataTable dt = rfcs.ObtenerStock();

            bd.RecibirStock(dt);
        }
Exemple #4
0
        static void Main(string[] args)
        {
            BdConnection     bd        = new BdConnection();
            RfcInvoke        rfcs      = new RfcInvoke();
            List <Pedido>    pedidos   = bd.ObtenerPedidos();
            List <DataTable> listTable = rfcs.IngresarPedidos(pedidos);

            bd.ResultadoPedidos(listTable[0]);
            bd.MensajesResultado(listTable[1]);
            //Console.ReadLine();
        }
Exemple #5
0
        static void Main(string[] args)
        {
            BdConnection bd   = new BdConnection();
            RfcInvoke    rfcs = new RfcInvoke();
            DataTable    dt   = bd.ObtenerCobranzas();

            if (dt != null)
            {
                rfcs.EnviarDatosCobranza(dt);
            }

            //   List<Pedido> list = bd.ObtenerPedidos();
            //     seEjecuto= rfcs.IngresarPedidos(list);
        }