From: <tim...@us...> - 2010-10-02 10:39:54
|
Revision: 4086 http://web-erp.svn.sourceforge.net/web-erp/?rev=4086&view=rev Author: tim_schofield Date: 2010-10-02 10:39:48 +0000 (Sat, 02 Oct 2010) Log Message: ----------- Show correct column headings. Fixes bug 3072507 Modified Paths: -------------- trunk/doc/Change.log.html trunk/includes/PDFGrnHeader.inc Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-09-30 16:26:40 UTC (rev 4085) +++ trunk/doc/Change.log.html 2010-10-02 10:39:48 UTC (rev 4086) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>02/10/10 Tim: PDFGrnHeader.php - Show correct column headings. Fixes bug 3072507</p> <p>30/09/10 Tim: Add form verification to prevent form spoofing</p> <p>30/09/10 Tim: WWW_Users.php - SQL quoting corrections and layout changes and improvements</p> <p>30/09/10 Tim: WWW_Access.php - SQL quoting corrections and layout changes and improvements</p> Modified: trunk/includes/PDFGrnHeader.inc =================================================================== --- trunk/includes/PDFGrnHeader.inc 2010-09-30 16:26:40 UTC (rev 4085) +++ trunk/includes/PDFGrnHeader.inc 2010-10-02 10:39:48 UTC (rev 4086) @@ -43,8 +43,8 @@ $LeftOvers = $pdf->addText($FormDesign->Headings->Column1->x,$Page_Height - $FormDesign->Headings->Column1->y, $FormDesign->Headings->Column1->FontSize, _('Item Number')); $LeftOvers = $pdf->addText($FormDesign->Headings->Column2->x,$Page_Height - $FormDesign->Headings->Column2->y, $FormDesign->Headings->Column2->FontSize, _('Description')); $LeftOvers = $pdf->addText($FormDesign->Headings->Column3->x,$Page_Height - $FormDesign->Headings->Column3->y, $FormDesign->Headings->Column3->FontSize, _('Date Recd')); -$LeftOvers = $pdf->addTextWrap($FormDesign->Headings->Column4->x,$Page_Height - $FormDesign->Headings->Column4->y, $FormDesign->Headings->Column4->Length, $FormDesign->Headings->Column4->FontSize, _('Supplier Details'), 'right'); -$LeftOvers = $pdf->addTextWrap($FormDesign->Headings->Column5->x,$Page_Height - $FormDesign->Headings->Column5->y, $FormDesign->Headings->Column5->Length, $FormDesign->Headings->Column5->FontSize, _('Stock Details'), 'right'); +$LeftOvers = $pdf->addTextWrap($FormDesign->Headings->Column4->x,$Page_Height - $FormDesign->Headings->Column4->y, $FormDesign->Headings->Column4->Length, $FormDesign->Headings->Column4->FontSize, _('Qty in Suppliers UOM'), 'right'); +$LeftOvers = $pdf->addTextWrap($FormDesign->Headings->Column5->x,$Page_Height - $FormDesign->Headings->Column5->y, $FormDesign->Headings->Column5->Length, $FormDesign->Headings->Column5->FontSize, _('Qty in Stock UOM'), 'right'); /*Draw a rectangle to put the data in */ $pdf->Rectangle($FormDesign->DataRectangle->x, $Page_Height - $FormDesign->DataRectangle->y, $FormDesign->DataRectangle->width,$FormDesign->DataRectangle->height); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |