From: <rc...@us...> - 2015-02-09 00:07:48
|
Revision: 7143 http://sourceforge.net/p/web-erp/reponame/7143 Author: rchacon Date: 2015-02-09 00:07:40 +0000 (Mon, 09 Feb 2015) Log Message: ----------- Standardise to currency.png. Delete currency.gif. Modified Paths: -------------- trunk/Currencies.php trunk/ExchangeRateTrend.php trunk/css/professional-rtl/images/credit.png trunk/doc/Change.log Removed Paths: ------------- trunk/css/default/images/currency.gif trunk/css/fluid/images/currency.gif trunk/css/fresh/images/currency.gif trunk/css/professional/images/currency.gif trunk/css/xenos/images/currency.gif Modified: trunk/Currencies.php =================================================================== --- trunk/Currencies.php 2015-02-08 23:29:03 UTC (rev 7142) +++ trunk/Currencies.php 2015-02-09 00:07:40 UTC (rev 7143) @@ -1,12 +1,13 @@ <?php - /* $Id$*/ +/* This script defines the currencies available. Each customer and supplier must be defined as transacting in one of the currencies defined here. */ include('includes/session.inc'); -$Title = _('Currencies Maintenance'); -$ViewTopic= 'Currencies'; -$BookMark = 'Currencies'; +$Title = _('Currencies Maintenance');// Screen identification. +$ViewTopic= 'Currencies';// Filename's id in ManualContents.php's TOC. +$BookMark = 'Currencies';// Anchor's id in the manual's html document. include('includes/header.inc'); + include('includes/CurrenciesArray.php'); // To get the currency name from the currency code. include('includes/SQL_CommonFunctions.inc'); @@ -27,8 +28,10 @@ $Errors = array(); -echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/money_add.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title . '</p> - <br />'; +echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme. + '/images/currency.png" title="' .// Icon image. + _('Currencies') . '" /> ' .// Icon title. + _('Currencies Maintenance') . '</p>';// Page title. if (isset($_POST['submit'])) { Modified: trunk/ExchangeRateTrend.php =================================================================== --- trunk/ExchangeRateTrend.php 2015-02-08 23:29:03 UTC (rev 7142) +++ trunk/ExchangeRateTrend.php 2015-02-09 00:07:40 UTC (rev 7143) @@ -1,9 +1,11 @@ <?php - /* $Id$*/ +/* This script shows the trend in exchange rates as retrieved from ECB. */ include('includes/session.inc'); -$Title = _('View Currency Trends'); +$Title = _('View Currency Trends');// Screen identification. +$ViewTopic= 'Currencies';// Filename's id in ManualContents.php's TOC. +$BookMark = 'ExchangeRateTrend';// Anchor's id in the manual's html document. include('includes/header.inc'); $FunctionalCurrency = $_SESSION['CompanyRecord']['currencydefault']; @@ -21,9 +23,12 @@ echo '<form method="post" id="update" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">'; echo '<div>'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; - echo '<div class="centre"><p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/money_add.png" title="' . - _('View Currency Trend') . '" alt="" />' . ' ' . _('View Currency Trend') . '</p></div>'; - echo '<table>'; // First column + echo '<div class="centre">'; + echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme. + '/images/currency.png" title="' .// Icon image. + _('View Currency Trend') . '" /> ' .// Icon title. + _('View Currency Trend') . '</p>';// Page title. + echo '</div><table>'; // First column $SQL = "SELECT currabrev FROM currencies"; $result=DB_query($SQL); @@ -73,4 +78,4 @@ </table>'; include('includes/footer.inc'); -?> \ No newline at end of file +?> Deleted: trunk/css/default/images/currency.gif =================================================================== (Binary files differ) Deleted: trunk/css/fluid/images/currency.gif =================================================================== (Binary files differ) Deleted: trunk/css/fresh/images/currency.gif =================================================================== --- trunk/css/fresh/images/currency.gif 2015-02-08 23:29:03 UTC (rev 7142) +++ trunk/css/fresh/images/currency.gif 2015-02-09 00:07:40 UTC (rev 7143) @@ -1,6 +0,0 @@ -GIF89a -\x86\xA2\xA4\x860Hcs@Vlv\xA2\x95\xB1\x86h$\x8FLU>\x94\xB2 -DLDDY\x9F\x84 --\xD1\xC6Y\xD6_)\xEC\xDE\xCD?"W,\xF6\xFC\xDE\xB1\xED\xDA\xF1\xCBA\xB0 Apޘ<x\x80TA\ No newline at end of file Deleted: trunk/css/professional/images/currency.gif =================================================================== (Binary files differ) Modified: trunk/css/professional-rtl/images/credit.png =================================================================== (Binary files differ) Deleted: trunk/css/xenos/images/currency.gif =================================================================== (Binary files differ) Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2015-02-08 23:29:03 UTC (rev 7142) +++ trunk/doc/Change.log 2015-02-09 00:07:40 UTC (rev 7143) @@ -1,5 +1,6 @@ webERP Change Log +9/2/15 RChacon: Standardise to currency.png. Delete currency.gif. 8/2/15 RChacon: Changes from email.gif to email.png. Delete email.gif. 8/2/15 InventoryPlanning.php now has an option to export the last 24 months usage to CSV 8/2/15 RChacon: Add credit.png, email.png, folders.png and currency.png. Delete bank.gif. |