Order Details

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
dpr1016
Ensign (ENS)
Ensign (ENS)
Posts: 10
Joined: Wed Nov 14, 2007 11:56 am

Order Details

Post by dpr1016 » Fri Feb 01, 2008 1:56 pm

Curious if anyone else has seen this or knows why it might occur. When you open an order detail in the Merchant Admin site there is a line under the "Bill To:" information where it looks like it is suppose to list the customer's email address, but in all the orders on my site it says "Email not specified". Since the email is the same as the user name shouldn't this be pulling up?

User avatar
compunerdy
Admiral (ADM)
Admiral (ADM)
Posts: 1283
Joined: Sun Nov 18, 2007 3:55 pm

Post by compunerdy » Fri Feb 01, 2008 3:01 pm

Yes..would love to see this fixed myself.

User avatar
Shopping Cart Admin
AbleCommerce Admin
AbleCommerce Admin
Posts: 3055
Joined: Mon Dec 01, 2003 8:41 pm
Location: Vancouver, WA
Contact:

Post by Shopping Cart Admin » Fri Feb 01, 2008 3:13 pm

Hello,

How was the order paid? Google checkout? Paypal?
Thanks for your support

Shopping Cart Guru
AbleCommerce.com
Follow us on Facebook

User avatar
compunerdy
Admiral (ADM)
Admiral (ADM)
Posts: 1283
Joined: Sun Nov 18, 2007 3:55 pm

Post by compunerdy » Fri Feb 01, 2008 3:22 pm

I have some like this with paypal normal and paypal gateway (credit card)

dpr1016
Ensign (ENS)
Ensign (ENS)
Posts: 10
Joined: Wed Nov 14, 2007 11:56 am

Post by dpr1016 » Fri Feb 01, 2008 3:26 pm

The orders were all paid through Authorize.net

500lbdev
Ensign (ENS)
Ensign (ENS)
Posts: 19
Joined: Fri Dec 14, 2007 12:06 pm

You can explicity set this in code

Post by 500lbdev » Fri Feb 01, 2008 4:04 pm

I noticed this issue also. You can explicitly set this in the code with the following snippet:

Code: Select all

User user = Token.Instance.User;
if (string.IsNullOrEmpty(user.PrimaryAddress.Email))
{
    user.PrimaryAddress.Email = user.Email;
    user.Save();
}
You can add this in the CheckingOut event handler.

Post Reply