|
From: <te...@us...> - 2012-06-20 02:43:37
|
Revision: 5443
http://web-erp.svn.sourceforge.net/web-erp/?rev=5443&view=rev
Author: tehonu
Date: 2012-06-20 02:43:30 +0000 (Wed, 20 Jun 2012)
Log Message:
-----------
Ricard: Added opposite currency pair graph to ExchangeRateTrend.php
Modified Paths:
--------------
trunk/ExchangeRateTrend.php
trunk/doc/Change.log
Modified: trunk/ExchangeRateTrend.php
===================================================================
--- trunk/ExchangeRateTrend.php 2012-06-19 03:49:10 UTC (rev 5442)
+++ trunk/ExchangeRateTrend.php 2012-06-20 02:43:30 UTC (rev 5443)
@@ -58,14 +58,22 @@
// **************
- $graph = $CurrencyToShow. '/' . $FunctionalCurrency . $graph;
- $image = 'http://www.x-rates.com/d/' . $graph;
+ $graphA = $CurrencyToShow. '/' . $FunctionalCurrency . $graph;
+ $image = 'http://www.x-rates.com/d/' . $graphA;
echo '<br /><table class="selection">';
echo '<tr><th><div class="centre"><b>' . $FunctionalCurrency . ' / ' . $CurrencyToShow . '</b></div></th></tr>';
echo '<tr><td><img src="' . $image . '" alt="' ._('Trend Currently Unavailable') . '" /></td></tr>';
echo '</table>';
+ $graphB = $FunctionalCurrency. '/' . $CurrencyToShow . $graph;
+ $image = 'http://www.x-rates.com/d/' . $graphB;
+ echo '<br /><table class="selection">';
+ echo '<tr><th><div class="centre"><b>' . $CurrencyToShow . ' / ' . $FunctionalCurrency . '</b></div></th></tr>';
+ echo '<tr><td><img src="' . $image . '" alt="' ._('Trend Currently Unavailable') . '" /></td></tr>';
+ echo '</table>';
+
+
include('includes/footer.inc');
?>
\ No newline at end of file
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2012-06-19 03:49:10 UTC (rev 5442)
+++ trunk/doc/Change.log 2012-06-20 02:43:30 UTC (rev 5443)
@@ -1,4 +1,5 @@
webERP Change Log
+20/06/2012 Ricard: Added opposite currency pair graph to ExchangeRateTrend.php.
19/06/2012 Ricard: Added new script Z_ChangeLocationCode.
17/06/2012 Ricard: Added a 2nd strategy for StockDispatch (items with overstock at FROM, RL=0 no matter if needed at TO).
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|