From: <vv...@us...> - 2012-01-18 23:03:57
|
Revision: 4803 http://web-erp.svn.sourceforge.net/web-erp/?rev=4803&view=rev Author: vvs2012 Date: 2012-01-18 23:03:49 +0000 (Wed, 18 Jan 2012) Log Message: ----------- Removed unused .table2 declaration from default.css. Fixed border settings in .table1. Corrected syntax in index.php, Prices.php, SupplierCredit.php Modified Paths: -------------- trunk/Prices.php trunk/SupplierCredit.php trunk/css/aguapop/default.css trunk/css/aguapop/default.css_large trunk/css/default/default.css trunk/css/fresh/default.css trunk/css/gel/default.css trunk/css/jelly/default.css trunk/css/professional/default.css trunk/css/professional-rtl/default.css trunk/css/silverwolf/default.css trunk/doc/Change.log trunk/index.php Modified: trunk/Prices.php =================================================================== --- trunk/Prices.php 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/Prices.php 2012-01-18 23:03:49 UTC (rev 4803) @@ -342,11 +342,11 @@ <tr><td><?php echo _('Price'); ?>:</td> <td> <input type="text" class="number" name="Price" size=12 maxlength=11 value= - <?php + "<?php if(isset($_POST['Price'])) { echo $_POST['Price']; } - ?> > + ?>"> </td></tr> Modified: trunk/SupplierCredit.php =================================================================== --- trunk/SupplierCredit.php 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/SupplierCredit.php 2012-01-18 23:03:49 UTC (rev 4803) @@ -637,7 +637,7 @@ $_SESSION['SuppTrans']->Taxes[$Tax->TaxCalculationOrder]->TaxOvAmount = filter_number_format($_POST['TaxAmount' . $Tax->TaxCalculationOrder]); } - $TaxTotal += $_SESSION['SuppTrans']->Taxes[$Tax->TaxCalculationOrder]->TaxOvAmount + $TaxTotal += $_SESSION['SuppTrans']->Taxes[$Tax->TaxCalculationOrder]->TaxOvAmount; } $InputError = False; Modified: trunk/css/aguapop/default.css =================================================================== --- trunk/css/aguapop/default.css 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/css/aguapop/default.css 2012-01-18 23:03:49 UTC (rev 4803) @@ -268,16 +268,9 @@ .table1 { width:90%; background: whitesmoke; - border: 0px 0px 2px 2px darkslategray solid; + border: 1px solid darkslategray; margin: 0 auto; } -/* Table type is used for UI tables type 2 */ -.table2 { - width:90%; - background: whitesmoke; - border: 0px 0px 2px 2px darkslategray solid; - margin: 0 auto; -} input.address3 { text-transform: uppercase; Modified: trunk/css/aguapop/default.css_large =================================================================== --- trunk/css/aguapop/default.css_large 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/css/aguapop/default.css_large 2012-01-18 23:03:49 UTC (rev 4803) @@ -268,16 +268,9 @@ .table1 { width:90%; background: whitesmoke; - border: 0px 0px 2px 2px darkslategray solid; + border: 1px solid darkslategray; margin: 0 auto; } -/* Table type is used for UI tables type 2 */ -.table2 { - width:90%; - background: whitesmoke; - border: 0px 0px 2px 2px darkslategray solid; - margin: 0 auto; -} input.address3 { text-transform: uppercase; Modified: trunk/css/default/default.css =================================================================== --- trunk/css/default/default.css 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/css/default/default.css 2012-01-18 23:03:49 UTC (rev 4803) @@ -248,16 +248,9 @@ .table1 { width:90%; background: #eee; - border: 0px 0px 2px 2px #222 solid; + border: 1px solid #222; margin: 0 auto; } -/* Table type is used for UI tables type 2 */ -.table2 { - width:90%; - background: #eee; - border: 0px 0px 2px 2px #222 solid; - margin: 0 auto; -} input.address3 { text-transform: uppercase; Modified: trunk/css/fresh/default.css =================================================================== --- trunk/css/fresh/default.css 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/css/fresh/default.css 2012-01-18 23:03:49 UTC (rev 4803) @@ -248,16 +248,10 @@ .table1 { width:90%; background: #eee; - border: 0px 0px 2px 2px #222 solid; + border: 1px solid #222; margin: 0 auto; } -/* Table type is used for UI tables type 2 */ -.table2 { - width:90%; - background: #eee; - border: 0px 0px 2px 2px #222 solid; - margin: 0 auto; -} + input.address3 { text-transform: uppercase; } Modified: trunk/css/gel/default.css =================================================================== --- trunk/css/gel/default.css 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/css/gel/default.css 2012-01-18 23:03:49 UTC (rev 4803) @@ -277,18 +277,10 @@ .table1 { width:90%; background: #eee; - border: 0px 0px 2px 2px #222 solid; - background: #eee; + border: 1px solid #222; margin: 0 auto; } -/* Table type is used for UI tables type 2 */ -.table2 { - width:90%; - background: #eee; - border: 0px 0px 2px 2px #222 solid; - background: #eee; - margin: 0 auto; -} + input.address3 { text-transform: uppercase; } Modified: trunk/css/jelly/default.css =================================================================== --- trunk/css/jelly/default.css 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/css/jelly/default.css 2012-01-18 23:03:49 UTC (rev 4803) @@ -316,18 +316,10 @@ .table1 { width:90%; background: #eee; - border: 0px 0px 2px 2px #222 solid; + border: 1px solid #222; margin: 0 auto; } -/* Table type is used for UI tables type 2 */ -.table2 { - width:90%; - background: #eee; - border: 0px 0px 2px 2px #222 solid; - margin: 0 auto; -} - input.address3 { text-transform: uppercase; } Modified: trunk/css/professional/default.css =================================================================== --- trunk/css/professional/default.css 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/css/professional/default.css 2012-01-18 23:03:49 UTC (rev 4803) @@ -249,16 +249,10 @@ .table1 { width:90%; background: #eee; - border: 0px 0px 2px 2px #222 solid; + border: 1px solid #222; margin: 0 auto; } -/* Table type is used for UI tables type 2 */ -.table2 { - width:90%; - background: #eee; - border: 0px 0px 2px 2px #222 solid; - margin: 0 auto; -} + input.address3 { text-transform: uppercase; } Modified: trunk/css/professional-rtl/default.css =================================================================== --- trunk/css/professional-rtl/default.css 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/css/professional-rtl/default.css 2012-01-18 23:03:49 UTC (rev 4803) @@ -243,18 +243,10 @@ .table1 { width:90%; background: #eee; - border: 0px 0px 2px 2px #222 solid; - background: #eee; + border: 1px solid #222; margin: 0 auto; } -/* Table type is used for UI tables type 2 */ -.table2 { - width:90%; - background: #eee; - border: 0px 0px 2px 2px #222 solid; - background: #eee; - margin: 0 auto; -} + input.address3 { text-transform: uppercase; } Modified: trunk/css/silverwolf/default.css =================================================================== --- trunk/css/silverwolf/default.css 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/css/silverwolf/default.css 2012-01-18 23:03:49 UTC (rev 4803) @@ -1,4 +1,4 @@ -@charset "utf-8"; +@charset "UTF-8"; /*--------------------------------------------------\ | | | default.css | |---------------------------------------------------| @@ -322,18 +322,9 @@ .table1 { width:90%; background: #eee; - border: 0px 0px 2px 2px #222 solid; - background: #eee; + border: 1px solid #222; margin: 0 auto; } -// Table type is used for UI tables type 2 -.table2 { - width:90%; - background: #eee; - border: 0px 0px 2px 2px #222 solid; - background: #eee; - margin: 0 auto; -} input.address3 { text-transform: uppercase; Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/doc/Change.log 2012-01-18 23:03:49 UTC (rev 4803) @@ -1,5 +1,6 @@ webERP Change Log +17/1/12 Vitaly: Removed unused .table2 declaration from default.css. Fixed border settings in .table1. 16/1/12 Phil: Made StockReorderLevel.php just update changed fields rather than update all locations even though they may not have changed. 8/1/12 Phil: Added new api functions to get tax group taxes, list tax authorities, get tax authority details and get tax authority tax rates, also to list and get payment methods 8/1/12 Paul Harness: PcAuthorizeExpenses.php Compare date against SQL raw date format, then convert for display when deciding to display authorize checkbox. Modified: trunk/index.php =================================================================== --- trunk/index.php 2012-01-18 21:20:19 UTC (rev 4802) +++ trunk/index.php 2012-01-18 23:03:49 UTC (rev 4803) @@ -274,7 +274,7 @@ <tr> <td class="menu_group_items"> - <table width="100%"class="table_index"> + <table width="100%" class="table_index"> <tr> <td class="menu_group_item"> <?php echo '<p>• <a href="' . $rootpath . '/SelectSalesOrder.php">' . _('Select Order to Invoice') . '</a></p>'; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |