From: <tu...@us...> - 2018-01-24 17:46:29
|
Revision: 7919 http://sourceforge.net/p/web-erp/reponame/7919 Author: turbopt Date: 2018-01-24 17:46:27 +0000 (Wed, 24 Jan 2018) Log Message: ----------- SupplierInvoice.php, CounterSales.php: Replace two other hard-coded styles with existing CSS class. (Reported in forums: http://www.weberp.org/forum/showthread.php?tid=8057) Modified Paths: -------------- trunk/CounterSales.php trunk/SupplierInvoice.php trunk/doc/Change.log Modified: trunk/CounterSales.php =================================================================== --- trunk/CounterSales.php 2018-01-24 17:16:45 UTC (rev 7918) +++ trunk/CounterSales.php 2018-01-24 17:46:27 UTC (rev 7919) @@ -743,7 +743,7 @@ echo '<br /> <table width="90%" cellpadding="2"> - <tr style="background-color:#800000">'; + <tr style="tableheader">'; echo '<th>' . _('Item Code') . '</th> <th>' . _('Item Description') . '</th> <th>' . _('Quantity') . '</th> Modified: trunk/SupplierInvoice.php =================================================================== --- trunk/SupplierInvoice.php 2018-01-24 17:16:45 UTC (rev 7918) +++ trunk/SupplierInvoice.php 2018-01-24 17:46:27 UTC (rev 7919) @@ -667,7 +667,7 @@ <tr> <th colspan="6">' . _('Purchase Order Charges') . '</th> </tr>'; - $tableheader = '<tr style="background-color:#800000"> + $tableheader = '<tr style="tableheader"> <th>' . _('Seq') . ' #</th> <th>' . _('GRN Batch') . '</th> <th>' . _('Supplier Ref') . '</th> Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2018-01-24 17:16:45 UTC (rev 7918) +++ trunk/doc/Change.log 2018-01-24 17:46:27 UTC (rev 7919) @@ -1,5 +1,6 @@ webERP Change Log +24/1/18 Andy Couling (PaulT commit): SupplierInvoice.php, CounterSales.php: Replace two other hard-coded styles with existing CSS class. (Reported in forums: http://www.weberp.org/forum/showthread.php?tid=8057) 24/1/18 Paul Becker/PaulT (PaulT commit): SelectOrderItems.php: Paul B. Remove stray value output / PaulT. Replace hard-coded style with existing CSS class. (Reported in forums: http://www.weberp.org/forum/showthread.php?tid=8057) 15/1/18 Paul Becker (PaulT commit): CustomerPurchases.php: Adds Units and Discount columns and other minor changes so that it more closely matches output from OrderDetails.php. (Reported in forums: http://www.weberp.org/forum/showthread.php?tid=8040) 12/1/18 Paul Becker (PaulT commit): CustomerPurchases.php: Fix script to show actual Price and actual Amount of Sale based upon discount. (Reported in forums: http://www.weberp.org/forum/showthread.php?tid=8040) |