function GetWorkOrderSurveyResult() { $('#divtemplate').empty(); showmaskbg(true); worequest("GetWorkOrderSurveyResult", surveyid, function (data) { $('#divtemplate').empty(); if (typeof (data) === "string") { showAlert(data, GetTextByKey("P_WOS_ERROR", 'Error')); } else { surveydata = data.SurveyData; vm.reload(data); createTemplate(data.SurveyData); } showmaskbg(false); }, function (err) { showmaskbg(false); }); } function createTemplate(survey) { var template = survey.Question.Questions; var tempcontent = $('
'); var content = $(''); var divpage = $(''); content.append(divpage); tempcontent.append(content); var questioncontent = createQuestionContent(template); content.append(questioncontent); $('#divtemplate').append(tempcontent); } function createQuestionContent(template) { var content = $(''); if (template.Questions && template.Questions.length > 0) { for (var i = 0; i < template.Questions.length; i++) { var q = template.Questions[i]; var div_question = $(''); content.append(div_question); var div_title = $(''); if (i != 0) { div_title.css('margin-top', 20); } var span_name = $('').text(q.Title); var span_title = $('').text(q.TitleTips); div_title.append(span_name).append(span_title) div_question.append(div_title); createAnswerContent(content, q); } } return content; } function createAnswerContent(p, q) { if (surveydata && surveydata.Result) { for (var i = 0; i < surveydata.Result.length; i++) { var a = surveydata.Result[i]; if (a.QuestionId.toLowerCase() == q.Id.toLowerCase()) { if (q.QuestionType == 2) { if (q.MultipleSelect) { if (a.Values && a.Values.length > 0) { for (var j = 0; j < a.Values.length; j++) { var item = $(''); var label = $('