Posts

Showing posts from August, 2024

Price disc agreement

PriceGroupType PriceType Class GOPPriceDiscAdmTransTable_Extension GOPPriceDiscTableDSForm_Extension GOPPriceTypeConverter_Extension GOPPriceGroupTypeTradeAgreementMappingSalesQtyPromo GOPPriceTypeTradeAgreementMappingSalesQtyPromoDisc Table CustTable - PriceDiscGroup_LineDisc InventTableModule - InventLineDiscountGroup PriceDiscAdmTrans - CustLineGroup PriceDiscTable - CustLineGroup SalesLine -  Relation dataEntity SalesOpenSalesLineDiscountJournalLineEntity /// <summary> /// Extension class for table : PriceDiscAdmTrans /// </summary> [ExtensionOf(tableStr(PriceDiscAdmTrans))] internal final class GOPPriceDiscAdmTransTable_Extension {     /// <summary>     /// Validate weite extension before writng to DB     /// </summary>     /// <returns>Return true if pass</returns>     public boolean validateWrite()     {         boolean ret;       ...

Sales invoice report

 /// <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)         {           ...