Re: Merging OFBiz Wiki Spaces

2010-02-20 Thread BJ Freeman
I believe the reason was to maintain the old url forwarding. so it would mean also modifying the re-writes. Sam Hamilton sent the following on 2/19/2010 11:51 PM: > Just wondering why after moving to Apache Infra there are still multiple > OFBiz spaces on the wiki especially as on the homepage of

Re: Merging OFBiz Wiki Spaces

2010-02-20 Thread David E Jones
There are a number of reasons, a couple off the top of my head: 1. permissions can only be done by space 2. organize the documents into the major categories It would be nice if this could be accommodated better, but Confluence does not support sub-spaces (that I know of anyway), so we don't hav

Re: Merging OFBiz Wiki Spaces

2010-02-20 Thread Sam Hamilton
Ok - lets work the problem the other way round then. Can someone update the home page to show all the different spaces? Sam On 20/02/2010 16:07, David E Jones wrote: > > There are a number of reasons, a couple off the top of my head: > > 1. permissions can only be done by space > 2. organize t

Re: Merging OFBiz Wiki Spaces

2010-02-20 Thread Scott Gray
I really think it was a terrible idea to blindly move our project infrastructure over to the ASF, it has done nothing but reduce the quality of our documentation (broken links, difficult navigation) and demo server (manually maintained, less server resources, no monitoring, currently no release

Re: Merging OFBiz Wiki Spaces

2010-02-20 Thread Sam Hamilton
David - Having another look round I don't think the major category separation is working any more. The new user guide is here http://cwiki.apache.org/confluence/display/OFBIZ/New+User+Guide but end user docs are here http://cwiki.apache.org/confluence/display/OFBENDUSER/OFBiz+End+User+Docs+Home

Re: Merging OFBiz Wiki Spaces

2010-02-20 Thread BJ Freeman
so your proposing that all spaces be accessible by everyone. after all that was the purpose of the wiki in the first place. Sam Hamilton sent the following on 2/20/2010 12:33 AM: > David - Having another look round I don't think the major category > separation is working any more. > > The new us

Re: Merging OFBiz Wiki Spaces

2010-02-20 Thread David E Jones
One way or another, please understand that this is a change in how project admin and some other content is managed and would require a PMC vote. The OFBIZ space is the only one with unrestricted access, with the hope of having documentation "committers" just like we have code committers. Howeve

Re: during the checkout how to grab a list of products at the screen action level?

2010-02-20 Thread Rishi Solanki
If you are getting the object of WebShopiingCart then it is good. Get the items from shoppingCart.items(). It will return you list of ShoppingCartItem which in turn have product and productId associated to each item. shoppingCart.iterator will return iterator of cart items. You can not get this lis

Customize OfBiz

2010-02-20 Thread nikunjsurati
Hi to all, I want to customize ofbiz. My requirements are as follows. Please help me out. 1) Super Admin (like admin party) who has all the permissions and can manage whole ofbiz application. 2) organization admin (one admin can handle one organization). all the organization admins are children

Re: Customize OfBiz

2010-02-20 Thread BJ Freeman
Ofbiz is very connected to each component. Ecommerce is not it's main function and the Ecommerce functionality depends on other components you have not looked at. You can not extract Ecommerce from the rest of ofbiz. That said what you propose is plausible but not possible as ofbiz is today. My sug

Re: Scrap Factor

2010-02-20 Thread james_sg
I think the reason why the scrap factor is not used because the following code in BOMNode always returns to false. if (percScrapFactor.compareTo(bdHundred.negate()) > 0 && percScrapFactor.compareTo(bdHundred.negate()) < 0) { james_sg wrote: > > Hi, > > I have set the scrap factor for a produ

Re: Scrap Factor

2010-02-20 Thread BJ Freeman
you should still get a value from the try oneChildNode.setScrapFactor(percScrapFactor); what was the BigDecimal percScrapFactor = node.getBigDecimal("scrapFactor"); james_sg sent the following on 2/20/2010 7:42 AM: > I think the reason why the scrap factor is not used because the following > cod

Re: Scrap Factor

2010-02-20 Thread james_sg
> if (percScrapFactor.compareTo(bdHundred.negate()) > 0 && > percScrapFactor.compareTo(bdHundred.negate > ()) < 0) > When the above condition fails, > oneChildNode.setScrapFactor(percScrapFactor); > will set the scrap factor as 1, thus ignoring the original scrap factor value. This is a bu