Marking when a SO is printed - Acumatica -


i'm interested in hooking print report action on sales order mark "traveler printed" when has printed particular report. suggestions how accomplish this? know it's done on po i'm struggling parse out , how of it.

in customization project editor code section, create graph extension soorderentry.

customization project editor has override method feature handy generating event handler prototype: enter image description here

you can edit generated stub definition this:

namespace px.objects.so {    public class soorderentry_extension:pxgraphextension<soorderentry>   {     #region event handlers     public delegate ienumerable reportdelegate(pxadapter adapter, string reportid);      [pxoverride]     public ienumerable report(pxadapter adapter, string reportid, reportdelegate basemethod)     {       if (reportid == "so641010")       {           pxtrace.writeinformation("i'm doing things here, after report action has been invoked, before report launched.");       }        return basemethod(adapter,reportid);     }     #endregion   } } 

Comments

Popular posts from this blog

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -

minify - Minimizing css files -