08-13-04 12:48 PM
hi ken
nop, you'll have to do this with code, actually there's a way but you will
need to
read a marshalled field located in the basketgroup table (marshal_data) ....
if you
get how to read it ;)
using .NET you could do something like this (assuming you are already
authenticated)
Microsoft.CommerceServer.Runtime.Orders.Basket canasta = null;
canasta = contexto.OrderSystem.GetBasket(new Guid(contexto.UserID));
if(canasta.OrderForms[0].LineItems.Count > 0){
foreach(LineItem item in canasta.OrderForms[0].LineItems){
// here you can access the properties like:
// item.Quantity
}
}
hope it helps
"Ken Brown" <kbrown@nospamplease.formulaboats.com> wrote in message
news:uG%23uFVTgEHA.380@TK2MSFTNGP10.phx.gbl...
> Greetings,
>
> Is there a way, either through the bizdesk or in one of the tables, to see
> what a user has in their basket prior to it becoming an order?
>
> TIA,
>
> Ken
>
>
[ Post a follow-up to this message ]
|