From: <tim...@us...> - 2010-07-03 21:45:41
|
Revision: 3551 http://web-erp.svn.sourceforge.net/web-erp/?rev=3551&view=rev Author: tim_schofield Date: 2010-07-03 21:45:36 +0000 (Sat, 03 Jul 2010) Log Message: ----------- Layout changes Modified Paths: -------------- trunk/BOMIndented.php trunk/doc/Change.log.html Modified: trunk/BOMIndented.php =================================================================== --- trunk/BOMIndented.php 2010-07-03 21:45:18 UTC (rev 3550) +++ trunk/BOMIndented.php 2010-07-03 21:45:36 UTC (rev 3551) @@ -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',_('Indented BOM Listing')); @@ -185,7 +185,7 @@ $ListCount = DB_num_rows($result); // UldisN - While ($myrow = DB_fetch_array($result,$db)){ + while ($myrow = DB_fetch_array($result,$db)){ $YPos -=$line_height; $FontSize=8; @@ -258,8 +258,9 @@ $title=_('Indented 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>"; echo "<td><input type ='text' name='Part' size='20'>"; @@ -272,7 +273,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><p><div class='centre'><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:45:18 UTC (rev 3550) +++ trunk/doc/Change.log.html 2010-07-03 21:45:36 UTC (rev 3551) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>03/07/10 Tim: BOMIndented.php - Layout changes </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> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |