Hello there,
I am writing a Document service for the SalesTable and i want to convert the Sales Status which is an enum to a string and therfore i have done the following:
[DataMemberAttribute('SalesStatus')]
public str parmSalesStatus(str _SalesStatus = SalesStatus)
{
SalesStatus = _SalesStatus;
return SalesStatus;
}
mapsales
this.parmSalesStatus(enum2str(_sales.SalesStatus));
Will this in anyway effect anything? I just want to make sure nothing wrong happens and i get the values.
*This post is locked for comments
I have the same question (0)