Feedback Request Using a Web Form

In the TechoERP version 11, we have a feature which allowed collecting a Feedback from a Customer and users. In TechoERP, this feature is now manageable using built-in customisation tools like:

  1. Custom DocType
  2. Web Form
  3. Notification

Following are the steps on how you should configure a feature and start collecting feedback.

Feedback as a DocType

Create a Custom DocType for Rating on these lines

  1. In the first fields, list a DocTypes for which you want to collect a rating
  2. In the Document Name field, just enter the name of first field "document", so that it becomes a Dynamic Link field.
  3. Enter a Rating field. You can also choose other data or select field, if you wish to take rating on those lines.

Web Form for Feedback Form

Once a DocType is created, simply create a Web Form by fetching all the standard fields from Feedback doctype.

Create a Notification

A Notification should be created to send a link to a user following which they will submit a rating. You can define the conditions for triggering an email based on standard features of Notification. Following is the help on how to define a message and link which would take user to a Web Form and allow submitting a rating.

https://example.techoerp.com/feedback?new=1&document=Sales%20Order&document_name={{doc.name}}

Where:

  1. example.techoerp.com will be URL of your TechoERP account
  2. feedback will be the name of custom doctype added for collecting a feedback
  3. document=Sales%20Order& will be a name of DocType for which you want to sent a notification
  4. document_name={{doc.name}} will pick-up specific document name and update in the Document Name field of Feedback form.