var vm; var reportdata; $(function () { $("#host_header").find(".button").remove(); $("#spanUserName").remove(); checkBrowser(); if (teamintelligence) { $('.assettr').remove(); $(".assettrmobile").remove(); } vm = new Vue({ el: '#divreport', data: { report: { Asset: {}, Template: {}, ReportLayout: {} } }, methods: { reload: function (data) { this.report = data; } } }); GetInspectionReport(); }); function checkBrowser() { if (isMobile()) { $(".logo").remove(); $(".logoright").remove(); $(".headernote").remove(); $("#host_header").css("text-align", "left").css("min-width", "unset"); $("#divreport").css("width", "unset"); //$("#button-edit").remove(); $("#button-print").remove(); $("#button-dl").css("margin-right", 10); $(".assettr").remove(); $("#tdiissues").attr("colspan", "2"); $("#tdpages").attr("colspan", "2"); //$(".assettrmobile").children().eq(0).css("width", 130); //$(".assettrmobile").children().eq(1).css("width", "auto"); $(".assettrmobile").show(); } else { $(".assettrmobile").remove(); } } function GetInspectionReport() { showmaskbg(true); var p = JSON.stringify([teamintelligence, htmlencode(reportid)]); inspectionrequest("GetInspectionReport", p, function (data) { if (typeof (data) === "string") { showAlert(data, GetTextByKey("P_IPT_ERROR", 'Error')); } else { reportdata = data; vm.reload(data); showReportLayout(data.ReportLayout); showIdentifiedQuestions(data.IdentifiedQuestions); showPages(data); showSignature(data); } showmaskbg(false); }, function (err) { showmaskbg(false); }); } function showReportLayout(layout) { $('#reportlayoutlogo').hide(); $('.td_pageheaderleft').html(''); $('.td_pageheadercenter').html(''); $('.td_pageheaderright').html(''); $('.td_pagefooterleft').html(''); $('.td_pagefootercenter').html(''); $('.td_pagefooterright').html(''); if (layout) { $('.td_pageheaderleft').html(layout.PageHeaderLeft); $('.td_pageheadercenter').html(layout.PageHeaderCenter); $('.td_pageheaderright').html(layout.PageHeaderRight); $('.td_pagefooterleft').html(layout.PageFooterLeft); $('.td_pagefootercenter').html(layout.PageFooterCenter); $('.td_pagefooterright').html(layout.PageFooterRight); $('#reportlayoutlogo').show(); if (layout.IncludeLOGO && layout.LOGO && layout.LOGO.length > 0) { var jpeg = layout.LOGO; if (typeof (layout.LOGO) !== "string") { jpeg = arrayBufferToBase64(layout.LOGO); } $('#reportlayoutlogo').attr('src', 'data:image/png;base64,' + jpeg); } } } function arrayBufferToBase64(buffer) { var binary = ''; var bytes = new Uint8Array(buffer); var len = bytes.byteLength; for (var i = 0; i < len; i++) { binary += String.fromCharCode(bytes[i]); } return window.btoa(binary); } function showIdentifiedQuestions(questions) { if (!questions || questions.length == 0) return; var content = $('
'); content.append($('
IDENTIFIED ISSUES
')); if (questions && questions.length > 0) { for (var i = 0; i < questions.length; i++) { var q = questions[i]; var div_question = $('
'); content.append(div_question); div_question.append($('
').text(q.DisplayText)) if (q.StaticPictures && q.StaticPictures.length > 0) { var div_pic = $('
'); div_pic = createPictures(q.StaticPictures, div_pic); div_question.append(div_pic) } createAnswerContent(content, q); } } else content.append($('
').text(GetTextByKey("P_IPT_NOQUESTIONS", 'No Questions'))); $('#divquestions').append(content); } function showSeverityLevel(level) { var levertext = GetTextByKey("P_IPT_SEVERITYLEVEL_COLON", "Severity Level: "); if (level === 0) levertext = ""; if (level === 1) levertext += GetTextByKey("P_IPT_SL_LOW", "Low"); else if (level === 2) levertext += GetTextByKey("P_IPT_SL_MEDIUM", "Medium"); else if (level === 3) levertext += GetTextByKey("P_IPT_SL_HIGH", "High"); return levertext; } function showPages(report) { var pages = report.Template.Pages; var pagescontent = $('
'); pagescontent.append($('
' + GetTextByKey("P_IPT_INSPECTIONDETAIL", "INSPECTION DETAIL") + '
')); for (var i = 0; i < pages.length; i++) { var p = pages[i]; var pagecontent = createPage(p); pagescontent.append(pagecontent); } $('#divpages').append(pagescontent); } function showSignature(report) { if (report && report.SignatureUrl && report.SignatureUrl != "") { $('#divsign').append($('
')); $('#divsign').append($('
' + GetTextByKey("P_IPT_SIGNATURE", "Signature") + '
')); var pic = $('').attr('src', report.SignatureUrl); $('#divsign').append(pic); } } function createPage(page) { var content = $('
'); var divpage = $('
'); content.append(divpage); var btnpage = $(''); btnpage.click(function () { var icon = $(this); if (icon.hasClass('iconangleright')) { icon.removeClass('iconangleright').addClass('iconangledown'); icon.parent().next().show(); } else { icon.removeClass('iconangledown').addClass('iconangleright'); icon.parent().next().hide(); } }); divpage.append(btnpage); divpage.append($('').text(page.DisplayText)); var sectioncontent = createSectionContent(page); content.append(sectioncontent); return content; } function createSectionContent(page) { var content = $('
'); if (page.Sections && page.Sections.length > 0) { for (var i = 0; i < page.Sections.length; i++) { var s = page.Sections[i]; var divsection = $('
'); content.append(divsection); var btnsection = $(''); btnsection.click(function () { var icon = $(this); if (icon.hasClass('iconangleright')) { icon.removeClass('iconangleright').addClass('iconangledown'); icon.parent().next().show(); } else { icon.removeClass('iconangledown').addClass('iconangleright'); icon.parent().next().hide(); } }); divsection.append(btnsection); var ispic = false; if (s.StaticPictures && s.StaticPictures.length > 0) { ispic = true; var div_pic = $(''); createPictures(s.StaticPictures, div_pic); divsection.append(div_pic); divsection.append('
'); } var span_title = $('').text(s.DisplayText); if (ispic) span_title.css('margin-left', 24); divsection.append(span_title); var qc = createQuestionContent(s, i); content.append(qc); } } else content.append($('
').text('No Sections')); return content; } function createQuestionContent(section) { var content = $('
'); if (section.Questions && section.Questions.length > 0) { for (var i = 0; i < section.Questions.length; i++) { var q = section.Questions[i]; var div_question = $('
'); content.append(div_question); var div_title = $('
').text(q.DisplayText); div_question.append(div_title); if (q.StaticPictures && q.StaticPictures.length > 0) { var div_pic = $('
'); div_pic = createPictures(q.StaticPictures, div_pic); div_question.append(div_pic) } createAnswerContent(content, q); if (i != section.Questions.length - 1) content.append($('
')); } } else content.append($('
').text(GetTextByKey("P_IPT_NOQUESTIONS", 'No Questions'))); return content; } function createPictures(pictures, p) { for (var i = 0; i < pictures.length; i++) { var pic = pictures[i]; var img = $('').attr('src', pic.Url).attr('title', pic.Name); img.click(pic.Url, function (e) { window.open(e.data, "_blank") }); $(p).append(img); } return p; } function createAnswerContent(p, q) { var leveltext = showSeverityLevel(q.SeverityLevel); var label_level = $('').text(leveltext); if (reportdata && reportdata.Answers) { for (var i = 0; i < reportdata.Answers.length; i++) { var a = reportdata.Answers[i]; if (a.QuestionId.toLowerCase() == q.Id.toLowerCase()) { if ([5, 8, 9, 10, 14, 15, 19].indexOf(q.QuestionType) < 0 || (q.QuestionType == 15 && q.SubType != 15)) {//except YesOrNo/DropDown/MultipleChoice/Picture/FuelRecords var result = a.Result; if (result == null) { result = ''; } if (q.QuestionType == 6 && result.indexOf(' ') >= 0)//Date do not show time result = result.split(' ')[0]; if (q.QuestionType == 11//Odometer || q.QuestionType == 18 //FuelUsed || (q.QuestionType == 15 && q.SubType == 8)//FuelRecords Odometer || (q.QuestionType == 15 && q.SubType == 10))//FuelRecords Quantity result += " " + convertUnits(a.Units); var div_answer = $('
'); if (q.QuestionType == 1 || (q.QuestionType == 15 && q.SubType == 14)) p.append(div_answer.html(replaceHtmlText(result))).append("
"); else if (q.QuestionType == 17 && q.TextToCompare != null && result.toLowerCase() != q.TextToCompare.toLowerCase()) // BarCodeValidate p.append(div_answer .append($('').text(result)) .append($('').text('(' + q.TextToCompare + ')')) ).append("
"); else p.append(div_answer.text(result)).append("
"); div_answer.append(label_level); } else if (q.QuestionType == 5) {//YesOrNo if (a.SelectedItems && a.SelectedItems.length > 0) { var item = $('
'); var div_bg = $('
'); var label = $('