private void GetDropCentroCusto() { try { CENTROCUSTOSCollection CENTROCUSTOSColl = new CENTROCUSTOSCollection(); CENTROCUSTOSProvider CENTROCUSTOSP = new CENTROCUSTOSProvider(); CENTROCUSTOSColl = CENTROCUSTOSP.ReadCollectionByParameter(null, "DESCRICAO"); cbCentroCusto.DisplayMember = "DESCRICAO"; cbCentroCusto.ValueMember = "IDCENTROCUSTOS"; CENTROCUSTOSEntity CENTROCUSTOSTy = new CENTROCUSTOSEntity(); CENTROCUSTOSTy.DESCRICAO = ConfigMessage.Default.MsgDrop; CENTROCUSTOSTy.IDCENTROCUSTOS = -1; CENTROCUSTOSColl.Add(CENTROCUSTOSTy); Phydeaux.Utilities.DynamicComparer <CENTROCUSTOSEntity> comparer = new Phydeaux.Utilities.DynamicComparer <CENTROCUSTOSEntity>(cbCentroCusto.DisplayMember); CENTROCUSTOSColl.Sort(comparer.Comparer); cbCentroCusto.DataSource = CENTROCUSTOSColl; } catch (Exception ex) { MessageBox.Show("Erro técnico: " + ex.Message); } }
private void JuntaCentroCusto() { try { CENTROCUSTOSColl2.Clear(); foreach (var item in LIS_DUPLICATAPAGARColl) { CENTROCUSTOSEntity CENTROCUSTOSTy = new CENTROCUSTOSEntity(); CENTROCUSTOSTy.IDCENTROCUSTOS = Convert.ToInt32(item.IDCENTROCUSTO); CENTROCUSTOSTy.CENTROCUSTO = item.CENTROCUSTO; CENTROCUSTOSColl2.Add(CENTROCUSTOSTy); } foreach (var item in LIS_DUPLICATARECEBERColl) { CENTROCUSTOSEntity CENTROCUSTOSTy = new CENTROCUSTOSEntity(); CENTROCUSTOSTy.IDCENTROCUSTOS = Convert.ToInt32(item.IDCENTROCUSTO); CENTROCUSTOSTy.CENTROCUSTO = item.CENTROCUSTO; CENTROCUSTOSColl2.Add(CENTROCUSTOSTy); } //remover centro custo duplicado CENTROCUSTOSCollection CENTROCUSTOSColl3 = new CENTROCUSTOSCollection(); foreach (CENTROCUSTOSEntity item in CENTROCUSTOSColl2) { if (CENTROCUSTOSColl3.Find(delegate(CENTROCUSTOSEntity item2) { return(item2.IDCENTROCUSTOS == item.IDCENTROCUSTOS); }) == null) { CENTROCUSTOSColl3.Add(item); } } CENTROCUSTOSColl2 = CENTROCUSTOSColl3; PreencheGrid2(); } catch (Exception ex) { MessageBox.Show("Erro técnico: " + ex.Message); } }
private void GetDropCentroCusto() { CENTROCUSTOSProvider CENTROCUSTOSP = new CENTROCUSTOSProvider(); CENTROCUSTOSColl = CENTROCUSTOSP.ReadCollectionByParameter(null, "DESCRICAO"); cbCentroCusto.DisplayMember = "DESCRICAO"; cbCentroCusto.ValueMember = "IDCENTROCUSTOS"; CENTROCUSTOSEntity CENTROCUSTOSTy = new CENTROCUSTOSEntity(); CENTROCUSTOSTy.DESCRICAO = ConfigMessage.Default.MsgDrop; CENTROCUSTOSTy.IDCENTROCUSTOS = -1; CENTROCUSTOSColl.Add(CENTROCUSTOSTy); Phydeaux.Utilities.DynamicComparer <CENTROCUSTOSEntity> comparer = new Phydeaux.Utilities.DynamicComparer <CENTROCUSTOSEntity>(cbCentroCusto.DisplayMember); CENTROCUSTOSColl.Sort(comparer.Comparer); cbCentroCusto.DataSource = CENTROCUSTOSColl; cbCentroCusto.SelectedIndex = 0; }
private static CENTROCUSTOSCollection ExecuteReader(ref CENTROCUSTOSCollection collection, ref FbDataReader dataReader, FbCommand dbCommand) { using (dataReader = dbCommand.ExecuteReader()) { collection = new CENTROCUSTOSCollection(); if (dataReader.HasRows) { while (dataReader.Read()) { collection.Add(FillEntityObject(ref dataReader)); } } if (!(dataReader.IsClosed)) { dataReader.Close(); } dataReader.Dispose(); } return(collection); }