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)); }
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)); }