an ASP.NET Open Source CMS & eCommerce platform
Search:
Last Post 11/15/2010 9:39:05 AM By lukezy. 3 replies.
12/4/2008 7:09:12 AM
Newmedia Design
Posts: 65
Joined: 9/25/2008
Checkout Ordernnumber
Hi Lukezy 
 
I am using the paypal standard method of checkling out as it si very similar to the world pay method. I am working on the onepagecheckout,ascx usercontrol.
 
I am adding a form that supplies the order details using hidden fields examples of these forms are
cartid
amount
bill address
ship address.
 
 
I am nout sure how to access this from the onepagecheckout.ascx control. I noticed in the open source version in the checkout.ascx file there si code like this. Can I implement something similar in the onepagecheckout.ascx
 
Thanks
 

orderNumber =

 

<font color="#2b91af" size="2"><font color="#2b91af" size="2">Order.Add(userName, <font color="#2b91af" size="2"><font color="#2b91af" size="2">Utils.GetUserName(), email, <font color="#2b91af" size="2"><font color="#2b91af" size="2">WebUtils.GetDiscountRate(), shippingMethod.Name, ShippingAddress, billingAddress, type, card,
 
12/5/2008 4:02:43 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Checkout Ordernnumber
Sorry, I don't quite get what you were asking for. Is it the question about the order number or something else?
 
In OnePageCheckout.ascx.cs file, you will find the following code is creating the order.
 
        SubmitOrder(email, paymentOption.CheckoutPaymentType, paymentOption.CreditCard, paymentOption.BillingAddress);
 
You probably need to create a new entry WorldPay for CheckoutPaymentType.
DotShoppingCart Staff
11/15/2010 3:03:28 AM
malshini
Posts: 29
Joined: 11/9/2010
Re: Initial Checkout Ordernnumber
I would like to know if i can start the Order number from 1 ?
 
Since in the application it starts from 485 (3 digits). i Hope the number of digits is not an issue for making orders?
 
Thanks!
 
 
11/15/2010 9:39:05 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Checkout Ordernnumber
You can take a look at store procedure DSC_Order_Add if you know how the order number is created.
 
Basically you update OrderNumber column in the last record of table DSC_Order and set it to 0. Then the next order number will be 1.
DotShoppingCart Staff