[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables Tr
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-02-13 21:02:27
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21564/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables Modified Files: Transactions.cs Log Message: Commissions have been added to the report. Index: Transactions.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables/Transactions.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Transactions.cs 8 Nov 2003 20:58:47 -0000 1.1 --- Transactions.cs 13 Feb 2005 21:02:17 -0000 1.2 *************** *** 24,29 **** transactionsDataTable.Columns.Add( "Quantity" , Type.GetType( "System.Int32" ) ); transactionsDataTable.Columns.Add( "Price" , Type.GetType( "System.Double" ) ); ! transactionsDataTable.Columns.Add( "TransactionAmount" , Type.GetType( "System.Double" ) ); ! transactionsDataTable.Columns.Add( "AccountCash" , Type.GetType( "System.Double" ) ); transactionsDataTable.Columns.Add( "PortfolioValue" , Type.GetType( "System.Double" ) ); transactionsDataTable.Columns.Add( "AccountValue" , Type.GetType( "System.Double" ) ); --- 24,30 ---- transactionsDataTable.Columns.Add( "Quantity" , Type.GetType( "System.Int32" ) ); transactionsDataTable.Columns.Add( "Price" , Type.GetType( "System.Double" ) ); ! transactionsDataTable.Columns.Add( "TransactionAmount" , Type.GetType( "System.Double" ) ); ! transactionsDataTable.Columns.Add( "Commission" , Type.GetType( "System.Double" ) ); ! transactionsDataTable.Columns.Add( "AccountCash" , Type.GetType( "System.Double" ) ); transactionsDataTable.Columns.Add( "PortfolioValue" , Type.GetType( "System.Double" ) ); transactionsDataTable.Columns.Add( "AccountValue" , Type.GetType( "System.Double" ) ); *************** *** 44,49 **** dataRow[ "Quantity" ] = detailedRow[ "Quantity" ]; dataRow[ "Price" ] = detailedRow[ "Price" ]; ! dataRow[ "TransactionAmount" ] = detailedRow[ "TransactionAmount" ]; ! dataRow[ "AccountCash" ] = detailedRow[ "AccountCash" ]; dataRow[ "PortfolioValue" ] = detailedRow[ "PortfolioValue" ]; dataRow[ "AccountValue" ] = detailedRow[ "AccountValue" ]; --- 45,51 ---- dataRow[ "Quantity" ] = detailedRow[ "Quantity" ]; dataRow[ "Price" ] = detailedRow[ "Price" ]; ! dataRow[ "TransactionAmount" ] = detailedRow[ "TransactionAmount" ]; ! dataRow[ "Commission" ] = detailedRow[ "Commission" ]; ! dataRow[ "AccountCash" ] = detailedRow[ "AccountCash" ]; dataRow[ "PortfolioValue" ] = detailedRow[ "PortfolioValue" ]; dataRow[ "AccountValue" ] = detailedRow[ "AccountValue" ]; |