Page 1 of 1

Order Notes all submitted by system after 7.0.7 upgrade.

Posted: Mon Dec 12, 2011 1:59 pm
by crazyjoe
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?

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

Posted: Wed Dec 21, 2011 5:15 pm
by crazyjoe
Happy Holidays! I'm hoping to get some replies to this question. Has anyone else noticed this issue?

Thanks!

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

Posted: Thu Dec 22, 2011 8:49 am
by jmestep
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;
    }

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

Posted: Thu Dec 22, 2011 9:43 am
by crazyjoe
YES! Great Success! I deleted the if statement and we are back to notes with authors! Thanks for finding that Judy :-)