function getComments(reset) { if (reset) { resetComments(); } if (!workorderid || workorderid == "") return; $('#mask_over_bg').show(); worequest("GetComments", workorderid, function (data) { $('#mask_over_bg').hide(); if (typeof (data) === "string") { return; } $("#li_comments").data("loaded", true); internal?.load(data); }, function (err) { $('#mask_over_bg').hide(); }); } function showComment(comment, isfirst) { var commoentctrl = $("#divcomments"); var div = $("
").appendTo(commoentctrl); if (isfirst) div.css("margin-top", 0); var divuser = $("").appendTo(div); divuser.append($("").text(comment.UserName)); divuser.append($("").text(comment.SubmitDateStr)); var divcontent = $("").appendTo(div); var contentctrl = $(""); divcontent.append(contentctrl); contentctrl.html(replaceHtmlText(comment.Comment)); if (comment.FollowUp && comment.FollowUp !== "") { var sendto = ""; var emails = comment.FollowUp.split(';'); if (emails && emails.length > 0) { for (var i = 0; i < emails.length; i++) { sendto += emails[i] + "\r\n"; } } if (sendto !== "") sendto = GetTextByKey("P_WO_SENTTO_COLON", "Sent To :") + "\r\n" + sendto; var div_status = $("").text(GetTextByKey('P_WO_SENT', 'Sent')).attr('title', sendto); divcontent.append(div_status); } } function addWorkOrderComment(comment) { if ($.trim(comment) == "") { //showAlert(GetTextByKey("P_FR_PLEASEINPUTTHECOMMENT", "Please input the comment."), GetTextByKey("P_WO_ERROR", 'Error')); return; } var param = JSON.stringify([workorderid, comment]); param = htmlencode(param); $('#mask_over_bg').show(); worequest("AddWorkOrderComment", param, function (data) { $('#mask_over_bg').hide(); if (data !== "") { showAlert(data, GetTextByKey("P_WO_ERROR", 'Error')); return; } if (typeof internal !== 'undefined') { internal.text = ''; } $('#commentsinputcount').text("0/" + $('#dialog_comments').attr("maxlength")); getComments(); }, function (err) { $('#mask_over_bg').hide(); }); } function resetComments() { if (typeof internal !== 'undefined') { internal.text = ''; internal.load(); } } var communicationsLoading = false; var communicationsLoadingWaitCount = 0; /**Communication */ function getCommunications(reset) { if (reset) { resetCommunications(); } if (communicationsLoading) { communicationsLoadingWaitCount++; return; } communicationsLoading = true; if (!workorderid || workorderid == "") return; $('#mask_over_bg').show(); worequest("GetCommunications", workorderid, function (data) { communicationsLoading = false; $('#mask_over_bg').hide(); if (typeof (data) === "string") { return; } $("#li_communications").data("loaded", true); customer?.load(data, customercontacts, followers); if (communicationsLoadingWaitCount > 0) { communicationsLoadingWaitCount = 0; getCommunications(reset); } }, function (err) { communicationsLoading = false; if (communicationsLoadingWaitCount > 0) { communicationsLoadingWaitCount = 0; getCommunications(reset); } $('#mask_over_bg').hide(); }); } function showCommunication(txt, isfirst) { var commoentctrl = $("#divcommunications"); var div = $("").appendTo(commoentctrl); if (isfirst) div.css("margin-top", 0); var name = ""; if (txt.IsReply) { for (var i = 0; i < customercontacts.length; i++) { var contact = customercontacts[i]; if (isEmail(txt.Sender)) { if (contact.Email === txt.Sender) { name = contact.Name; break; } } else { if (contact.MobilePhone === txt.Sender) { name = contact.Name; break; } } } } if (name !== "") { $("").text(name).appendTo(div); } var sendto = ""; if (!txt.IsReply && txt.OriPhoneNumbers && txt.OriPhoneNumbers.length > 0) { for (var i = 0; i < txt.OriPhoneNumbers.length; i++) { var oriph = txt.OriPhoneNumbers[i]; if (customercontacts && customercontacts.length > 0) { var cname = ""; for (var j = 0; j < customercontacts.length; j++) { var contact = customercontacts[j]; if (isEmail(oriph)) { if (contact.Email === oriph) { cname = contact.Email + " - " + contact.Name + "\r\n"; break; } } else { if (contact.MobilePhone === oriph) { cname = contact.MobilePhone + " - " + contact.Name + "\r\n"; break; } } } if (cname === "") { for (var j = 0; j < followers.length; j++) { var follower = followers[j]; if (isEmail(oriph)) { if (follower.Email === oriph) { cname = follower.Email + " - " + follower.Name + "\r\n"; break; } } else { if (follower.MobilePhone === oriph) { cname = follower.MobilePhone + " - " + follower.Name + "\r\n"; break; } } } } if (cname === "") sendto += oriph + "\r\n"; else sendto += cname; } else { sendto += oriph + "\r\n"; } } } if (sendto !== "") sendto = GetTextByKey("P_WO_SENTTO_COLON", "Send To :") + "\r\n" + sendto; $("").text(((txt.IsReply && $.trim(txt.FormatSender) !== "") ? txt.FormatSender : txt.Sender) + " - " + txt.TimeStr).attr('title', txt.IsReply ? "" : sendto).appendTo(div); var contentctrl = $("").appendTo(div); if (txt.Message.toLowerCase().indexOf("http://") >= 0 || txt.Message.toLowerCase().indexOf("https://") >= 0) { contentctrl.html(formatUrl(txt.Message)); } else { contentctrl.text(txt.Message); } if (txt.IsReply) contentctrl.addClass("txtother"); else { contentctrl.addClass("txtself"); var status = getMsgStatus(txt); if (status.Status != -100) { var statustext = ""; if (status.Status == 0) { statustext = GetTextByKey("P_WO_XXXXXX", "Pending"); contentctrl.css("background-color", "#FFC107"); } else if (status.Status == 1) { statustext = GetTextByKey("P_WO_XXXXXX", "Sent"); } else if (status.Status == 9) { statustext = GetTextByKey("P_WO_XXXXXX", "Failed"); contentctrl.css("background-color", "#FFC107"); } else if (status.Status == 10) { statustext = GetTextByKey("P_WO_XXXXXX", "Opt-Out"); contentctrl.css("background-color", "#FFC107"); } else if (status.Status == 412) { statustext = GetTextByKey("P_WO_XXXXXX", "Landline"); contentctrl.css("background-color", "#FFC107"); } else { statustext = GetTextByKey("P_WO_XXXXXX", "Undelivered"); contentctrl.css("background-color", "#FFC107"); } var divstatus = $("