DAO generation issue
Hi Team,
I am facing an issue in DAO generation for a new table which will be used for new tender being used by our customer. But here I need to implement IAuthorizableTenderLineItem because we are using AUTH framework for our payment so the tender line should be of type IAuthorizableTenderLineItem.
When we are using "implements" keyword with "customer-extension-of" or "extends" in the dtx file getting errors in the generated data model.
When I am trying with "customer-extension-of" (TenderLineItem) and "implements" (IAuthorizableTenderLineItem) keyword in dtx file then its giving error in the generated Model class to implement abstract methods.
And if I use "extends" (TenderLineItem) and "implements" (IAuthorizableTenderLineItem) keyword in dtx file, then getting error in interface class for generated getProperties() and setProperties() method (error: getProperties() in clashes with getProperties() in IRetailTransactionLineItem).