Page 1 of 1

apply Credits and Additional Customer fields

Posted: Thu Jul 24, 2008 2:31 pm
by ryanstowasser
I have a client that wants to use a web service to validate a customer on the site with another system. That system will return a number that needs to be applied to the customer’s order as a credit.

My current thinking is to leverage the Gift Certificate functionality to discount the order.

My second question is on adding additional customer fields to the user. There is a ac_CustomFields table that I have seen referenced in the forums for what looks similar to what I want. Should I use the CustomFields Table or add columns onto the User table? What do you recommend?

Re: apply Credits and Additional Customer fields

Posted: Fri Jul 25, 2008 6:55 am
by mazhar
My second question is on adding additional customer fields to the user. There is a ac_CustomFields table that I have seen referenced in the forums for what looks similar to what I want. Should I use the CustomFields Table or add columns onto the User table? What do you recommend?
The functionality for adding additional customer field is already there,so no need for any database modification. You can add the information in User.Settings property, which connects to a UserSettingsCollection class.
Please read the following post
viewtopic.php?f=45&t=7228

Re: apply Credits and Additional Customer fields

Posted: Fri Jul 25, 2008 10:59 am
by ryanstowasser
thank you for the link. This will be very helpful.