From: <dai...@us...> - 2012-07-26 10:12:43
|
Revision: 5560 http://web-erp.svn.sourceforge.net/web-erp/?rev=5560&view=rev Author: daintree Date: 2012-07-26 10:12:33 +0000 (Thu, 26 Jul 2012) Log Message: ----------- fix headings Modified Paths: -------------- trunk/doc/Change.log trunk/includes/PDFInventoryValnPageHeader.inc Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2012-07-26 08:27:54 UTC (rev 5559) +++ trunk/doc/Change.log 2012-07-26 10:12:33 UTC (rev 5560) @@ -1,4 +1,5 @@ webERP Change Log +26/7/2012 Hindra Joshua: New wood theme - mods to index.php / header.inc and footer.inc and modify existing themes to work with new html tag classes used - using <div> tags instead of tables for layout of the main menu 25/7/2012 Exson: Fix the typo to make the $TotalQuantityOnHand is correct in SupplierInvoice.php 24/7/2012 Exson/Phil: SupplierInvoice.php incorrect calculation of weighted average cost just using the stock quantity at a single location, now corrected 24/7/2012 Phil: includes/Z_POSDataCreation.php - added system default date format config to POS data upload file Modified: trunk/includes/PDFInventoryValnPageHeader.inc =================================================================== --- trunk/includes/PDFInventoryValnPageHeader.inc 2012-07-26 08:27:54 UTC (rev 5559) +++ trunk/includes/PDFInventoryValnPageHeader.inc 2012-07-26 10:12:33 UTC (rev 5560) @@ -35,8 +35,9 @@ $LeftOvers = $pdf->addTextWrap(437,$YPos,60,$FontSize,_('Cost'), 'right'); $LeftOvers = $pdf->addTextWrap(500,$YPos,60,$FontSize,_('Extended Cost'), 'right'); } else { - $LeftOvers = $pdf->addTextWrap($Xpos,$YPos,320-$Left_Margin,$FontSize,_('Category'), 'right'); - $LeftOvers = $pdf->addTextWrap(510,$YPos,60,$FontSize,_('Cost'), 'right'); + $LeftOvers = $pdf->addTextWrap($Xpos,$YPos,320-$Left_Margin,$FontSize,_('Category'), 'center'); + $LeftOvers = $pdf->addTextWrap(360,$YPos,60,$FontSize,_('Quantity'), 'right'); + $LeftOvers = $pdf->addTextWrap(490,$YPos,60,$FontSize,_('Cost'), 'right'); } $FontSize=8; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |