Example #1
0
        public string InsertNotaCredito(E_NotaCredito ObjE_NotaCredito, DataTable DtDetalle, string EmpresaSede, bool ActualizaStock)
        {
            string         xml;
            string         xmlDetalle        = null;
            CD_NotaCredito ObjCD_NotaCredito = new CD_NotaCredito(AppSettings.GetConnectionString);

            if (ActualizaStock == true)
            {
                xml        = new BaseFunctions().GetXML(DtDetalle).Replace("NewDataSet", "DocumentElement");
                xmlDetalle = xml.Replace("Table", "DetalleComprobante");
            }

            return(ObjCD_NotaCredito.InsertNotaCredito(ObjE_NotaCredito, xmlDetalle, EmpresaSede, ActualizaStock));
        }
Example #2
0
        public string InsertNotaCredito(E_NotaCredito ObjE_NotaCredito, string EmpresaSede)
        {
            CD_NotaCredito ObjCD_NotaCredito = new CD_NotaCredito(AppSettings.GetConnectionString);

            return(ObjCD_NotaCredito.InsertNotaCredito(ObjE_NotaCredito, EmpresaSede));
        }