We recommend reviewing what is submitted before posting, in case your idea has already been submitted by another community member. If it has been submitted, vote for that existing feature request (by clicking the up arrow) to increase its opportunity of being added to Cireson solutions.
For more information around feature requests in the Cireson Community click here.
Comments
Like a popup window when the green saved image appears?
The second one is easy as it just needs to build that URL based on a predefined template ID and the ID of the work item 'pageForm.viewModel.Id'
The first one would need to look up the related CIs and filter to only class types of SurveyResult and build the URL that way but it should be do-able.
If not, is it possible to change the IR and SR form to add a field as an URL Link to the survey forms as I would have done for the task with condition on the status ? Thanks in advance for your reply.
app.custom.formTasks.add('ServiceRequest', "Fill satisfaction survey", function (formObj, viewModel) { var win = window.open("https://scsm-dev.intra-tpg.ch/View/SurveyApp#/survey/create?templateId=0eec0fa4-7030-b0ed-14bd-4c5dffc01b50&workItemId=" + pageForm.viewModel.BaseId, '_blank'); win.focus(); return; });
If we could add more condition, it would be good to hide the task or even better change the task to "See the survey result", if the survey has already been answered for this request.