Hello,
There is a 'PO Number' field on Order Options page, but eventually it disappeared on the final order detail page, where it goes and which table the program stored this data? Thanks in advance. Lei _______________________________________________ Dev mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/dev |
PO Number field is located in the OrderItem entity as
correspondingPoId. This is better than being in the intuitive OrderHeader entity because of invoicing. --- Lei Gao <[hidden email]> wrote: > Hello, > > There is a 'PO Number' field on Order Options page, > but eventually it > disappeared on the final order detail page, where it > goes and which table > the program stored this data? > > Thanks in advance. > Lei > > > _______________________________________________ > Dev mailing list > [hidden email] > http://lists.ofbiz.org/mailman/listinfo/dev _______________________________________________ Dev mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/dev |
Thanks. Chris
Lei On 3/8/06, Chris Howe <[hidden email]> wrote: PO Number field is located in the OrderItem entity as _______________________________________________ Dev mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/dev |
Hi OFBIZ team
Currently, after an order is created, this PO Number field is not saved into the database. Are you doing this by purpose? I am currently working on it to make this field saved, if this is an required field, I can put my code into the build. Lei On 3/8/06, Lei Gao <[hidden email]> wrote:
_______________________________________________ Dev mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/dev |
What are you using to create the order? Unless this
has recently been changed (within the month) ecommerce and order entry in ordermgr both save the correspondingPoId. And where are you looking in the database for the PO number? --- Lei Gao <[hidden email]> wrote: > Hi OFBIZ team > > Currently, after an order is created, this PO Number > field is not saved into > the database. Are you doing this by purpose? I am > currently working on it to > make this field saved, if this is an required field, > I can put my code into > the build. > > Lei > > > > On 3/8/06, Lei Gao <[hidden email]> wrote: > > > > Thanks. Chris > > > > Lei > > > > > > On 3/8/06, Chris Howe <[hidden email]> > wrote: > > > > > > PO Number field is located in the OrderItem > entity as > > > correspondingPoId. This is better than being in > the > > > intuitive OrderHeader entity because of > invoicing. > > > > > > --- Lei Gao < [hidden email]> wrote: > > > > > > > Hello, > > > > > > > > There is a 'PO Number' field on Order Options > page, > > > > but eventually it > > > > disappeared on the final order detail page, > where it > > > > goes and which table > > > > the program stored this data? > > > > > > > > Thanks in advance. > > > > Lei > > > > > > > > > > _______________________________________________ > > > > Dev mailing list > > > > [hidden email] > > > > http://lists.ofbiz.org/mailman/listinfo/dev > > > > > > > > > _______________________________________________ > > > Dev mailing list > > > [hidden email] > > > http://lists.ofbiz.org/mailman/listinfo/dev > > > > > > > > > > _______________________________________________ > Dev mailing list > [hidden email] > http://lists.ofbiz.org/mailman/listinfo/dev _______________________________________________ Dev mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/dev |
Order entry from ordermgr. Now if you create an order, all the related
po item's correspondingPoId are not set. I guess somebody changed it.
In the CheckOutHelper class, there currently using method is
finalizeOrderEntry to create an order and, it dose not carry this
poNumber as a parameter.
Lei On 3/8/06, Chris Howe <[hidden email]> wrote: What are you using to create the order? Unless this _______________________________________________ Dev mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/dev |
Your right...Did you find where Order Entry is losing
it but Ecommerce is not? --- Lei Gao <[hidden email]> wrote: > Order entry from ordermgr. Now if you create an > order, all the related po > item's correspondingPoId are not set. I guess > somebody changed it. In the > CheckOutHelper class, there currently using method > is finalizeOrderEntry to > create an order and, it dose not carry this poNumber > as a parameter. > > Lei > > On 3/8/06, Chris Howe <[hidden email]> wrote: > > > > What are you using to create the order? Unless > this > > has recently been changed (within the month) > ecommerce > > and order entry in ordermgr both save the > > correspondingPoId. And where are you looking in > the > > database for the PO number? > > > > --- Lei Gao <[hidden email]> wrote: > > > > > Hi OFBIZ team > > > > > > Currently, after an order is created, this PO > Number > > > field is not saved into > > > the database. Are you doing this by purpose? I > am > > > currently working on it to > > > make this field saved, if this is an required > field, > > > I can put my code into > > > the build. > > > > > > Lei > > > > > > > > > > > > On 3/8/06, Lei Gao <[hidden email]> wrote: > > > > > > > > Thanks. Chris > > > > > > > > Lei > > > > > > > > > > > > On 3/8/06, Chris Howe <[hidden email]> > > > wrote: > > > > > > > > > > PO Number field is located in the OrderItem > > > entity as > > > > > correspondingPoId. This is better than > being in > > > the > > > > > intuitive OrderHeader entity because of > > > invoicing. > > > > > > > > > > --- Lei Gao < [hidden email]> wrote: > > > > > > > > > > > Hello, > > > > > > > > > > > > There is a 'PO Number' field on Order > Options > > > page, > > > > > > but eventually it > > > > > > disappeared on the final order detail > page, > > > where it > > > > > > goes and which table > > > > > > the program stored this data? > > > > > > > > > > > > Thanks in advance. > > > > > > Lei > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > Dev mailing list > > > > > > [hidden email] > > > > > > > http://lists.ofbiz.org/mailman/listinfo/dev > > > > > > > > > > > > > > > > _______________________________________________ > > > > > Dev mailing list > > > > > [hidden email] > > > > > http://lists.ofbiz.org/mailman/listinfo/dev > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > Dev mailing list > > > [hidden email] > > > http://lists.ofbiz.org/mailman/listinfo/dev > > > > > > _______________________________________________ > > Dev mailing list > > [hidden email] > > http://lists.ofbiz.org/mailman/listinfo/dev > > > > > _______________________________________________ > Dev mailing list > [hidden email] > http://lists.ofbiz.org/mailman/listinfo/dev _______________________________________________ Dev mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/dev |
I found that to create an Order from Order Entry, it calls a method,
finalizeOrderEntry, In the OrderEntryEvent. It retrieves every thing,
but this correspondingPoId. If we get this correspondingPoId from http
request. and pass in to the CheckOutHelper's finalizeOrderEntry method,
and set it to the ShoppingCart, it will be carried to each
OrderItem.That's where this PO number get lost.
For ECommerce, I did not read the code, but I guess that module calls the method setCheckOutOptions, which takes the correspondingPoId as one of the parameters, and eventually it set the poNumber into the Cart. Lei On 3/8/06, Chris Howe <[hidden email]> wrote: Your right...Did you find where Order Entry is losing _______________________________________________ Dev mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/dev |
Free forum by Nabble | Edit this page |