public string ActualizarHistoricoTXT(DHistoricoTXT HistoricoTXT, string CodigoArchivo) { string rpta = "N"; try { rpta = FuncionesUDO.UpdateRecordHead("Z_MIN_TXTHIST", HistoricoTXT, CodigoArchivo); } catch (Exception) { } return(rpta); }
public string InsertarHistoricoTXT(DHistoricoTXT HistoricoTXT, List <Object> DetallesPago) { string rpta = "N"; try { rpta = FuncionesUDO.InsertRecord("Z_MIN_TXTHIST", HistoricoTXT, "Z_MIN_HISTPAG", DetallesPago); } catch (Exception) { } return(rpta); }
public static string InsertRecord(string UDO_Name, Object Objeto, string UDO_Child, List <Object> DetalleObjeto) { SAPbobsCOM.Company SBO_Company = Conexion.oCompany; SAPbobsCOM.GeneralService oGeneralService; SAPbobsCOM.GeneralData oGeneralData; SAPbobsCOM.GeneralData oChild; SAPbobsCOM.GeneralDataCollection oChildren; //SAPbobsCOM.GeneralDataParams oGeneralParams; SAPbobsCOM.CompanyService oCompService; string rpta = "N"; try { //get company service if (!SBO_Company.Connected) { Conexion.Conectar_Aplicacion(); } oCompService = SBO_Company.GetCompanyService(); //SBO_Company.StartTransaction(); oGeneralService = oCompService.GetGeneralService(UDO_Name); oGeneralData = (SAPbobsCOM.GeneralData)oGeneralService.GetDataInterface(SAPbobsCOM.GeneralServiceDataInterfaces.gsGeneralData); //Setting Data to Master Data Table Fields oGeneralData.SetProperty("Code", FuncionesUDO.GetNextCode(UDO_Name).ToString()); //Recorrer el Objeto y tomar Nombre y Valor de propiedades y asignarlas foreach (PropertyInfo propiedad in Objeto.GetType().GetProperties()) { try { string tipoPropiedad = propiedad.PropertyType.Name; string NombrePropiedad = propiedad.Name; var valorPropiedad = propiedad.GetValue(Objeto, null); oGeneralData.SetProperty(NombrePropiedad, valorPropiedad); } catch (Exception) { } } // Handle child rows if (DetalleObjeto.Any()) { oChildren = oGeneralData.Child(UDO_Child); foreach (Object det in DetalleObjeto) { // Create data for rows in the child table oChild = oChildren.Add(); foreach (PropertyInfo dPropiedad in det.GetType().GetProperties()) { try { string tipoPropiedad = dPropiedad.PropertyType.Name; string NombrePropiedad = dPropiedad.Name; var valorPropiedad = dPropiedad.GetValue(det, null); oChild.SetProperty(NombrePropiedad, valorPropiedad); } catch (Exception) { } } } } //if(!DT_CHILD.IsEmpty) //{ // oChildren = oGeneralData.Child("SM_MOR1"); // for (int i = 0; i <= DT_CHILD.Rows.Count - 1; i++) // { // // Create data for rows in the child table // oChild = oChildren.Add(); // for (int j = 0; j <= DT_CHILD.Columns.Count - 1; j++) // { // string nombreColumna = DT_CHILD.Columns.Item(j).Name; // var valorColumna = DT_CHILD.GetValue(j, i); // oChild.SetProperty(nombreColumna, valorColumna); // } // } //} //Attempt to Add the Record oGeneralService.Add(oGeneralData); rpta = "S"; } catch (Exception) { } finally { if (SBO_Company.InTransaction) { SBO_Company.EndTransaction(SAPbobsCOM.BoWfTransOpt.wf_Commit); } } return(rpta); //try //{ // Type c_typo = Objeto.GetType(); // PropertyInfo[] c_propiedades = c_typo.GetProperties(); // //var valor = c_propiedades.GetValue(Objeto); // foreach (PropertyInfo propiedad in Objeto.GetType().GetProperties()) // { // string tipoPropiedad = propiedad.PropertyType.Name; // string NombrePropiedad = propiedad.Name; // var valorPropiedad = propiedad.GetValue(Objeto, null); // } //} //catch (Exception){} }