Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 4 of 4

Thread: Customer aproval.

  1. #1
    ganesh is offline Junior Member
    Join Date
    Nov 2010
    Posts
    2

    Thumbs up Customer aproval.

    No Prices will be shown until a customer registers as one of the customer types. Retail
    customers can see prices as soon as they register. Both distributor and wholesale customers
    can’t see prices until they have been approved by admin. Need a notification for the approval
    request once they register.

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    Do you have an option in createaccount.aspx page where customers can select which customer level they want to be assigned to or it's a discretion of the admin user?

    Not probably an approval request, but just a simple notification to admin when someone registers? You can use the existing appconfig: SendWelcomeEmail logic and add the admin user to the recipient along with the customer's email address.

    Open createaccount.aspx.cs file, take a look CreateAccount() method under

    Code:
    if (AppLogic.AppConfigBool("SendWelcomeEmail") && EMailField.IndexOf("@") != -1)
    You can also check appconfig: DefaultCustomerLevelID parameter.

  3. #3
    ganesh is offline Junior Member
    Join Date
    Nov 2010
    Posts
    2

    Thumbs up customer aproval

    In my case I don't have any option on createaccount.aspx page where customer can select which customer level they want to be assigned. Admin manualy enter customer to particular customer level.
    Is this possible that user can select his customer level at time of registration and that email goes to the Admin ?After aproval of admin user can see the price.



    Thank's.

  4. #4
    AspDotNetStorefront Staff - Scott's Avatar
    AspDotNetStorefront Staff - Scott is offline Administrator
    Join Date
    Mar 2007
    Location
    Ashland, OR
    Posts
    2,390

    Default

    There's nothing built in to allow customers to choose their own customer level, no. You could do that with a little customization, shouldn't be too hard.