From: ronald c. <ro...@po...> - 2003-08-06 18:04:23
|
Dear Mr. Daintree, When I purchase 0.89 Quantity in web-erp of any Item the P.O is automatically adjusted to 0.9. It is the same for the adjustments. Is there any way to avoid this. Thank you, Ronald. ___________________________________________________ Which tennis player was stabbed in 1993 while playing against Magdaleena Maleeva in the Citizen Cup? Find out at postmaster.co.uk http://www.postmaster.co.uk/cgi-bin/meme/quiz.pl?id=233 |
From: Chris B. <cb...@en...> - 2003-08-06 18:55:19
|
Ronald, If you comment out line 510 of PO_Items.php : $_POST['Qty'] =1; It will allow you to put in fractions of a part. Im not too sure why you would want to do this, but I know in the remanufacturing environment this is very common practice. You would have to ask Phil if that would make anything else not seem to work right, I have commented it out on a test machine and it seems to work okay and not have any adverse affects. Chris Bice IT Manager EnCore On Wed, 2003-08-06 at 13:04, ronald carhuas wrote: > Dear Mr. Daintree, > > When I purchase 0.89 Quantity in web-erp > of any Item the P.O is automatically > adjusted to 0.9. > > It is the same for the adjustments. > > Is there any way to avoid this. > > > Thank you, > > Ronald. > > > ___________________________________________________ > Which tennis player was stabbed in 1993 while playing against Magdaleena Maleeva in the Citizen Cup? > Find out at postmaster.co.uk > > http://www.postmaster.co.uk/cgi-bin/meme/quiz.pl?id=233 > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Web-erp-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/web-erp-users |
From: Daintree F. <p.d...@xt...> - 2003-08-06 20:26:23
|
Hi Ronald, This is just a rounding - in some businesses I quite understand that several decimal places may be required. The quantity is held to 4 decimal places but is rounded for display purposes to 1 on this screen. This is easy enough to modify, there is a number_format() call during the display of the order items - the second argument to this call is the number of dp to display. To use decimal places in stock quantities throughout - that display with all decimal places there are a few fields that would need to be modified to display the exact quantities. Stock adjustments, sales order entry, confirming invoices, stock transfers etc etc. I guess a good improvement might be to make the decimal places to display for stock/inventory items a config.php variable that is used in the formating of these displays. I will keep a note of this to look into for future I do not think that it is a major job to change. Thanks for raising this concern. Phil ----- Original Message ----- From: "ronald carhuas" <ro...@po...> To: <web...@li...> Sent: Thursday, August 07, 2003 6:04 AM Subject: [Web-erp-users] Round Up Problem for Purchasing and Selling > Dear Mr. Daintree, > > When I purchase 0.89 Quantity in web-erp > of any Item the P.O is automatically > adjusted to 0.9. > > It is the same for the adjustments. > > Is there any way to avoid this. > > > Thank you, > > Ronald. > |
From: Chris B. <cb...@en...> - 2003-08-06 20:28:35
|
Ronald, Also, you will need to change the following items to make it recognize the two digit fraction for receiving: GoodsReceived.php Line #'s 67,68 Change the 1 to a 2 $DisplayQtyOrd = number_format($LnItm->Quantity,1); $DisplayQtyRec = number_format($LnItm->QtyReceived,1); Chris Bice IT Manager EnCore Inc. On Wed, 2003-08-06 at 13:04, ronald carhuas wrote: > Dear Mr. Daintree, > > When I purchase 0.89 Quantity in web-erp > of any Item the P.O is automatically > adjusted to 0.9. > > It is the same for the adjustments. > > Is there any way to avoid this. > > > Thank you, > > Ronald. > > > ___________________________________________________ > Which tennis player was stabbed in 1993 while playing against Magdaleena Maleeva in the Citizen Cup? > Find out at postmaster.co.uk > > http://www.postmaster.co.uk/cgi-bin/meme/quiz.pl?id=233 > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Web-erp-users mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/web-erp-users |