Page 1 of 1

Order Details

Posted: Fri Feb 01, 2008 1:56 pm
by dpr1016
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?

Posted: Fri Feb 01, 2008 3:01 pm
by compunerdy
Yes..would love to see this fixed myself.

Posted: Fri Feb 01, 2008 3:13 pm
by Shopping Cart Admin
Hello,

How was the order paid? Google checkout? Paypal?

Posted: Fri Feb 01, 2008 3:22 pm
by compunerdy
I have some like this with paypal normal and paypal gateway (credit card)

Posted: Fri Feb 01, 2008 3:26 pm
by dpr1016
The orders were all paid through Authorize.net

You can explicity set this in code

Posted: Fri Feb 01, 2008 4:04 pm
by 500lbdev
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.