Order Notes all submitted by system after 7.0.7 upgrade.

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
crazyjoe
Commander (CMDR)
Commander (CMDR)
Posts: 172
Joined: Mon Apr 26, 2010 2:20 pm

Order Notes all submitted by system after 7.0.7 upgrade.

Post by crazyjoe » Mon Dec 12, 2011 1:59 pm

Before I upgraded to 7.0.7 I could see the email address of the user who added notes to an order, or processed the order, etc... Is there a way to get that back?
Crazy Joe Sadloski
Webmaster
Hot Leathers Inc.
http://www.hotleathers.com

crazyjoe
Commander (CMDR)
Commander (CMDR)
Posts: 172
Joined: Mon Apr 26, 2010 2:20 pm

Re: Order Notes all submitted by system after 7.0.7 upgrade.

Post by crazyjoe » Wed Dec 21, 2011 5:15 pm

Happy Holidays! I'm hoping to get some replies to this question. Has anyone else noticed this issue?

Thanks!
Crazy Joe Sadloski
Webmaster
Hot Leathers Inc.
http://www.hotleathers.com

User avatar
jmestep
AbleCommerce Angel
Posts: 8164
Joined: Sun Feb 29, 2004 8:04 pm
Location: Dayton, OH
Contact:

Re: Order Notes all submitted by system after 7.0.7 upgrade.

Post by jmestep » Thu Dec 22, 2011 8:49 am

Changing this might accomplish it, but I'm not sure it would do it in all places.
In the Admin/Orders/OrderHistory.aspx

Code: Select all

   protected string GetAuthor(object dataItem)
    {
        OrderNote note = (OrderNote)dataItem;
        if (note.NoteType == NoteType.SystemPrivate || note.NoteType == NoteType.SystemPublic) return "system";
        return note.User.Email;
    }
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx

crazyjoe
Commander (CMDR)
Commander (CMDR)
Posts: 172
Joined: Mon Apr 26, 2010 2:20 pm

Re: Order Notes all submitted by system after 7.0.7 upgrade.

Post by crazyjoe » Thu Dec 22, 2011 9:43 am

YES! Great Success! I deleted the if statement and we are back to notes with authors! Thanks for finding that Judy :-)
Crazy Joe Sadloski
Webmaster
Hot Leathers Inc.
http://www.hotleathers.com

Post Reply