From: <tim...@us...> - 2010-07-03 21:45:24
|
Revision: 3550 http://web-erp.svn.sourceforge.net/web-erp/?rev=3550&view=rev Author: tim_schofield Date: 2010-07-03 21:45:18 +0000 (Sat, 03 Jul 2010) Log Message: ----------- Layout changes Modified Paths: -------------- trunk/BOMExtendedQty.php trunk/doc/Change.log.html Modified: trunk/BOMExtendedQty.php =================================================================== --- trunk/BOMExtendedQty.php 2010-07-03 21:44:57 UTC (rev 3549) +++ trunk/BOMExtendedQty.php 2010-07-03 21:45:18 UTC (rev 3550) @@ -8,7 +8,7 @@ $PageSecurity = 2; include('includes/session.inc'); -If (isset($_POST['PrintPDF'])) { +if (isset($_POST['PrintPDF'])) { include('includes/PDFStarter.php'); $pdf->addInfo('Title',_('Quantity Extended BOM Listing')); @@ -282,8 +282,9 @@ $title=_('Quantity Extended BOM Listing'); include('includes/header.inc'); + echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="">' . ' ' . $title.'<br>'; - echo '</br></br><form action=' . $_SERVER['PHP_SELF'] . " method='post'><table>"; + echo '</br></br><form action=' . $_SERVER['PHP_SELF'] . " method='post'><table class=selection>"; echo '<tr><td>' . _('Part') . ":</td><td><input type ='text' name='Part' size='20'>"; echo '<tr><td>' . _('Quantity') . ":</td><td><input type='text' class=number name='Quantity' size='4'>"; echo '<tr><td>' . _('Selection Option') . ":</td><td><select name='Select'>"; @@ -294,7 +295,7 @@ echo "<option selected value='yes'>" . _('Print With Alternating Highlighted Lines'); echo "<option value='no'>" . _('Plain Print'); echo '</select></td></tr>'; - echo "</table></br></br><div class='centre'><input type=submit name='PrintPDF' value='" . _('Print PDF') . "'></div>"; + echo "</table></br></br><div class='centre'><br><input type=submit name='PrintPDF' value='" . _('Print PDF') . "'></div>"; include('includes/footer.inc'); Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-07-03 21:44:57 UTC (rev 3549) +++ trunk/doc/Change.log.html 2010-07-03 21:45:18 UTC (rev 3550) @@ -1,5 +1,7 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>03/07/10 Tim: BOMExtendedQty.php - Layout changes </p> +<p>03/07/10 Tim: BankReconciliation.php - Corrections to sql statements and layout changes </p> <p>03/07/10 Tim: BankMatching.php - Corrections to sql statements and layout changes</p> <p>03/07/10 Tim: BankAccounts.php - Layout changes</p> <p>03/07/10 Tim: AddCustomerTypeNotes.php - Layout changes and verify Type ID before query</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |