|
From: <rc...@us...> - 2015-04-19 14:57:49
|
Revision: 7268
http://sourceforge.net/p/web-erp/reponame/7268
Author: rchacon
Date: 2015-04-19 14:57:47 +0000 (Sun, 19 Apr 2015)
Log Message:
-----------
Remove the class noprint from the image in page_title_text.
Modified Paths:
--------------
trunk/DailyBankTransactions.php
trunk/GLBalanceSheet.php
trunk/GLProfit_Loss.php
trunk/GLTrialBalance.php
trunk/doc/Change.log
Modified: trunk/DailyBankTransactions.php
===================================================================
--- trunk/DailyBankTransactions.php 2015-04-19 13:40:59 UTC (rev 7267)
+++ trunk/DailyBankTransactions.php 2015-04-19 14:57:47 UTC (rev 7268)
@@ -23,7 +23,7 @@
$DbgMsg = _('The SQL used to retrieve the bank accounts was');
$AccountsResults = DB_query($SQL,$ErrMsg,$DbgMsg);
- echo '<p class="page_title_text"><img alt="" class="noprint" src="'.$RootPath.'/css/'.$Theme.
+ echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme.
'/images/bank.png" title="' .// Icon image.
_('Bank Transactions Inquiry') . '" /> ' .// Icon title.
_('Bank Transactions Inquiry') . '</p>';// Page title.
@@ -115,7 +115,7 @@
$result = DB_query($sql);
if (DB_num_rows($result)==0) {
- echo '<p class="page_title_text"><img alt="" class="noprint" src="'.$RootPath.'/css/'.$Theme.
+ echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme.
'/images/bank.png" title="' .// Icon image.
_('Bank Transactions Inquiry') . '" /> ' .// Icon title.
_('Bank Transactions Inquiry') . '</p>';// Page title.
@@ -123,7 +123,7 @@
} else {
$BankDetailRow = DB_fetch_array($BankResult);
echo '<div id="Report">';// Division to identify the report block.
- echo '<p class="page_title_text"><img alt="" class="noprint" src="'.$RootPath.'/css/'.$Theme.
+ echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme.
'/images/bank.png" title="' .// Icon image.
_('Bank Transactions Inquiry') . '" /> ' .// Icon title.
_('Account Transactions For').'<br />'.$BankDetailRow['bankaccountname'].'<br />'.
Modified: trunk/GLBalanceSheet.php
===================================================================
--- trunk/GLBalanceSheet.php 2015-04-19 13:40:59 UTC (rev 7267)
+++ trunk/GLBalanceSheet.php 2015-04-19 14:57:47 UTC (rev 7268)
@@ -17,7 +17,7 @@
/*Show a form to allow input of criteria for TB to show */
include('includes/header.inc');
- echo '<p class="page_title_text"><img alt="" class="noprint" src="'.$RootPath.'/css/'.$Theme.
+ echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme.
'/images/printer.png" title="' .// Icon image.
_('Print Statement of Financial Position') . '" /> ' .// Icon title.
_('Balance Sheet') . '</p>';// Page title.
@@ -392,7 +392,7 @@
// Page title as IAS1 numerals 10 and 51:
include_once('includes/CurrenciesArray.php');// Array to retrieve currency name.
echo '<div id="Report">';// Division to identify the report block.
- echo '<p class="page_title_text"><img alt="" class="noprint" src="'.$RootPath.'/css/'.$Theme.
+ echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme.
'/images/gl.png" title="' .// Icon image.
_('Statement of Financial Position') . '" /> ' .// Icon title.
_('Balance Sheet') . '<br />' .// Page title, reporting statement.
Modified: trunk/GLProfit_Loss.php
===================================================================
--- trunk/GLProfit_Loss.php 2015-04-19 13:40:59 UTC (rev 7267)
+++ trunk/GLProfit_Loss.php 2015-04-19 14:57:47 UTC (rev 7268)
@@ -20,7 +20,7 @@
OR isset($_POST['SelectADifferentPeriod'])){
include('includes/header.inc');
- echo '<p class="page_title_text"><img alt="" class="noprint" src="'.$RootPath.'/css/'.$Theme.
+ echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme.
'/images/printer.png" title="' .// Icon image.
_('Print Statement of Comprehensive Income') . '" /> ' .// Icon title.
_('Print Profit and Loss Report') . '</p>';// Page title.
@@ -613,7 +613,7 @@
// Page title as IAS1 numerals 10 and 51:
include_once('includes/CurrenciesArray.php');// Array to retrieve currency name.
echo '<div id="Report">';// Division to identify the report block.
- echo '<p class="page_title_text"><img alt="" class="noprint" src="'.$RootPath.'/css/'.$Theme.
+ echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme.
'/images/gl.png" title="' .// Icon image.
_('Statement of Comprehensive Income') . '" /> ' .// Icon title.
_('Profit and Loss Statement') . '<br />' .// Page title, reporting statement.
Modified: trunk/GLTrialBalance.php
===================================================================
--- trunk/GLTrialBalance.php 2015-04-19 13:40:59 UTC (rev 7267)
+++ trunk/GLTrialBalance.php 2015-04-19 14:57:47 UTC (rev 7268)
@@ -29,7 +29,7 @@
OR isset($_POST['SelectADifferentPeriod'])){
include ('includes/header.inc');
- echo '<p class="page_title_text"><img alt="" class="noprint" src="'.$RootPath.'/css/'.$Theme.
+ echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme.
'/images/printer.png" title="' .// Icon image.
_('Print Trial Balance') . '" /> ' .// Icon title.
_('Trial Balance') . '</p>';// Page title.
@@ -433,7 +433,7 @@
$AccountsResult = DB_query($SQL, _('No general ledger accounts were returned by the SQL because'), _('The SQL that failed was:'));
- echo '<p class="page_title_text"><img alt="" class="noprint" src="'.$RootPath.'/css/'.$Theme.
+ echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme.
'/images/gl.png" title="' .// Icon image.
_('Trial Balance') . '" /> ' .// Icon title.
_('Trial Balance for the month of ') . $PeriodToDate . '<br />' .
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2015-04-19 13:40:59 UTC (rev 7267)
+++ trunk/doc/Change.log 2015-04-19 14:57:47 UTC (rev 7268)
@@ -1,5 +1,6 @@
webERP Change Log
+19/4/15 RChacon: Remove the class noprint from the image in page_title_text.
19/4/15 RChacon: Add ".page_title_text img" as a display none class. This makes unnecessary to add the class noprint to the image in page_title_text.
19/4/15 Phil: SelectSupplier - total supplier spend was incorrect only looked at supplier transactions excluding invoices? Now takes invoice net of debit notes reported by Andrew Galuski
07/4/15 Exson: Fixed the Wiki link broken bug in SystemParameters.php.
|