/// <summary> /// Event handler class for adding document based on document types to print management. /// </summary> public class GOPPrintMgmtDocTypeEventHandler { /// <summary> /// To add custom invoice report document in print management for sales order invoice. /// </summary> /// <param name = "_docType"> <c>PrintMgmtDocumentType</c> </param> /// <param name = "_result"> <c>EventHandlerResult</c> </param> [SubscribesTo(classStr(PrintMgmtDocType), delegateStr(PrintMgmtDocType, getDefaultReportFormatDelegate))] public static void PrintMgmtDocType_getDefaultReportFormatDelegate(PrintMgmtDocumentType _docType, EventHandlerResult _result) { #ISOCountryRegionCodes switch (_docType) { ...
Comments
Post a Comment