Tracking an order

0
Hi, I have created an application with domainmodel for customer and manager. When a customer places a order , the manager has to send a mail to the customer, which includes a link to track the order. With the help of the link, the customer can track their own order. How will I generate the tracking link, or how to track that order which I given as a attribute.
asked
1 answers
2
  • You can use the GenerateRandomHash Java action from CommunityCommons to generate tracking numbers.
  • You can generate the tracking link by using the GetApplicationRootURL Java action from CommunityCommons, and appending it with /link/$TrackingNumber
  • You can get a customer to view an order by using the DeepLink module.
answered