[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2009-03-09 17:47:08
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8739/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables Modified Files: Transactions.cs Log Message: A recently introduced bug has been fixed: the "InstrumentKey" field was added twice to the DataTable Index: Transactions.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables/Transactions.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Transactions.cs 7 Mar 2009 04:42:05 -0000 1.5 --- Transactions.cs 9 Mar 2009 17:46:50 -0000 1.6 *************** *** 32,36 **** transactionsDataTable.Columns.Add( Transactions.FieldNameForTicker , Type.GetType( "System.String" ) ); ! transactionsDataTable.Columns.Add( "InstrumentKey" , Type.GetType( "System.String" ) ); transactionsDataTable.Columns.Add( "Quantity" , Type.GetType( "System.Int32" ) ); transactionsDataTable.Columns.Add( "Price" , Type.GetType( "System.Double" ) ); --- 32,36 ---- transactionsDataTable.Columns.Add( Transactions.FieldNameForTicker , Type.GetType( "System.String" ) ); ! // transactionsDataTable.Columns.Add( "InstrumentKey" , Type.GetType( "System.String" ) ); transactionsDataTable.Columns.Add( "Quantity" , Type.GetType( "System.Int32" ) ); transactionsDataTable.Columns.Add( "Price" , Type.GetType( "System.Double" ) ); |