[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-10 23:17:53
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17170/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables Modified Files: Transactions.cs Log Message: Bug fixed: the column "TransactionType" has been added back to the DataTable (the previous revision introduced the bug, that lead to an exception thrown when the Report was built) Index: Transactions.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables/Transactions.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Transactions.cs 9 Mar 2009 17:46:50 -0000 1.6 --- Transactions.cs 10 Mar 2009 23:17:45 -0000 1.7 *************** *** 30,33 **** --- 30,34 ---- Transactions.FieldNameForDateTime , Type.GetType( "System.DateTime" ) ); // transactionsDataTable.Columns.Add( "BarComponent" , Type.GetType( "System.String" ) ); + transactionsDataTable.Columns.Add( "TransactionType" , Type.GetType( "System.String" ) ); transactionsDataTable.Columns.Add( Transactions.FieldNameForTicker , Type.GetType( "System.String" ) ); |