From: <tu...@us...> - 2018-01-24 17:16:47
|
Revision: 7918 http://sourceforge.net/p/web-erp/reponame/7918 Author: turbopt Date: 2018-01-24 17:16:45 +0000 (Wed, 24 Jan 2018) Log Message: ----------- 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) Modified Paths: -------------- trunk/SelectOrderItems.php trunk/doc/Change.log Modified: trunk/SelectOrderItems.php =================================================================== --- trunk/SelectOrderItems.php 2018-01-15 22:41:51 UTC (rev 7917) +++ trunk/SelectOrderItems.php 2018-01-24 17:16:45 UTC (rev 7918) @@ -1351,7 +1351,7 @@ echo '<div class="page_help_text">' . _('Quantity (required) - Enter the number of units ordered. Price (required) - Enter the unit price. Discount (optional) - Enter a percentage discount. GP% (optional) - Enter a percentage Gross Profit (GP) to add to the unit cost. Due Date (optional) - Enter a date for delivery.') . '</div><br />'; echo '<br /> <table width="90%" cellpadding="2"> - <tr style="background-color:#800000">'; + <tr class="tableheader">'; /* if($_SESSION['Items'.$identifier]->DefaultPOLine == 1){*/ if($ShowPOLine) { echo '<th>' . _('PO Line') . '</th>'; @@ -1471,7 +1471,6 @@ echo '<tr class="EvenTableRows"> <td class="number" colspan="6"><b>' . _('TOTAL Excl Tax/Freight') . '</b></td> <td colspan="' . $varColSpan . '" class="number"><b>' . $DisplayTotal . '</b></td> - <td colspan="2">' . $ShowDiscountGP . ' </td> </tr> </table>'; Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2018-01-15 22:41:51 UTC (rev 7917) +++ trunk/doc/Change.log 2018-01-24 17:16:45 UTC (rev 7918) @@ -1,5 +1,6 @@ webERP Change Log +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) 9/1/18 PaulT: Payments.php: Remove my debug/test echo line from the previous commit. |