From: <tim...@us...> - 2010-07-26 12:56:01
|
Revision: 3664 http://web-erp.svn.sourceforge.net/web-erp/?rev=3664&view=rev Author: tim_schofield Date: 2010-07-26 12:55:55 +0000 (Mon, 26 Jul 2010) Log Message: ----------- New script to show daily bank transactions in bank account currency, and local currency Modified Paths: -------------- trunk/doc/Change.log.html trunk/index.php trunk/sql/mysql/upgrade3.11.1-3.12.sql Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-07-25 22:10:13 UTC (rev 3663) +++ trunk/doc/Change.log.html 2010-07-26 12:55:55 UTC (rev 3664) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>26/07/10 Tim: DailyBankTransactions.php - New script to show daily bank transactions in bank account currency, and local currency</p> <p>25/07/10 Tim: PrintCustTrans.php - Correctly show decimal places</p> <p>25/07/10 Phil: SelectContract.php new script to select a contract</p> <p>25/07/10 Phil: ContractOtherReqts.php new script to enter other requirements for a contract</p> Modified: trunk/index.php =================================================================== --- trunk/index.php 2010-07-25 22:10:13 UTC (rev 3663) +++ trunk/index.php 2010-07-26 12:55:55 UTC (rev 3664) @@ -1192,6 +1192,11 @@ </tr> <tr> <td class="menu_group_item"> + <?php echo '<p>• <a href="' . $rootpath . '/DailyBankTransactions.php?' . sid . '">' . _('Daily Bank Transactions') . '</a></p>'; ?> + </td> + </tr> + <tr> + <td class="menu_group_item"> <?php echo '<p>• <a href="' . $rootpath . "/GLProfit_Loss.php?" . sid . '">' . _('Profit and Loss Statement') . '</a></p>'; ?> </td> </tr> @@ -1336,7 +1341,7 @@ <tr> <td class="menu_group_items"> <!-- Contract Costing transactions options --> <table width="100%" class="table_index"> - + <tr> </table> </td> Modified: trunk/sql/mysql/upgrade3.11.1-3.12.sql =================================================================== --- trunk/sql/mysql/upgrade3.11.1-3.12.sql 2010-07-25 22:10:13 UTC (rev 3663) +++ trunk/sql/mysql/upgrade3.11.1-3.12.sql 2010-07-26 12:55:55 UTC (rev 3664) @@ -282,3 +282,4 @@ UPDATE `securitytokens` SET `tokenname`='Prices Security' WHERE tokenid=12; ALTER TABLE `www_users` CHANGE `supplierid` `supplierid` VARCHAR( 10 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ''; +ALTER TABLE `orderdeliverydifferenceslog` DROP PRIMARY KEY; \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |