1 line
66 KiB
JavaScript
1 line
66 KiB
JavaScript
function htmlencode(n,t){return t?t.text(n).html():$("<span><\/span>").text(n).html()}function htmldecode(n,t){return t?t.html(n).text():$("<span><\/span>").html(n).text()}function replaceHtmlText(n){var t;return n?(n.indexOf("&")>-1&&(t=new RegExp("&","g"),n=n.replace(t,"&")),n.indexOf("<")>-1&&(t=new RegExp("<","g"),n=n.replace(t,"<")),n.indexOf(">")>-1&&(t=new RegExp(">","g"),n=n.replace(t,">")),n.indexOf("\r\n")>-1&&(t=new RegExp("\r\n","g"),n=n.replace(t,"<br/>")),n.indexOf("\n")>-1&&(t=new RegExp("\n","g"),n=n.replace(t,"<br/>")),n.indexOf(" ")>-1&&(t=new RegExp(" ","g"),n=n.replace(t," ")),n):""}function getStrength(n){var e,t;if(typeof n!="string"||n.length<8)return 0;var i=0,r=0,u=0,f=0;for(e=0;e<n.length;e++)t=n[e],t>="A"&&t<="Z"?r++:t>="a"&&t<="z"?i++:t>="0"&&t<="9"?u++:f++;return i==n.length||r==n.length||u==n.length||f==n.length?0:i+r==n.length||i+u==n.length||i+f==n.length||r+u==n.length||r+f==n.length||u+f==n.length||r==0||i==0||u==0?1:2}function isEmail(n){return/^\w[-\w.+]*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/.test(n)}function checkPhoneNumber(n){return/^[1-9]\d{9,}$/.test(n)?!0:/^\+?[1-9][\d-]{9,}\d$/.test(n)&&/^[1-9]\d{9,}$/.test(n.replace("+","").replace(new RegExp("-","g"),""))?!0:!1}function convertDateFormat(n){const t=new Date(n),i=t.getMonth()+1,r=t.getDate(),u=t.getFullYear();return`${u}-${i.toString().padStart(2,"0")}-${r.toString().padStart(2,"0")}`}function getInnerOffset(n){return{left:n[0].offsetLeft,top:n[0].offsetTop}}function writelog_ironintel(n,t,i,r){var u=String.fromCharCode(170),e=n+u+t+u+i+u+r,o={MethodID:3,ClientData:e},f=new XMLHttpRequest;f.open("POST",_network.root+"commonsvc.ashx",!0);f.send(JSON.stringify(o))}function writeexlog(n,t){var i,r="";t&&(i=t.message,r=t.stack);writelog_ironintel("Error",n,i,r)}function setTableSort(n,t){var i=$("#"+n);i.find("th").each(function(){var n=$(this),r=n.attr("sort"),u,f;r&&(u=$("<span class='sorticon sorticonasc'><\/span>"),n.append(u),f=$("<span class='sorticon sorticondesc'><\/span>"),n.append(f),n.click(function(){n.data("sort")=="asc"?(n.data("sort","desc"),i.find(".sorticon").hide(),f.show(),i.data("sortPath",r).data("desc",!0),t&&t(r,!0)):(n.data("sort","asc"),i.find(".sorticon").hide(),u.show(),i.data("sortPath",r).data("desc",!1),t&&t(r,!1))}))})}function sortTableData(n,t){var i=n.data("sortPath"),r=n.data("desc");i&&t.sort(dataSort(i,r))}function sortTableSubData(n,t){var i=n.data("sortPath"),r=n.data("desc");i&&t.sort(subDataSort(i,r))}function dataSort(n,t){return function(i,r){var u=i[n],f=r[n];return u==f?0:u==null?t?1:-1:f==null?t?-1:1:(typeof u=="string"&&(u=u.toLowerCase(),f=f.toLowerCase()),u<f?t?1:-1:t?-1:1)}}function subDataSort(n,t){return function(i,r){for(var e=n.split("."),u=i[e[0]],f=r[e[0]],o=1;o<e.length;o++)u=u[e[o]],f=f[e[o]];return u==f?0:u==null?t?1:-1:f==null?t?-1:1:(typeof u=="string"&&(u=u.toLowerCase(),f=f.toLowerCase()),u<f?t?1:-1:t?-1:1)}}function resetSort(n){n?n.find(".sorticon").hide():$(".sorticon").hide()}function execIframeFunc(n,t,i){if(document.getElementById(i)){var r=document.getElementById(i).contentWindow[n];return r?t==null?r():r.apply(this,t):null}}function formatNumber(n){var t,i,r;return isNaN(n)?n:(t=0,i=n.toString().split("."),i.length===2&&(t=i[1].length),r=n.toFixed(t)+(t>0?"":".00"),r.replace(/(\d)(?=(\d{3})+\.)/g,"$1,"))}function isMobile(){for(var t=["Android","iPhone","SymbianOS","Windows Phone","iPad","iPod"],i=navigator.userAgent,n=0;n<t.length;n++)if(i.indexOf(t[n])>0)return!0;return!1}function getAddressLabel(n){var i,t;return(n.Address||"").length>0?(t=[],t.push(n.Address),n.City==n.Region?t.push(n.City):t.push(n.City,n.Region),(n.Postal||"").length>0&&t.push(n.Postal),i=t.join(", ")):i=n.Match_addr,i}function Guid(){"use strict";this.date=new Date;typeof this.create!="function"&&(Guid.prototype.create=function(){var t;this.date=new Date;var n="",i=this.hexadecimal(this.getGUIDDate(),16),r=this.hexadecimal(this.getGUIDTime(),16);for(t=0;t<9;t++)n+=Math.floor(Math.random()*16).toString(16);for(n+=i,n+=r;n.length<32;)n+=Math.floor(Math.random()*16).toString(16);return this.formatGUID(n)},Guid.prototype.getGUIDDate=function(){return this.date.getFullYear()+this.addZero(this.date.getMonth()+1)+this.addZero(this.date.getDay())},Guid.prototype.getGUIDTime=function(){return this.addZero(this.date.getHours())+this.addZero(this.date.getMinutes())+this.addZero(this.date.getSeconds())+this.addZero(parseInt(this.date.getMilliseconds()/10))},Guid.prototype.addZero=function(n){return!isNaN(Number(n))&&n>=0&&n<10?"0"+Math.floor(n):n.toString()},Guid.prototype.hexadecimal=function(n,t,i){return i!=undefined?parseInt(n.toString(),i).toString(t):parseInt(n.toString()).toString(t)},Guid.prototype.formatGUID=function(n){var t=n.slice(0,8)+"-",i=n.slice(8,12)+"-",r=n.slice(12,16)+"-",u=n.slice(16,20)+"-",f=n.slice(20);return t+i+r+u+f})}function converthtmlurl(n){return n==null?"":n.replace(/</g,"<").replace(/>/g,">").replace(/ /g," ").replace(/(https?|ftp):\/\/[\w-_]+(\.[\w-_]+)+\/?[^\s\r\n"'$]*/g,'<a href="$&" target="_blank">$&<\/a>').replace(/\r\n/g,"<br/>").replace(/\n/g,"<br/>")}function formatUrl(n){var r,i,u,t;if(r=n.match(/(http|ftp|https):\/\/.+?(\<|\s|\r\n|\r|\n|\"|\'|$)/g),n=htmlencode(n),i=[],r&&r.length>0){for(t=0;t<r.length;t++)u=r[t].replace('"',"").replace("'","").replace("\r\n","").replace("\r","").replace("\n","").replace(" ","").replace("<",""),i.indexOf(u)<0&&i.push(htmlencode(u));for(t=0;t<i.length;t++)n=n.replace(new RegExp(i[t],"g"),"<a style='font-family: \"FontAwesome\"' target='_blank' href='"+i[t]+"'><\/a>")}return n.indexOf("\r\n")>-1&&(reg=new RegExp("\r\n","g"),n=n.replace(reg,"<br/>")),n.indexOf("\n")>-1&&(reg=new RegExp("\n","g"),n=n.replace(reg,"<br/>")),n.indexOf(" ")>-1&&(reg=new RegExp(" ","g"),n=n.replace(reg," ")),n}function setPageTitle(n,t){var i=window;if(t)while(i.parent&&i!=i.parent)i=i.parent;i.document.title=n}function setAttachemntIcon(n,t){[".doc",".docx"].indexOf(n)>=0?t.attr("src","../img/icon/word.jpg"):[".xls",".xlsx"].indexOf(n)>=0?t.attr("src","../img/icon/excel.jpg"):[".ppt",".pptx"].indexOf(n)>=0?t.attr("src","../img/icon/ppt.jpg"):[".pdf",".xps"].indexOf(n)>=0?t.attr("src","../img/icon/pdf.jpg"):[".mp4",".mov",".avi",".mkv",".3gp",".ts",".m2ts"].indexOf(n)>=0?t.attr("src","../img/icon/vedio.jpg"):[".zip",".rar",".7z"].indexOf(n)>=0?t.attr("src","../img/icon/zip.jpg"):[".msg"].indexOf(n)>=0?t.attr("src","../img/icon/msg.jpg"):[".xml"].indexOf(n)>=0?t.attr("src","../img/icon/xml.jpg"):t.attr("src","../img/icon/txt.jpg")}function getCurrentDate(){var n="";return _network.commonpagequery(14,"",function(t){n=t},function(){},!0,!0),n}function hidePanels(){$(".panel_holder").each(function(){var n=$(this);n.is(":visible")&&n.stop().css("opacity",0).hide()});$(".button button").removeClass("selected")}function showmaskbg(n,t){if(window.parent&&typeof window.parent.onmaskbg=="function")window.parent.onmaskbg(n,t);$("#mask_bg").children().hide();t?$("#mask_bg").css("display",n?"":"none"):n?$("#mask_bg").fadeIn(100):$("#mask_bg").fadeOut(100)}function showloading(n,t){if(window.parent&&typeof window.parent.onmaskbg=="function")window.parent.onmaskbg(n,t);$("#mask_bg").children().show();t?$("#mask_bg").css("display",n?"":"none"):n?$("#mask_bg").fadeIn(100):$("#mask_bg").fadeOut(100)}function showConfirm(n,t,i,r){window.parent&&typeof window.parent.showconfirm=="function"?window.parent.showconfirm(n,t,i,r):(showmaskbg(!0),_dialog.showConfirm(n,t,function(n){showmaskbg(!1);typeof i=="function"&&i(n)},function(){r&&r();showmaskbg(!1)}))}function showConfirmYesNoCancel(n,t,i,r,u){showmaskbg(!0);_dialog.showConfirmYesNoCancel(n,t,function(n){showmaskbg(!1);typeof i=="function"&&i(n)},function(){r&&r();showmaskbg(!1)},function(){u&&u();showmaskbg(!1)})}function showConfirmOKCancel(n,t,i,r,u){showmaskbg(!0);_dialog.showConfirmOKCancel(n,t,function(n){showmaskbg(!1);typeof i=="function"&&i(n)},function(){r&&r();showmaskbg(!1)},function(){u&&u();showmaskbg(!1)})}function showAlert(n,t,i,r){window.parent&&typeof window.parent.showalert=="function"?window.parent.showalert(n,t,i,r):(n&&n.hasOwnProperty("LGID")?(n.LGID.startWith("LHBIS_")||n.LGID.startWith("FI_HOST_")||(n.LGID="LHBIS_FIC_CLIENT_MODULES_"+n.LGID),n=GetLanguageByKey(n.LGID,n.Default)):t===!0&&(n=n.escapeHtml().replace(/\n/g,"<br/>"),t=undefined),_dialog.showAlert(n,t,i,r))}function createGridView(n,t){var i=new GridView(n);return i.langs=getGridLanguages(t),i}function createGridView1(n,t){var i=new GridView1(n);return i.langs=getGridLanguages(t),i}function getGridLanguages(n){return n?{all:GetTextByKey("P_GRID_ALL","(All)"),ok:GetTextByKey("P_GRID_OK","OK"),reset:GetTextByKey("P_GRID_RESET","Reset"),"null":GetTextByKey("P_GRID_NULL","(Null)"),sort:GetTextByKey("P_GRID_SORT","Sort"),addLevel:GetTextByKey("P_GRID_ADDLEVEL","Add Level"),deleteLevel:GetTextByKey("P_GRID_DELETELEVEL","Delete Level"),copyLevel:GetTextByKey("P_GRID_COPYLEVEL","Copy Level"),column:GetTextByKey("P_GRID_COLUMN","Column"),order:GetTextByKey("P_GRID_ORDER","Order"),asc:GetTextByKey("P_GRID_ASC","Ascending"),desc:GetTextByKey("P_GRID_DESC","Descending"),cancel:GetTextByKey("P_GRID_CANCEL","Cancel"),duplicatePrompt:GetTextByKey("P_GRID_DUPLICATEPROMPT","{column} is being sorted more than once. Delete the duplicate sort criteria and try again."),requirePrompt:GetTextByKey("P_GRID_REQUIREPROMPT","All sort criteria must have a column specified. Check the selected sort criteria and try again.")}:{all:GetTextByKey("P_GRID_ALL","(All)"),ok:GetTextByKey("P_GRID_OK","OK"),reset:GetTextByKey("P_GRID_RESET","Reset"),"null":GetTextByKey("P_GRID_NULL","(Null)")}}function getdaytext(n){var t=n;switch(n){case"Sunday":t=GetTextByKey("P_CM_SUNDAY","Sunday");break;case"Monday":t=GetTextByKey("P_CM_MONDAY","Monday");break;case"Tuesday":t=GetTextByKey("P_CM_TUESDAY","Tuesday");break;case"Wednesday":t=GetTextByKey("P_CM_WEDNESDAY","Wednesday");break;case"Thursday":t=GetTextByKey("P_CM_THURSDAY","Thursday");break;case"Friday":t=GetTextByKey("P_CM_FRIDAY","Friday");break;case"Saturday":t=GetTextByKey("P_CM_SATURDAY","Saturday")}return t}function GetTextByKey(n,t){langObj==undefined&&loadLanguage();try{if(langObj&&langObj.Values){n=n.toUpperCase();var i=langObj.Values[n];if(i)return i}}catch(r){}return t}function loadLanguage(){var n=_fleet.currentLang,t,i,r;n||(n="en-us");t=getFileVersion();i=window.localStorage[n+"_v"];!i||i==""||eval(i)<t?(langObj=loadLanguageRes(t),window.localStorage[n+"_v"]=t,window.localStorage[n+"_res"]=JSON.stringify(langObj)):(r=window.localStorage[n+"_res"],r&&r!=""&&(langObj=JSON.parse(r)),langObj||(langObj=loadLanguageRes(t),window.localStorage[n+"_res"]=JSON.stringify(langObj)))}function getFileVersion(){var n=0;return _network.commonpagequery(6,"",function(t){n=t},function(){},!0,!0),n}function loadLanguageRes(n){var i,t;if(langObj==undefined){i=typeof _network.root=="string"?_network.root:typeof sitePath=="string"?sitePath:"";t=_fleet.currentLang;t||(t="en-us");try{return loadJsonFromServer(i+"Languages\\"+t+".json?s="+n)}catch{return loadJsonFromServer(i+"Languages\\en-us.json?s="+n)}}}function loadJsonFromServer(n){var t=null;return $.ajax({url:n,dataType:"json",type:"GET","async":!1,success:function(n){t=n}}),t}function setCookie(n,t,i){var r,u;i===undefined?document.cookie=n+"="+t+"; path=/; document="+document.domain:(r=new Date,r.setTime(r.getTime()+i*864e5),u="expires="+r.toUTCString(),document.cookie=n+"="+t+"; "+u+"; path=/; document="+document.domain)}function setCookieSeconds(n,t,i){var r,u;i===undefined?document.cookie=n+"="+t+"; path=/; document="+document.domain:(r=new Date,r.setTime(r.getTime()+i*1e3),u="expires="+r.toUTCString(),document.cookie=n+"="+t+"; "+u+"; path=/; document="+document.domain)}function getCookie(n){var t,i=new RegExp("(^| )"+n+"=([^;]*)(;|$)");return(t=document.cookie.match(i))?unescape(decodeURI(t[2])):null}function SetClientTimeoffset(){var n=new Date,t=n.getTimezoneOffset();setCookie("clienttimeoffset",t,360)}function refreshFavorites(){getFavoriteItems(onInitFavorites)}function setFavoriteDisplay(n,t,i,r){n?$("#button_fav").show():$("#button_fav").hide();t&&(navigate=setAppMoudule(t,i,r));getFavoriteItems()}function getFavoriteItems(n){_network.mainpagequery("GetFavoriteItems","",function(t){typeof t=="string"?_dialog.showAlert(t,GetTextByKey("P_FAV_GETFAVORITES","Get Favorites")):(userfavorates=t,navigate&&setFavorateStyle(),n&&n(),showFavoritesGridList(userfavorates),typeof showChartFavorite=="function"&&showChartFavorite(isUserFavorate(chartiid)))})}function setFavorateStyle(n,t){var i,u,r;if(n&&(i=n.substring(1),i==="nav_manageharshdriving"&&(i="600"),navigate=setNavigate(i,t)),$("#divfavadd").hide(),$("#divfav").hide(),u=!1,userfavorates&&navigate){for(r=0;r<userfavorates.length;r++)if(userfavorates[r].ID===navigate.ID){$("#divfav").show();u=!0;break}u||$("#divfavadd").show()}}function isUserFavorate(n){if(userfavorates&&navigate)for(var t=0;t<userfavorates.length;t++)if(userfavorates[t].ID===n)return!0;return!1}function setFavorate(n){navigate&&(navigate.ID==="nav_manageharshdriving"&&(navigate=setNavigate("600","OTR Config")),n?(n=!0,$("#divfavadd").show(),$("#divfav").hide()):($("#divfavadd").hide(),$("#divfav").show()),setFavoritesData(n,navigate))}function setFavoritesData(n,t){if(n){if(userfavorates)for(var i=0;i<userfavorates.length;i++)if(userfavorates[i].ID===t.ID){userfavorates.splice(i,1);break}}else userfavorates.push(t);saveFavorites(userfavorates)}function saveFavorites(n,t){_network.mainpagequery("SetFavorites",JSON.stringify(n),function(n){n!=="OK"?_dialog.showAlert(n,GetTextByKey("P_FAV_SETFAVORITES","Set Favorites")):(t&&($("#dialog_favorite").hideDialog(),showmaskbg(!1)),refreshFavorites())})}function onInitFavorites(){var l=["100","250","500","550","650","700","600"],r=$("#favorite_panel"),h,i,u,t,f,n,e,o,c,s;if(r.empty(),userfavorates&&userfavorates.length>0){for(h=$('<div class="panel_favorites"><\/div>').css("max-height",$(window).height()-180).appendTo(r),i=$('<ul class="lefttitlemenu_ul" style="line-height:32px;"><\/ul>'),h.append(i),u=0;u<userfavorates.length;u++)if(t=userfavorates[u],t){if(t.FavoriteType==10){createChartFavorite(t,i);continue}for(f=0;f<appmoudulesdata.length;f++)if(n=appmoudulesdata[f],n.ModuleType==0){if(l.indexOf(t.ID)>=0){if(t.ID.toLowerCase()===n.ID.toLowerCase()){createMenuItem(n,i);break}}else if(n.SubItems)for(e=0;e<n.SubItems.length;e++)if(o=n.SubItems[e],o.ID.toLowerCase()===t.ID.toLowerCase()){createMenuItem(n,i,o);break}}else if(n.ModuleType==1&&(c="wsp"+n.ID,t.ID.toLowerCase()===c.toLowerCase())){createMenuItem(n,i);break}}s=$('<div class="viewall" style="height: 32px;text-align: center; margin-top: 10px;"><span class="sbutton iconedit">'+GetTextByKey("P_FAV_EDITFAVORITES","Edit Favorites")+"<\/span<\/div>");r.append(s);s.click(function(){openFavoriteDialog()});r.append('<div class="trigle"><\/div>');r.append('<div class="trigle white"><\/div>')}}function getFavoriteNavInfoByID(n,t,i){var r=t;return $(i).addClass("lefttitlemenu_icon"),n==="nav_credential"?(r=GetTextByKey("P_CREDENTIALS",r),$(i).addClass("iconcredentail")):n==="nav_jdlink"?(r=GetTextByKey("P_JDLINK",r),$(i).addClass("iconjdlink")):n==="nav_jdnotification"?(r=GetTextByKey("P_JOHNDEERENOTIFICATIONS",r),$(i).addClass("iconjdnotification")):n==="nav_apicredential"?(r=GetTextByKey("P_APICREDENTIALS",r),$(i).addClass("iconcredentail")):n==="nav_users"?(r=GetTextByKey("P_USERS",r),$(i).addClass("iconusers")):n==="nav_user_group"?(r=GetTextByKey("P_USERSGROUP",r),$(i).addClass("iconusergroup")):n==="nav_dts"?(r=GetTextByKey("P_DATATABLEPERMISSION",r),$(i).addClass("icondatatablepermission")):n==="nav_filters"?(r=GetTextByKey("P_DASHBOARDFILTERS",r),$(i).addClass("icondashboardfilters")):n==="nav_curfew"?(r=GetTextByKey("P_CURFEWCONFIGURATION",r),$(i).addClass("iconcurfew")):n==="nav_curfewmt"?(r=GetTextByKey("P_CURFEWMOVEMENTTOLERANCE",r),$(i).addClass("iconcurfewmt")):n==="nav_usertocontractor"?(r=GetTextByKey("P_USERTOCONTRACTOR",r),$(i).addClass("iconusertocontractor")):n==="nav_alertsmanagement"?(r=GetTextByKey("P_ALERTSMANAGEMENTNEW",r),$(i).addClass("iconmanagealerts")):n==="nav_workorder"?(r=GetTextByKey("P_WORKORDERNEW",r),$(i).addClass("iconworkorder")):n==="nav_workorderhis"?(r=GetTextByKey("P_WORKORDERHISTORY",r),$(i).addClass("iconhistory")):n==="nav_maintenanceschedule"?(r=GetTextByKey("P_PM_MAINTENANCESCHEDULES",r),$(i).addClass("iconmaintenanceschedule")):n==="nav_customerrecord"?r=GetTextByKey("P_CUSTOMERRECORD",r):n==="nav_customersatisfactionsurveys"?(r=GetTextByKey("P_CUSTOMERSATISFACTIONSURVEYS",r),$(i).addClass("icontemplate")):n==="nav_surveymanagementresult"?r=GetTextByKey("P_WOS_SURVEYMANAGEMENTRESULT",r):n==="nav_wosurveytemplate"?r=GetTextByKey("P_WOS_TEMPLATES",r):n==="nav_wosurveytemplatereport"?r=GetTextByKey("P_WOS_TEMPLATES_REPORT",r):n==="nav_record"?(r=GetTextByKey("P_MAINTENANCERECORDLEGACY",r),$(i).addClass("iconrecord")):n==="nav_fuelrecord"?(r=GetTextByKey("P_FUELRECORDS",r),$(i).addClass("iconfuelrecord")):n==="nav_manageharshdriving"?(r=GetTextByKey("P_MANAGEHARSHDRIVING",r),$(i).addClass("iconotrconfig")):n==="nav_managmachines"?(r=GetTextByKey("P_MANAGEASSETS",r),$(i).addClass("iconmanageasset")):n==="nav_managrentals"?(r=GetTextByKey("P_MANAGERENTALS",r),$(i).addClass("iconmanagerentals")):n==="nav_machinegroups"?(r=GetTextByKey("P_ASSETGROUPS",r),$(i).addClass("iconassetgroups")):n==="nav_managegpsdevices"?(r=GetTextByKey("P_MANAGEDEVICES",r),$(i).addClass("iconmanagegpsdevices")):n==="nav_managmodels"?(r=GetTextByKey("P_MANAGEMODELS",r),$(i).addClass("iconmanagmodels")):n==="nav_managmodels"?(r=GetTextByKey("P_MANAGEMODELS",r),$(i).addClass("iconmanagmodels")):n==="nav_managmodels"?(r=GetTextByKey("P_MANAGEMODELS",r),$(i).addClass("iconmanagmodels")):n==="nav_assethistory"?(r=GetTextByKey("P_MA_ASSETHISTORY",r),$(i).addClass("iconhistory")):n==="nav_shareasset"?(r=GetTextByKey("P_SHAREASSETS",r),$(i).addClass("iconshare")):n==="nav_jobsiterequirements"?r=GetTextByKey("P_JS_JOBSITEREQUIREMENTS",r):n==="nav_dispatchrequests"?r=GetTextByKey("P_JS_DISPATCHREQUESTS",r):n==="nav_jobsitemanage"?r=GetTextByKey("P_JOBSITES",r):n==="nav_scheduler"?r=GetTextByKey("P_JS_SCHEDULER",r):n==="100"?r=GetTextByKey("P_MAPVIEW",r):n==="250"?r=GetTextByKey("P_MODULE_FILTERQ",r):n==="500"?r="M3":n==="550"?r=GetTextByKey("P_MODULE_OVERUNDERTRUCKINGALERTS",r):n==="650"?r=GetTextByKey("P_MODULE_INSPECTION",r):n==="700"?r=GetTextByKey("P_MODULE_TEAMINTELLIGENCE",r):n==="600"&&(r=GetTextByKey("P_MODULE_OTRCONFIG",r)),r}function createMenuItem(n,t,i){var f=n.ModuleType===1?n.Name:n.CurrentName,o=f,r=JSON.parse(JSON.stringify(n)),u,s,e;r.ID=="150"&&r.Url.indexOf("#")<0&&(r.Url+="#nav_jobsitemanage");u=$('<button class="lefttitlemenu_icon titleicon" style="line-height:normal;"><\/button>');i?(f=i.Title,o=getFavoriteNavInfoByID(i.ID,f,u),r.Url=i.Url,r.ID!=="350"||i.IconPath||(i.IconPath="img/none.png"),r.IconPath=r.Url.split("/")[0]+"/"+i.IconPath,[100,120,130,140,210,235].indexOf(i.FeatureID)>=0&&(u=createMouduleIcon(r,1))):(u=createMouduleIcon(r,1),o=getFavoriteNavInfoByID(r.ID,f,u));s=$("<li><\/li>").click(function(){onOpenSite(r)});e=$('<a style="padding-left:0;"><\/a>');s.append(e);e.append($("<div><\/div>").append(u));e.append($("<span><\/span>").text(o));t.append(s)}function createFullMenuSite(n,t){var f=n.ModuleType===1?n.Name:n.CurrentName,r=JSON.parse(JSON.stringify(n)),e=createMouduleIcon(r,1),u=$("<li><\/li>").click(function(){onOpenSite(r)}),i=$('<a style="padding-left:0;"><\/a>');u.append(i);i.append($("<div><\/div>").append(e));i.append($("<span><\/span>").text(f));t.append(u)}function createChartFavorite(n,t){var r=$("<li><\/li>").click(function(){openFleetChart(n.ID,n.Name)}),i=$('<a style="padding-left:0;"><\/a>');r.append(i);icon=$('<img class="lefttitlemenu_icon"/>').attr("src",_network.root+"img/modules/chart.png");i.append($("<div><\/div>").append(icon));i.append($("<span><\/span>").text(n.Name));t.append(r)}function onOpenSite(n){if(n){var t=n.Url.toLowerCase();t.length>4&&t.substring(0,4)=="http"||t.length>0&&t[0]=="/"||(t=_network.root+t);n.OpenInNewWindow?window.open(t,"_blank"):window.location=t}}function setAppMoudule(n,t,i){return t||(n===100?t=GetTextByKey("P_MAPVIEW","Map View"):n===150?t=GetTextByKey("P_MODULE_JOBSITES","Jobsites"):n===250?t=GetTextByKey("P_MODULE_FILTERQ","FilterQ"):n===500?t="M3":n===550?t=GetTextByKey("P_MODULE_OVERUNDERTRUCKINGALERTS","Over/Under Trucking Alerts"):n===650?t=GetTextByKey("P_MODULE_INSPECTION","Inspection"):n===700&&(t=GetTextByKey("P_MODULE_TEAMINTELLIGENCE","Team Intelligence"))),setNavigate(n+"",t,i)}function setNavigate(n,t,i){var r={ID:n,Name:t};return i!=undefined&&(r.FavoriteType=i),r}function showFavConfirm(n,t,i){$("#favorites_mask_bg").show();_dialog.showConfirm(n,t,function(n){typeof i=="function"&&($("#favorites_mask_bg").hide(),i(n))},function(){$("#favorites_mask_bg").hide()})}function InitFavoriteGrid(){var r=GridView,t,u,i,n;typeof GridView1!="undefined"&&(r=GridView1);grid_favoritedt=new r("#favoritelist");grid_favoritedt.langs={all:GetTextByKey("P_GRID_ALL","(All)"),ok:GetTextByKey("P_GRID_OK","OK"),reset:GetTextByKey("P_GRID_RESET","Reset")};t=[{name:"Name",caption:GetTextByKey("P_FAV_FAVORITE","Favorite"),valueIndex:"Name",css:{width:400,"text-align":"left"}},{name:"Delete",caption:"",css:{width:32,"text-align":"center"}},{name:"Up",caption:"",css:{width:32,"text-align":"center"}},{name:"Down",caption:"",css:{width:32,"text-align":"center"}}];u=[];for(i in t)n={},n.name=t[i].name,n.caption=t[i].caption,n.visible=!0,n.sortable=!0,n.width=t[i].css.width,n.align=t[i].css["text-align"],n.key=t[i].valueIndex,t[i].type&&(n.type=t[i].type),n.name==="Delete"?(n.sortable=!1,n.resizable=!1,n.type=r.ColumnTypes.Icon,n.text="times",n.iconType="fa-light",n.events={onclick:function(){OnDeleteFavorite(this)}},n.attrs={title:GetTextByKey("P_FAV_DELETE","Delete")}):n.name==="Up"?(n.sortable=!1,n.resizable=!1,n.type=r.ColumnTypes.Icon,n.text="arrow-up",n.iconType="fa-light",n.events={onclick:function(){onSortFavorite(!0,this)}},n.attrs={title:GetTextByKey("P_FAV_UP","Delete")}):n.name==="Down"&&(n.sortable=!1,n.resizable=!1,n.type=r.ColumnTypes.Icon,n.text="arrow-down",n.iconType="fa-light",n.events={onclick:function(){onSortFavorite(!1,this)}},n.attrs={title:GetTextByKey("P_FAV_DOWN","Delete")}),u.push(n);grid_favoritedt.canMultiSelect=!1;grid_favoritedt.columns=u;grid_favoritedt.init()}function showFavoritesGridList(n){var r,i,t;if(favgridinited||(favgridinited=!0,InitFavoriteGrid()),grid_favoritedt.setData([]),n&&n.length!==0){for(r=[],i=0;i<n.length;i++)t=n[i],t.Name=getFavoriteNavInfoByID(t.ID,t.Name),r.push(t);grid_favoritedt.setData(r)}}function openFavoriteDialog(){showmaskbg(!0);$("#dialog_favorite .dialog-title span.title").text(GetTextByKey("P_FAV_EDITFAVORITES","Edit Favorites"));$("#dialog_favorite").attr("act","edit").css({width:540,top:(document.documentElement.clientHeight-$("#dialog_favorite").height())/4,left:(document.documentElement.clientWidth-$("#dialog_favorite").width())/2}).showDialogfixed(!1);$("#btnfavsave").focus();userfavorates&&showFavoritesGridList(userfavorates)}function OnDeleteFavorite(n){n&&showFavConfirm(GetTextByKey("P_FAV_DELETEFAVORITECONTINUE","Favorite {0} will be deleted.Do you want to continue?").replace("{0}",n.Name),GetTextByKey("P_FAV_DELETEFAVORITE","Delete Favorite"),function(){setFavoritesData(!0,n)})}function onSortFavorite(n,t){var i,r,f,u,e;if(t&&userfavorates){for(r=[],f=grid_favoritedt.source,u=0;u<f.length;u++)e=f[u],t.ID===e.ID?i=u:r.push(e);i=n?i==0?r.length:i-1:i==r.length?0:i+1;r.splice(i,0,t);showFavoritesGridList(r)}}function onSaveFavoriteSort(){var t,i,n;if(grid_favoritedt){for(t=[],i=grid_favoritedt.source,n=0;n<i.length;n++)t.push(i[n]);saveFavorites(t,!0)}}function onInitTitleSites(){var s,h,i,u,f,n,t,r;if(appmoudulesdata){var e=$("#divfavmenu"),o=$("#lisyssetting").on("click",function(){window.location.href=$(this).data("url")}),c=$("#liVersion");for(e.parent().find(".dynamicmenu").remove(),o.parent().find(".dynamicmenu").remove(),s=["150","650","200","400","dashboards","100"],h=["350","150","350","300","600","650","700"],i=0;i<s.length;i++)if(u=s[i],u==="dashboards")isReadonlyUser||createDashboardTitle(e);else for(f=0;f<appmoudulesdata.length;f++)if((n=appmoudulesdata[f],n.Visible)&&u==parseInt(n.ID)){if(u=="150"){for(t=0;t<n.SubItems.length;t++)if(r=n.SubItems[t],r.ID=="nav_jobsiterequirements"||r.ID=="nav_dispatchrequests"||r.ID=="nav_scheduler"){n=$.extend(!0,{},n);n.CurrentName=GetTextByKey("P_JS_ASSETSCHEDULINGANDDISPATCHING","Asset Scheduling and Dispatching");n.IconPath=n.Url.split("/")[0]+"/img/dispatch.png";createTitleSite(n,e);break}}else createTitleSite(n,e);break}for(i=0;i<h.length;i++)for(u=parseInt(h[i]),f=0;f<appmoudulesdata.length;f++)if((n=appmoudulesdata[f],n.Visible)&&u==parseInt(n.ID)){if(u==350&&i==0&&n.SubItems){for(t=0;t<n.SubItems.length;t++)if(r=n.SubItems[t],r.ID==="nav_users"){createSettingSite(n,o,r);break}}else if(u==350&&i==2&&n.SubItems){for(t=0;t<n.SubItems.length;t++)if(r=n.SubItems[t],r.ID==="nav_curfew"){createSettingSite(n,c,r);break}}else u==150?(n=$.extend(!0,{},n),n.Url+="#nav_jobsitemanage",createSettingSite(n,o)):createSettingSite(n,c);break}}}function createTitleSite(n,t){var u=n.CurrentName,f=JSON.parse(JSON.stringify(n)),i=$("<div class='button dynamicmenu'><\/div>").click(function(){onOpenSite(f)}),r;r=$('<div class="titleicon"><\/div>').append($('<img class="titleimgicon"/>').attr("src",_network.root+n.IconPath));i.append(r);i.attr("title",u);t.after(i)}function createSettingSite(n,t,i){var u=n.CurrentName,r,e,f;n.ID==="650"&&(u=GetTextByKey("P_MODULE_INSPECTIONTEMPLATES","Inspection Templates"));r=JSON.parse(JSON.stringify(n));e=$('<button class="lefttitlemenu_icon"><\/button>');i&&(i.ID==="nav_users"?u=GetTextByKey("P_USERSETUP","User Setup"):i.ID==="nav_curfew"&&(u=GetTextByKey("P_CURFEWCONFIGURATION",i.Title)),r.Url=i.Url,r.IconPath=r.Url.split("/")[0]+"/"+i.IconPath);e=createMouduleIcon(r,1);f=$('<li class="dynamicmenu flex"><\/li>').click(function(){onOpenSite(r)});f.append($("<div><\/div>").append(e));f.append($("<span><\/span>").text(u));t.before(f)}function InitDBGridData(){var u=GridView,t,r,i,n;typeof GridView1!="undefined"&&(u=GridView1);grid_dbdt=new u("#dashboardslist");grid_dbdt.langs={all:GetTextByKey("P_GRID_ALL","(All)"),ok:GetTextByKey("P_GRID_OK","OK"),reset:GetTextByKey("P_GRID_RESET","Reset")};t=[{name:"Name",caption:GetTextByKey("P_DASHBOARDS_NAME","Name"),valueIndex:"Name",css:{width:240,"text-align":"left"}},{name:"Type",caption:GetTextByKey("P_DASHBOARDS_CHARTTYPE","Chart Type"),valueIndex:"Type",css:{width:140,"text-align":"left"}},{name:"Notes",caption:GetTextByKey("P_DASHBOARDS_NOTES","Notes"),valueIndex:"NoteTag",css:{width:80,"text-align":"left"}},{name:"IsChart",caption:GetTextByKey("P_DASHBOARDS_TYPE","Type"),valueIndex:"IsChart",css:{width:80,"text-align":"left"}}];r=[];for(i in t)n={},n.name=t[i].name,n.caption=t[i].caption,n.visible=!0,n.sortable=!0,n.width=t[i].css.width,n.align=t[i].css["text-align"],n.key=t[i].valueIndex,n.allowFilter=t[i].allowFilter,t[i].type&&(n.type=t[i].type),n.name=="Notes"&&(n.css={"text-align":"center"},n.styleFilter=function(){return{color:"blue",cursor:"pointer","text-decoration":"underline"}},n.events={onclick:function(){showChartNotes(this.ID,this.Notes)}}),r.push(n);grid_dbdt.canMultiSelect=!1;grid_dbdt.columns=r;grid_dbdt.init();grid_dbdt.onCellDblClicked=openDashboard}function showChartNotes(n,t){$("#prechartnotes").text(t);$("#mask_bgcn").show();$("#dialog_chartnotes .dialog-title span.title").text(GetTextByKey("P_MAIN_CHARTNOTES","Chart Notes"));$("#dialog_chartnotes").attr("act","edit").css({width:400,top:(document.documentElement.clientHeight-$("#dialog_chartnotes").height())/4,left:(document.documentElement.clientWidth-$("#dialog_chartnotes").width())/2}).showDialogfixed()}function requestFIC(n,t,i,r,u){$.ajax({url:_network.root+"fic/fic/FICSvc.ashx?fmt=json&SN="+Math.random(),type:"POST",dataType:"json",cache:!1,data:encodeURIComponent(JSON.stringify({LanguageID:_fleet.currentLang,UtcOffset:(new Date).getTimezoneOffset(),Flag:0,AppName:"",ServiceType:n,MethodName:t,Parameters:i})),"async":!0,success:r,error:u||function(n){console.log(n);showmaskbg(!1,!0);showAlert(GetTextByKey("P_UM_PAGEERROR","An unknown error occurred. Please refresh page."),GetTextByKey("P_UM_QUERY","Query"))}})}function showDashboards(n){for(var t,i,u=[],r=0;r<n.length;r++){t=n[r];t.NoteTag=t.Notes&&t.Notes!=""?"?":"";for(i in t)i==="IsChart"&&(t[i]={DisplayValue:t.IsChart?"Chart":"Dashboard",Value:t[i]});u.push(t)}grid_dbdt.setData(u)}function createDashboardTitle(n){var t=$("<div class='button dynamicmenu'><\/div>").click(function(){openDashboardsDialog()}),i=$('<div class="titleicon"><\/div>').append($('<img class="titleimgicon"/>').attr("src",_network.root+"img/modules/dashboards.png?t=7"));t.append(i);t.attr("title",GetTextByKey("P_MAIN_REPORTSDASHBOARDS","Reports & Dashboards"));n.after(t)}function openDashboardsDialog(){showmaskbg(!0);$("#dialog_dashboards .dialog-title span.title").text(GetTextByKey("P_MAIN_REPORTSDASHBOARDS","Reports & Dashboards"));$("#dialog_dashboards").attr("act","edit").css({width:850,top:(document.documentElement.clientHeight-$("#dialog_dashboards").height())/4,left:(document.documentElement.clientWidth-$("#dialog_dashboards").width())/2}).showDialogfixed(!1);getDashboardList()}function openDashboard(){var t=grid_dbdt.selectedIndex,n,i;if(t<0){_dialog.showAlert(GetTextByKey("P_DASHBOARDS_SELECTWSPORCHART","Please select a Workspace or Chart."),GetTextByKey("P_MAIN_DASHBOARDS","Dashboards"));return}n=grid_dbdt.source[t];n.IsChart.Value?(setRecentOpenedDashboard(n.ID),$("#dialog_dashboards").hideDialog(),showmaskbg(!1),openFleetChart(n.ID,n.Name)):(i={ID:n.ID,ModuleType:1,OpenInNewWindow:!1,Url:"fic/Workspace.aspx?IID="+n.ID},onOpenSite(i))}function getDashboardList(){var n,t;n=$("#ipt_charts_only").prop("checked")?"1":$("#ipt_notes_only").prop("checked")?"2":"0";t=JSON.stringify({$type:"System.String[], mscorlib",$values:[htmlencode($.trim($("#ipt_dashboardfilter").val())),n]});_network.mainpagequery("GetDashboardList",t,function(n){typeof n=="string"?_dialog.showAlert(n,GetTextByKey("P_MAIN_DASHBOARDS","Dashboards")):(dashboarddata=n,showDashboards(n))})}function setRecentOpenedDashboard(n){_network.mainpagequery("SetRecentOpenedDashboard",n,function(n){typeof n=="string"})}function createMouduleIcon(n,t){var i=$("<img/>").attr("src",_network.root+n.IconPath);return t==0?i.addClass("moduleicon"):t==1&&i.addClass("lefttitlemenu_icon"),i}function setAppModulesLang(n,t){for(var i,r=0;r<n.length;r++)(i=n[r],i.ModuleType!==1)&&(setMoudulesLang(i),t&&i.SubItems&&setSubItemsLang(i.SubItems))}function setMoudulesLang(n){n.ID||(n.ID=n.Id);parseInt(n.ID)===100?(n.CurrentName=GetTextByKey("P_MODULE_MAPVIEW",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===150?(n.CurrentName=GetTextByKey("P_MODULE_JOBSITES",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===200?(n.CurrentName=GetTextByKey("P_MODULE_ASSETHEALTH",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===250?(n.CurrentName=GetTextByKey("P_MODULE_FILTERQ",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===300?(n.CurrentName=GetTextByKey("P_MODULE_CREDENTIALS",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===350?(n.CurrentName=GetTextByKey("P_MODULE_SECURITYSETTING",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===400?(n.CurrentName=GetTextByKey("P_MODULE_MANAGEASSETS",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===450?(n.CurrentName=GetTextByKey("P_MODULE_FICMANAGEMENT",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===500?(n.CurrentName=GetTextByKey("P_MODULE_M3",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===550?(n.CurrentName=GetTextByKey("P_MODULE_OVERUNDERTRUCKINGALERTS",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===600?(n.CurrentName=GetTextByKey("P_MODULE_OTRCONFIG",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===650?(n.CurrentName=GetTextByKey("P_MODULE_INSPECTION",n.Name),n.CurrentDesc=n.CurrentName):parseInt(n.ID)===700&&(n.CurrentName=GetTextByKey("P_MODULE_TEAMINTELLIGENCE",n.Name),n.CurrentDesc=n.CurrentName)}function setSubItemsLang(n){for(var t,i=0;i<n.length;i++)t=n[i],t.ID==="nav_credential"?t.CurrentTitle=GetTextByKey("P_CREDENTIALS",t.Title):t.ID==="nav_jdlink"?t.CurrentTitle=GetTextByKey("P_JDLINK",t.Title):t.ID==="nav_jdnotification"?t.CurrentTitle=GetTextByKey("P_JOHNDEERENOTIFICATIONS",t.Title):t.ID==="nav_apicredential"?t.CurrentTitle=GetTextByKey("P_APICREDENTIALS",t.Title):t.ID==="nav_users"?t.CurrentTitle=GetTextByKey("P_USERS",t.Title):t.ID==="nav_user_group"?t.CurrentTitle=GetTextByKey("P_USERSGROUP",t.Title):t.ID==="nav_dts"?t.CurrentTitle=GetTextByKey("P_DATATABLEPERMISSION",t.Title):t.ID==="nav_filters"?t.CurrentTitle=GetTextByKey("P_DASHBOARDFILTERS",t.Title):t.ID==="nav_curfew"?t.CurrentTitle=GetTextByKey("P_CURFEWCONFIGURATION",t.Title):t.ID==="nav_curfewmt"?t.CurrentTitle=GetTextByKey("P_CURFEWMOVEMENTTOLERANCE",t.Title):t.ID==="nav_alertsmanagement"?t.CurrentTitle=GetTextByKey("P_ALERTSMANAGEMENTNEW",t.Title):t.ID==="nav_workorder"?t.CurrentTitle=GetTextByKey("P_WORKORDERNEW",t.Title):t.ID==="nav_workorderhis"?t.CurrentTitle=GetTextByKey("P_WORKORDERHISTORY",t.Title):t.ID==="nav_maintenanceschedule"?t.CurrentTitle=GetTextByKey("P_PM_MAINTENANCESCHEDULES",t.Title):t.ID==="nav_record"?t.CurrentTitle=GetTextByKey("P_MAINTENANCERECORDLEGACY",t.Title):t.ID==="nav_fuelrecord"?t.CurrentTitle=GetTextByKey("P_FUELRECORDS",t.Title):t.ID==="nav_manageharshdriving"?t.CurrentTitle=GetTextByKey("P_MANAGEHARSHDRIVING",t.Title):t.ID==="nav_managmachines"?t.CurrentTitle=GetTextByKey("P_MANAGEASSETS",t.Title):t.ID==="nav_managrentals"?t.CurrentTitle=GetTextByKey("P_MANAGERENTALS",t.Title):t.ID==="nav_machinegroups"?t.CurrentTitle=GetTextByKey("P_ASSETGROUPS",t.Title):t.ID==="nav_managegpsdevices"?t.CurrentTitle=GetTextByKey("P_MANAGEDEVICES",t.Title):t.ID==="nav_managmodels"&&(t.CurrentTitle=GetTextByKey("P_MANAGEMODELS",t.Title))}var libui,langObj,userfavorates,navigate,grid_favoritedt,favgridinited,dashboarddata,grid_dbdt;if(typeof _fleet!="object"&&(_fleet={},_fleet.currentLang="en-us",Object.defineProperty(_fleet,"currentMapLang",{get:function(){var n=(_fleet.currentLang||"").toLowerCase();switch(n){case"zh-cn":return"zh-CN";case"zh-hk":return"zh-HK";case"zh-tw":return"zh-TW";case"pt-br":return"pt-BR";case"pt":return"pt-PT";default:return n.split("-")[0]}}})),typeof _network!="object"&&(_network={root:""},function(){"use strict";function n(){return typeof sitePath!="string"?"fic/SelectAutoFilterHandler.ashx?SN="+Math.random():sitePath+"fic/SelectAutoFilterHandler.ashx?SN="+Math.random()}_network.request=function(n,t,i,r,u,f,e,o){$.ajax({url:_network.root+n,type:"POST",dataType:"json",cache:!1,data:{MethodID:t,MethodName:i,ClientData:r},"async":!o,success:u,error:function(u,o,s){f&&f(u,o,s);e||(u&&u.readyState==0?console.log(u):writelog_ironintel("_network.request",n+"."+t+"."+i+"."+JSON.stringify(r),JSON.stringify(u),o+s))}}).done(function(){})};_network.commonpagequery=function(n,t,i,r,u,f){$.ajax({url:_network.root+"commonsvc.ashx",type:"POST",dataType:"json",cache:!1,data:JSON.stringify({MethodID:n,ClientData:t}),"async":!f,success:i,error:function(i,f,e){r&&r(i,f,e);u||(i&&i.readyState==0?console.log(i):writelog_ironintel("_network.commonpagequery","commonsvc.ashx."+n+"."+JSON.stringify(t),JSON.stringify(i),f+e))}})};_network.mainpagequery=function(n,t,i,r,u){_network.request("IronIntelMain.aspx?tp=ashx",-1,n,t,i,r,u)};_network.apiget=function(n,t,i,r,u,f){$.ajax({url:n,headers:{CustId:t},type:"GET",dataType:"text",cache:!1,data:i,"async":!0,xhrFields:{withCredentials:!0},success:r,error:function(t,r,e){u&&u(t,r,e);f||(t&&t.readyState==0?console.log(t):writelog_ironintel("_network.apiget",n+"."+JSON.stringify(i),JSON.stringify(t),r+e))}})};_network.apipost=function(n,t,i,r,u,f){$.ajax({url:n,headers:{CustId:t},type:"POST",dataType:"text",contentType:"text/plain",cache:!1,data:typeof i=="string"?i:JSON.stringify(i),"async":!0,xhrFields:{withCredentials:!0},success:r,error:function(t,r,e){u&&u(t,r,e);f||(t&&t.readyState==0?console.log(t):writelog_ironintel("_network.apiget",n+"."+JSON.stringify(i),JSON.stringify(t),r+e))}})};_network.pivotRequest=function(t,i,r,u,f,e){$.ajax({url:n(),type:"POST",dataType:"json",cache:!1,data:encodeURIComponent(JSON.stringify({LoginIID:loginedUser("userIId"),SessionID:"",LanguageID:_utility.currentLang,UtcOffset:(new Date).getTimezoneOffset(),Flag:0,AppName:"",MethodName:t,Parameters:i,RequestTime:_utility.getTicksFromDate(new Date)})),"async":!e,success:r,error:function(n,t,i){u&&u(n,t,i);f||writelog("_network.pivotRequest",t,i+"")}})}}()),typeof $websocket!="function"&&($websocket=function(n){function e(){}function o(){f!=100&&setTimeout(function(){r.connect()},1e4)}function s(n){if(r.onreceive){var t=JSON.parse(n.data);r.onreceive(t)}}function h(){}var u=n,t,f=0,r=this,i;this.onreceive=null;i=null;this.connect=function(){u&&u.startsWith("ws")&&(t&&(t.onopen=null,t.onclose=null,t.onmessage=null,t.onerror=null,i&&(clearInterval(i),i=null)),t=new WebSocket(u),t.onopen=e,t.onclose=o,t.onmessage=s,t.onerror=h,i=setInterval(function(){r.send(0)},12e4),f=0)};this.disconnect=function(){t&&(t.close(1e3,"close"),f=100)};this.send=function(n){t.send(n)}}),function(){"use strict";function e(n){function e(n){var n=n||window.event,t,u;t=Math.max(Math.min(n.clientX-i,s-c-2),0);u=Math.max(Math.min(n.clientY-r,h-l-2),0);window.draggingDialog.css({left:t,top:u})}function o(n){$(document).unbind("mousemove",e);$(document).unbind("mouseup",o);delete window.draggingDialog;u.releaseCapture&&u.releaseCapture();n.cancelBubble=!0}var t,f,u;if(!n.target||n.target.nodeName!=="EM"){t=n.data;window.draggingDialog=t;f=getInnerOffset(t);i=n.clientX-f.left;r=n.clientY-f.top;$(document).mousemove(e);$(document).mouseup(o);u=this;u.setCapture&&u.setCapture();var s=$(window).width(),h=$(window).height(),c=t.width(),l=t.height();return}}function u(n){var i=$(".dropdown-wrapper .dropdown-panel.active"),t;i.removeClass("active");n&&$(".dropdown-panel-sep.active").removeClass("active");t=i.parent().data("dropdown");t&&t.multiselect&&t.oncollapsed&&t.oncollapsed()}function t(n){var o=this.textKey,t,u=n.children("input"),f,e,i,r;if(u.attr("isall")=="1")n.parent().find("input:enabled").prop("checked",this.__isallchecked=u.prop("checked")),t=[];else if(u.prop("checked"))t=Array.prototype.slice.apply(n.parent().find("input.dataitem:checked")).map(function(n){return $(n).parent().data("item")});else if(t=this.label.data("selectedlist")||[],f=n.data("item"),this.__isallchecked)for(this.__isallchecked=!1,n.parent().find('input[isall="1"]').prop("checked",!1),i=0;i<this.source.length;i++)e=this.source[i],e!=f&&t.push(e);else for(i=0;i<t.length;i++)t[i]==f&&t.splice(i,1);if(r=this.__isallchecked?GetTextByKey("P_GRID_ALL","(All)"):t.map(function(n){return n[o]}).join(", "),r==null||r.trim()==""?this.label.data("selectedlist",t).html(" "):this.label.data("selectedlist",t).text(r),typeof this.onselectedlist=="function")this.onselectedlist(t)}function f(n,i){var a,e,r,u,k,f,d,o;n.empty();var v=this.label.data("selected"),g=this.label.data("selectedlist")||[],c=null,s=this.valueKey,l=this.textKey,h=this.enableKey,y=this.htmlKey,p=this.multiselect,nt=this.allowselectall!==!1,tt=this.search,w=this,b=this.__isallchecked;for(p&&nt&&(a=$("<li><\/li>"),n.append(a.append($('<input type="checkbox" isall="1"><\/input>').prop("checked",b).on("change",function(){t.call(w,a)}),$("<label><\/label>").text(GetTextByKey("P_GRID_ALL","(All)"))))),e=0;e<i.length;e++){if(tt&&e>=200)break;r=i[e];u=$("<li><\/li>").data("item",r).attr({value:r[s],title:r[l]});p?(o=r[y],k=o!=null?$("<label><\/label>").html(o):$("<label><\/label>").text(r[l]),f=$('<input type="checkbox" class="dataitem"><\/input>'),r.__selected&&f.prop("checked",!0),r.sublevel>0&&f.css("margin-left",""+20*r.sublevel+"px"),(b||g.filter(function(n){return n[s]===r[s]}).length>0)&&(h&&r[h]===!1||f.prop("checked",!0)),h&&(d=r[h],f.prop("disabled",d===!1)),!function(n){f.on("change",function(){t.call(w,n)})}(u),u.append(f,k)):(o=r[y],o!=null?u.html(o):u.text(r[l]),v&&v[s]===r[s]&&(c=30*e,u.addClass("selected")));n.append(u)}c!=null&&setTimeout(function(){n.scrollTop(c)},1)}var i,r,n;$.fn.dialog=function(n,t){function i(i){t?i.data.remove():i.data.hideDialog();typeof n=="function"&&n(i)}function u(n){if(n.keyCode==9){var t=r.find("input:not(:disabled),select:not(:disabled)").eq(0);return t.focus(),!1}}this.children(".dialog-title").mousedown(this,e);this.find(".dialog-close").click(this,i);this.find(".form-close").click(this,i);this.find("input.dialog-close").keydown(u);var r=this;return this};$.fn.showDialogfixed=function(n){var i=(document.documentElement.clientHeight-this.height())/3,t,r;i<0&&(i=0);t=(document.documentElement.clientWidth-this.width())/2;t<0&&(t=0);this.css({top:i,left:t});this.show();n||(r=this.find("input:not(:disabled),select:not(:disabled)").eq(0),r.focus())};$.fn.showDialogAuto=function(n){var t=n,u=document.documentElement.clientWidth*98/100,i,r,f;t>u&&(t=u);this.css("width",t);i=(document.documentElement.clientHeight-this.height())/3;i<0&&(i=0);r=(document.documentElement.clientWidth-t)/2;r<0&&(r=0);this.css({top:i,left:r});this.show();f=this.find("input:not(:disabled),select:not(:disabled)").eq(0);f.focus()};$.fn.showDialog=function(){var i=(document.documentElement.clientHeight-this.height())/3,n,r,u,t,f;return i<0&&(i=0),n=(document.documentElement.clientWidth-this.width())/2,n<0&&(n=0),this.css({top:i,left:n}),r=this.parent().outerHeight(!1),u=this.parent().outerWidth(!1),r>0&&$("#mask_bg").height(r),u>0&&$("#mask_bg").width(u),this.attr("init")!=="1"&&(this.attr("init","1"),t=this,$(window).resize(function(){t.height(t.parent().outerHeight(!1)-64).width(t.parent().outerWidth(!1)-n-2);$("#mask_bg").height($(document).outerHeight(!1)-64).width($(document).outerWidth(!1))})),this.show(),f=this.find("input:not(:disabled),select:not(:disabled)").eq(0),f.focus(),this};$.fn.showDialogRight=function(){var n,t;this.css({top:0,left:0,width:$(document).outerWidth(!1)-2,height:$(document).outerHeight(!1)});$("#mask_bg").height($(document).outerHeight(!1)).width($(document).outerWidth(!1));this.attr("init")!=="1"&&(this.attr("init","1"),n=this,$(window).resize(function(){n.height($(document).outerHeight(!1)).width($(document).outerWidth(!1)-2)}));this.show();t=this.find("input:not(:disabled),select:not(:disabled)").eq(0);t.focus()};$.fn.showDialogRight1=function(n){var t,i;n||(n=100);this.css({top:0,left:n,width:$(document).outerWidth(!1)-n-50,height:$(document).outerHeight(!1)-64});$("#mask_bg").height($(document).outerHeight(!1)).width($(document).outerWidth(!1));this.attr("init")!=="1"&&(this.attr("init","1"),t=this,$(window).resize(function(){t.height($(document).outerHeight(!1)-64).width($(document).outerWidth(!1)-n-2);$("#mask_bg").height($(document).outerHeight(!1)-64).width($(document).outerWidth(!1))}));this.show();i=this.find("input:not(:disabled),select:not(:disabled)").eq(0);i.focus()};$.fn.showDialogRight2=function(){var n,t;this.css({top:0,right:0,width:800,height:$(document).outerHeight(!1)});$("#mask_bg").height($(document).outerHeight(!1)).width($(document).outerWidth(!1));this.attr("init")!=="1"&&(this.attr("init","1"),n=this,$(window).resize(function(){n.height($(document).outerHeight(!1)).width($(document).outerWidth(!1)-2)}));this.show();t=this.find("input:not(:disabled),select:not(:disabled)").eq(0);t.focus()};$.fn.hideDialog=function(){this.hide()};$(function(){$(document).on("mousedown.dropdown",u).on("mousedown.dropdown",".dropdown-wrapper .dropdown-panel, .dropdown-panel-sep",function(n){n.stopPropagation()})});n=function(){};n.prototype.create=function(n){var t=this,r,i,u;n==null&&(n={});this.multiselect=n.multiselect;this.allowselectall=n.allowselectall;this.search=n.search;this.parent=n.parent;this.textKey=n.textKey||"text";this.valueKey=n.valueKey||"value";this.enableKey=n.enableKey;this.htmlKey=n.htmlKey||"html";this.searchKeys=n.searchKeys;this.disabled=n.disabled||!1;this.maxlength=n.maxlength||500;this.miniWidth=n.miniWidth||!1;this.holder=n.holder;this.searchPlaceholder=n.searchPlaceholder||GetTextByKey("P_WO_SEARCH","Search")+"...";r=$('<div class="dropdown-wrapper"><\/div>');r.data("dropdown",this);this.container=r;i=$('<div class="dropdown-header"><\/div>');n.disabled&&i.addClass("disabled");i.on("click",function(){if(!t.disabled){var n=t.dropdownContainer!=null&&t.dropdownContainer.css("visibility")==="visible";n&&t.label.is(":focus")||(t.dropdown(!n),n||typeof t.onexpanded!="function"||setTimeout(function(){t.onexpanded()},120))}});return u=n.input&&!this.multiselect?$('<input type="text" class="dropdown-text"/>').attr("maxlength",this.maxlength).on("mousedown",function(n){t.dropdownContainer!=null&&t.dropdownContainer.css("visibility")==="visible"&&n.stopPropagation()}).on("blur",function(){t.select($(this).val(),!0)}):$('<label class="dropdown-text"><\/label>').html(" "),this.label=u,n.selected!=null&&this.select(n.selected),i.append(u),i.append('<label class="dropdown-caret"><\/label>'),r.append(i),r};n.prototype.setDisabled=function(n){this.disabled=n;n?this.container.children(".dropdown-header").addClass("disabled"):this.container.children(".dropdown-header").removeClass("disabled")};n.prototype.setSource=function(n){if(this.source=n,this.dropdownContainer!=null&&this.dropdownContainer.css("visibility")==="visible"){var t=this;setTimeout(function(){t.dropdown(!0)},120)}};n.prototype.select=function(n,t){if((!t||this.__lastSelected!=n)&&(this.__lastSelected=n,this.source!=null||(typeof this.sourceFilter=="function"&&(this.source=this.sourceFilter(!0)),$.isArray(this.source)))){var r=this.valueKey,u=this.textKey,i=this.source.filter(function(t){return t[r]==n})[0];if(i==null)if(this.label.is("input")){if(i={},i[r]=n,this.label.data("selected",i).val(n),typeof this.onselected=="function")this.onselected(i)}else return this.label.removeData("selected").val("").html(" "),!1;else i[u]==null||String(i[u]).trim()==""?this.label.data("selected",i).val(i[r]).html(" "):this.label.is("input")?this.label.data("selected",i).val(i[u]):this.label.data("selected",i).val(i[r]).text(i[u])}};n.prototype.selectlist=function(n){var i;if(this.source!=null||(typeof this.sourceFilter=="function"&&(this.source=this.sourceFilter(!0)),$.isArray(this.source))){var r=this.valueKey,u=this.textKey,t=this.source.filter(function(t){return t.__selected=n.indexOf(t[r])>=0,n.indexOf(t[r])>=0});if(t.length==0)return this.label.removeData("selectedlist").html(" "),!1;i=t.map(function(n){return n[u]}).join(", ");i==null||i.trim()==""?this.label.data("selectedlist",t).html(" "):this.label.data("selectedlist",t).text(i)}};Object.defineProperty(n.prototype,"selected",{get:function(){return this.label.data("selected")}});Object.defineProperty(n.prototype,"selectedlist",{get:function(){return this.label.data("selectedlist")||[]}});n.prototype.dropdown=function(n){var l,a,h,e,v,c,y,r;n==null&&(n=!0);var i=this,o=this.textKey,p=this.valueKey,w=this.enableKey,s=this.searchKeys;if(s&&s.length!=0||(s=[o]),this.dropdownContainer==null){if(r=$('<div class="dropdown-panel"><\/div>'),this.search){l=$('<div class="dropdown-search"><\/div>');a=$('<input type="text"><\/input>').attr("placeholder",i.searchPlaceholder);a.on("input",function(){var t=$(this).val().toLowerCase(),n=i.source;n==null&&(typeof i.sourceFilter=="function"&&(n=i.sourceFilter()),$.isArray(n)&&(n=[]),i.source=n);t.length>0&&(n=n.filter(function(n){for(var r,i=0;i<s.length;i++)if(r=n[s[i]].toLowerCase(),n.__selected||r.indexOf(t)>=0)return!0;return!1}));f.call(i,r.children(".dropdown-list"),n)});l.append(a,'<em class="fal fa-search"><\/em>');r.append(l)}if(h=$('<ul class="dropdown-list"><\/ul>'),this.multiselect)h.on("mouseup",function(n){var r=$(n.target),f=r,u,e,o;if((r.is('input[type="checkbox"]')||r.is("label"))&&(f=r.parent()),u=f.data("item"),r.is('input[type="checkbox"]')){u&&(u.__selected=!r.prop("checked"));return}u&&w&&u[w]===!1||f.is("li")&&(n.preventDefault(),e=f.children('input[type="checkbox"]'),o=!e.prop("checked"),e.prop("checked",o),e.attr("isall")!=="1"&&(u.__selected=o),t.call(i,f))});else h.on("click",function(n){var r=$(n.target),t;if(r.is("li")&&(t=r.data("item"),u(!0),t[o]==null||String(t[o]).trim()==""?i.label.data("selected",t).val(t[p]).html(" "):i.label.is("input")?i.label.data("selected",t).val(t[o]):i.label.data("selected",t).val(t[p]).text(t[o]),typeof i.onselected=="function"))i.onselected(t)});r.append(h);this.dropdownContainer=r;this.holder instanceof $?(r.addClass("dropdown-panel-sep"),this.holder.append(r)):this.container.append(r)}e=this.source;typeof this.sourceFilter=="function"&&(e=this.sourceFilter(),$.isArray(e)||(e=[]),this.source=e);f.call(this,this.dropdownContainer.children(".dropdown-list"),e);n?(v=this.parent!=null?this.container.parents(this.parent):$(document.body),c=this.container.offset(),y=this.dropdownContainer.height(),c.top-v.offset().top+28+y>v.height()?this.dropdownContainer.css("margin-top",-y-29).addClass("slide-up"):this.dropdownContainer.css("margin-top","").removeClass("slide-up"),this.dropdownContainer.css("min-width",this.container.width()+2),this.miniWidth&&this.dropdownContainer.css("width",this.container.width()+2),this.holder!=null&&this.dropdownContainer.offset({top:c.top+28,left:c.left}),this.dropdownContainer.addClass("active"),r=this.dropdownContainer,setTimeout(function(){r.children(".dropdown-search").children('input[type="text"]').focus().val("")},120)):this.dropdownContainer.removeClass("active")};$.fn.dropdown=function(t,i){var u=this,r=new n;return r.source=t,r.onexpanded=function(){u.trigger("expand")},r.oncollapsed=function(){u.trigger("collapsed")},r.onselected=function(n){u.trigger("select",n)},this.data("dropdown",r),this.append(r.create(i)),this};$.fn.dropdownDisabled=function(n){var t=this.data("dropdown");if(t)return t.setDisabled(n),this};$.fn.dropdownItem=function(){var n=this.data("dropdown");if(n)return n.selected};$.fn.dropdownVal=function(n){var t=this.data("dropdown"),i,u,r;if(t)return n===void 0?(i=t.selected,i&&i[t.valueKey]):(u=t.select(n),u===!1&&n===""&&(r=t.source[0],t.select(r&&r[t.valueKey])),this)};$.fn.dropdownVals=function(n){var t=this.data("dropdown"),n;if(t)return n===void 0?t==null?[]:(n=t.selectedlist,n.map(function(n){return n[t.valueKey]})):(t.__isallchecked=!1,t.selectlist(n),this)};$.fn.dropdownTexts=function(){var n=this.data("dropdown"),t;return n==null?[]:(t=n.selectedlist,t.map(function(t){return t[n.textKey]}))};$.fn.dropdownSource=function(n){var t=this.data("dropdown");if(t)return t.setSource(n),this};$.fn.allselected=function(n){var t=this.data("dropdown");if(t)return n===void 0?t.__isallchecked:(t.__isallchecked=n,t.label.text(GetTextByKey("P_GRID_ALL","(All)")),this)};$.fn.allowselectall=function(n){var t=this.data("dropdown");if(t)return n===void 0?t.allowselectall:(t.allowselectall=n,this)}}(),typeof _dialog!="object"&&(_dialog={},_dialog.showConfirm=function(n,t,i,r,u,f,e){u||(u=r);_dialog.showButtonDialog(n,t,"question",u,[{value:GetTextByKey("P_UTILITY_NO","No"),func:r},{value:GetTextByKey("P_UTILITY_YES","Yes"),func:i}],f,e)},_dialog.showConfirmOKCancel=function(n,t,i,r,u,f){u||(u=r);_dialog.showButtonDialog(n,t,"question",u,[{value:GetTextByKey("P_UTILITY_CANCEL","Cancel"),func:r},{value:GetTextByKey("P_UTILITY_OK","OK"),func:i}],f)},_dialog.showConfirmYesNoCancel=function(n,t,i,r,u,f){u||(u=r);_dialog.showButtonDialog(n,t,"question",u,[{value:GetTextByKey("P_UTILITY_CANCEL","Cancel"),func:u},{value:GetTextByKey("P_UTILITY_NO","No"),func:r},{value:GetTextByKey("P_UTILITY_YES","Yes"),func:i}],f)},_dialog.showButtonDialog=function(n,t,i,r,u,f,e){var o=$('<div class="dialog popupmsg" style="z-index:1000;"><\/div>'),t,v,c,y,h,s,p,l,a;for(o.css("position","fixed"),t=$('<div class="dialog-title"><\/div>').append([$('<span class="title"><\/span>').text(t),$('<em class="dialog-close"><\/em>')]),t.appendTo(o),v=$('<div class="dialog-text"><\/div>').html(n),e&&(c=$('<textarea style="display:block; width:98%; box-sizing:border-box; margin-top:10px; height:80px"><\/textarea>'),v.append(c)),y=$('<div class="dialog-content"><\/div>').append([$("<em><\/em>").addClass(i),v]),y.appendTo(o),h=[],s=0;s<u.length;s++)u[s].func=="dialog-close"?h.push($('<input type="button" class="dialog-close" />').val(u[s].value)):h.push($('<input type="button" />').val(u[s].value).click(s,function(n){if(o.remove(),typeof u[n.data].func=="function"){var t=c!=null&&c.val();u[n.data].func(n,t)}}));h.push($('<div class="clear"><\/div>'));p=$('<div class="dialog-func"><\/div>').append(h);p.appendTo(o);o.appendTo($(document.body)).show();f&&o.prop("iframe",!0);o.dialog(r,!0);l=(document.documentElement.clientHeight-o.height())/3;l<0&&(l=0);a=(document.documentElement.clientWidth-o.width())/2;a<0&&(a=0);o.css({top:l,left:a})},_dialog.showAlert=function(n,t,i,r,u,f){var e=$('<div class="dialog popupmsg"><\/div>'),t,o,l,a,s,h,c;return e.css("position","fixed"),t=$('<div class="dialog-title"><\/div>').append([$('<span class="title"><\/span>').text(t),$('<em class="dialog-close"><\/em>')]),t.appendTo(e),o=$('<div class="dialog-text"><\/div>').html(htmlencode(n).replace(/\n/g,"<br/>").replace(/ /g," ")),typeof u=="boolean"&&u?e.prop("iframe",!0):isNaN(u)||o.css("min-width",u),isNaN(f)||o.css("min-height",f),l=$('<div class="dialog-content"><\/div>').append([$("<em><\/em>").addClass(i||"info"),o]),l.appendTo(e),a=$('<div class="dialog-func"><\/div>').append([$('<input type="button" value="'+GetTextByKey("P_UTILITY_OK","OK")+'" class="dialog-close" />'),$('<div class="clear"><\/div>')]),a.appendTo(e),s=$('<div class="maskbg popupmsg"><\/div>').css("display","none"),s.appendTo($(document.body)).fadeIn(100),e.appendTo($(document.body)).show(),e.maskbg=s,e.dialog(function(n){s.fadeOut(100,function(){$(this).remove()});typeof r=="function"&&r(n)},!0),h=(document.documentElement.clientHeight-e.height())/3,h<0&&(h=0),c=(document.documentElement.clientWidth-e.width())/2,c<0&&(c=0),e.css({top:h,left:c}),e},_dialog.close=function(n){n&&(n.remove(),n.maskbg&&n.maskbg.remove())}),$.debounce=function(n,t,i){t=void 0!==t?t:100;i=void 0!==i?i:window;for(var u=arguments.length,f=Array(u>3?u-3:0),r=3;r<u;r++)f[r-3]=arguments[r];clearTimeout(n.tiid);n.tiid=setTimeout(function(){n.apply(i,f)},t)},$.throttle=function(n,t,i){var e;t=void 0!==t?t:100;i=void 0!==i?i:window;for(var u=arguments.length,f=Array(u>3?u-3:0),r=3;r<u;r++)f[r-3]=arguments[r];clearTimeout(n.tiid);e=new Date;n.tdate===void 0||e-n.tdate>t?(n.apply(i,f),n.tdate=e):n.tiid=setTimeout(function(){n.apply(i,f)},t)},$.newGuid=function(){return(new Guid).create()},$.isGuid=function(n){return/^[0-9a-fA-F]{8}(-[0-9a-fA-F]{4}){3}-[0-9a-fA-F]{12}$/.test(n)},$.generateUUID=function(){var n=(new Date).getTime(),t=typeof performance!="undefined"&&performance.now&&performance.now()*1e3||0;return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(i){var r=Math.random()*16;return n>0?(r=(n+r)%16|0,n=Math.floor(n/16)):(r=(t+r)%16|0,t=Math.floor(t/16)),(i==="x"?r:r&3|8).toString(16)})},libui=window["lib-ui"],libui!=null)var CheckboxColumn=Object.create(libui.GridCheckboxColumn,{setValue:{value:function(n,t){n.tagName!=="LABEL"?n.innerText=t:Object.getPrototypeOf(this).setValue(n,t)}},setEnabled:{value:function(n,t){n.tagName==="LABEL"&&Object.getPrototypeOf(this).setEnabled(n,t)}},toString:{value:function(){return"Checkbox"}}}),NoteColumn=Object.create(libui.GridColumn,{canEdit:{get:function(){return!0}},create:{value:function(n,t,i){var u=libui.createElement("div","cell-flex"),r=libui.createIcon("fa-light","pen");return r.classList.add("cell-flex-icon"),r.style.display="none",u.append(r,libui.createElement("span","cell-flex-memo")),n.readonly||typeof n.onClicked=="function"&&r.addEventListener("click",function(){var r=i.source[i.startIndex+t];n.onClicked.call(n,r,u)}),u}},getElement:{value:function(n){return n.children[1]}},setValue:{value:function(n,t){n.children[1].innerHTML=converthtmlurl(t||"")}},setEditing:{value:function(n,t){var i=n.children[0];i.style.display=t&&!i.disabled?"":"none"}},setEnabled:{value:function(n,t,i){var r=n.children[0];r.disabled=t===!1;r.style.display=i&&t!==!1?"":"none"}},toString:{value:function(){return"Note"}}}),CommunicationColumn=Object.create(NoteColumn,{create:{value:function(n,t,i){var u=libui.createElement("div","cell-flex"),r=libui.createElement("span","cell-flex-icon"),f;return r.style.display="none",r.title=GetTextByKey("P_WO_COMMUNICATIONACKNOWLEDGED","Communication Acknowledged"),f=libui.createIcon("fa-light","clipboard-check"),r.appendChild(f),u.append(r,libui.createElement("span","cell-flex-memo")),n.readonly||typeof n.onClicked=="function"&&f.addEventListener("click",function(){var r=i.source[i.startIndex+t];n.onClicked.call(n,r,u)}),u}},setValue:{value:function(n,t){n.children[1].innerHTML=window["lib-utility"].escapeEmoji(t||"")}},toString:{value:function(){return"Communication"}}}),ContactsColumn=Object.create(libui.GridColumn,{create:{value:function(){return libui.createElement("span","span-contacts")}},setValue:{value:function(n,t){n.innerText=t.join("\n")}},toString:{value:function(){return"Contacts"}}}),ThumbnailUrlColumn=Object.create(libui.GridColumn,{create:{value:function(){return libui.createElement("img","")}},setValue:{value:function(n,t,i){var u=i.values.FileType,r=$(n);imgTypes.indexOf(i.values.FileType.toLowerCase())>=0?(r.css("width",30).css("height",30).css("vertical-align","middle"),r.attr("src",i.values.ThumbnailUrl)):(r.css("width",30).css("height",30).css("line-height",40).css("vertical-align","middle"),[".doc",".docx"].indexOf(u)>=0?r.attr("src","../img/icon/word.jpg"):[".xls",".xlsx"].indexOf(u)>=0?r.attr("src","../img/icon/excel.jpg"):[".ppt",".pptx"].indexOf(u)>=0?r.attr("src","../img/icon/ppt.jpg"):[".pdf",".xps"].indexOf(u)>=0?r.attr("src","../img/icon/pdf.jpg"):[".mp4",".mov",".avi",".mkv",".3gp",".ts",".m2ts"].indexOf(u)>=0?r.attr("src","../img/icon/vedio.jpg"):[".zip",".rar",".7z"].indexOf(u)>=0?r.attr("src","../img/icon/zip.jpg"):[".msg"].indexOf(u)>=0?r.attr("src","../img/icon/msg.jpg"):[".xml"].indexOf(u)>=0?r.attr("src","../img/icon/xml.jpg"):r.attr("src","../img/icon/txt.jpg"))}},toString:{value:function(){return"Thumbnail"}}}),SchedulesColumn=Object.create(libui.GridColumn,{createCaption:{value:function(){var t,i,n,r,u;if(assetsObj?.HasSchedule){for(t=$("<span><\/span>").css({position:"relative",height:26,width:"100%",display:"block"}),i=0,n=0;n<assetsObj.Labels.length;n++)r=assetsObj.Labels[n],u=$('<span class="span-caption"><\/span>').text(r.Key).css({left:i}),i+=parseInt(r.Value)*5,t.append(u);return t[0]}}},create:{value:function(){var n=document.createElement("div");return n.style.cssText="position: relative; height: 20px",n}},setValue:{value:function(n,t,i,r){var s,w,a,l,o,f,k,d,e;if(n.replaceChildren(),s=i.values,s.ScheduleParts&&assetsObj?.HasSchedule){var v=4,h=assetsObj.TotalDays,p=parseInt(h/v);for(h%v!=0&&(p+=1),h=p*v,w=new Date(assetsObj.BeginDate),a=0;a<s.ScheduleParts.length;a++){var u=s.ScheduleParts[a],y=new Date(u.BeginDate),b=new Date(u.EndDate),g=(y.getTime()-w.getTime())/864e5/h*r.width,nt=(b.getTime()-y.getTime())/864e5/h*r.width,c="";if(u.Schedules.length==1)c=u.Schedules[0].Color;else for(f=0;f<u.Schedules.length;f++)c!==""&&(c+=","),c+=u.Schedules[f].Color;for(l=new DateFormatter,o=l.formatDate(y,"m/d/Y")+" - "+l.formatDate(new Date(b.getTime()-864e5),"m/d/Y")+"\n",f=0;f<u.Schedules.length;f++)k=new Date(u.Schedules[f].BeginDate),d=new Date(u.Schedules[f].EndDate),o+=u.Schedules[f].JobSiteName+": "+l.formatDate(k,"m/d/Y")+" - "+l.formatDate(d,"m/d/Y"),u.Schedules[f].PointOfContact&&(o+="\n "+GetTextByKey("P_JS_CONTACT_COLON","Contact: ")+" "+u.Schedules[f].PointOfContact),u.Schedules[f].Creator&&(o+="\n "+GetTextByKey("P_JS_CREATOR_COLON","Creator: ")+" "+u.Schedules[f].Creator),f!=u.Schedules.length-1&&(o+="\n");e=libui.createElement("span","span-bar");e.style.cssText="left: "+g+"px; width: "+Math.max(1,nt-1)+"px; border-left: 1px solid transparent";u.Schedules.length==1?e.style.backgroundColor=c:e.style.backgroundImage="url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'><g fill-opacity='0.5'><path d='M0 0L8 8z M0 8L8 0z' style='fill:white;stroke:gray;stroke-width:1'/><\/g><\/svg>\")";e.title=o;IsReadOnly||typeof r.onScheduleClicked!="function"||e.addEventListener("dblclick",function(n){return r.onScheduleClicked.bind(r,s,n)}(u));n.append(e)}}}},toString:{value:function(){return"Schedules"}}}),DispatchSchedulesColumn=Object.create(SchedulesColumn,{createCaption:{value:function(n){var i,o,s;if(dispatchAssetsObj?.HasSchedule){var t=4,u=dispatchAssetsObj.TotalDays,f=parseInt(u/t);u%t!=0&&(f+=1);var e=$("<span><\/span>").css({position:"relative",height:26,width:"100%",display:"block"}),r=new Date(dispatchAssetsObj.BeginDate),h=n.width/t;for(i=0;i<t;i++)o=(new DateFormatter).formatDate(r,"m/d/Y"),s=$('<span class="span-caption"><\/span>').text(o).css({left:h*i}),e.append(s),r=new Date(r.getTime()+f*864e5);return e[0]}}},setValue:{value:function(n,t,i,r){var c,b,e,l,o,a,p,f,d,g,s;if(n.replaceChildren(),c=i.values,c.ScheduleParts&&dispatchAssetsObj?.HasSchedule){var v=4,h=dispatchAssetsObj.TotalDays,w=parseInt(h/v);for(h%v!=0&&(w+=1),h=w*v,b=new Date(dispatchAssetsObj.BeginDate),e=0;e<c.ScheduleParts.length;e++){var u=c.ScheduleParts[e],k=new Date(u.BeginDate),nt=new Date(u.EndDate),y=(k.getTime()-b.getTime())/864e5/h*r.width;if(y<e+1&&(y=e+1),l=(nt.getTime()-k.getTime())/864e5/h*r.width,l<1&&(l=1),o="",u.Schedules.length==1)o=u.Schedules[0].Color;else for(f=0;f<u.Schedules.length;f++)o!==""&&(o+=","),o+=u.Schedules[f].Color;for(a="",p=new DateFormatter,f=0;f<u.Schedules.length;f++)d=new Date(u.Schedules[f].BeginDate),g=new Date(u.Schedules[f].EndDate),a+=u.Schedules[f].JobSiteName+": "+p.formatDate(d,"m/d/Y")+" - "+p.formatDate(g,"m/d/Y"),f!=u.Schedules.length-1&&(a+="\n");s=libui.createElement("span","span-bar");s.style.cssText="left: "+y+"px; width: "+l+"px";u.Schedules.length==1?s.style.backgroundColor=o:s.style.backgroundImage="url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'><g fill-opacity='0.5'><path d='M0 0L8 8z M0 8L8 0z' style='fill:white;stroke:gray;stroke-width:1'/><\/g><\/svg>\")";s.title=a;n.append(s)}}}},toString:{value:function(){return"DispatchSchedules"}}});typeof UserMessage!="function"&&(UserMessage=function(){function h(n){var r,u;t.allmessages==null||t.allmessages.length<e||(r=n==null?0:n.target.scrollTop,r-=r%i+f*i,r<0?r=0:(u=t.bodyContainerHeight-(t.bodyClientRowCount+f*2+1)*i,r>u&&(r=u)),t.scrollTop!==r&&(t.scrollTop=r,t.startIndex=r/i,t.bodyContentStyle.top=r&&r+"px"))}function c(n){var t="jt=woe;woid="+n;t=window.btoa(t);window.open(_network.root+"Jump.aspx?p="+t,"_blank")}function l(n){var r,i,u;if(n&&typeof n!="string"&&n.length>0){for(o=n[0].Id,r=0;r<n.length;r++)i=n[r],i.Selected=!1,i.Source=="WorkOrder"&&(i.LinkText=i.Title),i.Message=i.Message.toLowerCase().indexOf("http://")>=0||i.Message.toLowerCase().indexOf("https://")>=0?formatUrl(i.Message):htmlencode(i.Message),i.Message.indexOf("\r\n")>-1&&(u=new RegExp("\r\n","g"),i.Message=i.Message.replace(u,"<br/>")),i.Message.indexOf("\n")>-1&&(u=new RegExp("\n","g"),i.Message=i.Message.replace(u,"<br/>"));t.reload(n)}}var n=this,f=2,i=129,e=40,s=function(n){return(n>0?Math.floor:Math.ceil)(n)},t=new Vue({el:"#divmsgs",data:{startIndex:0,bodyContentStyle:{top:null},bodyContainerHeight:0,bodyContainerStyle:{height:null},scrollTop:0,allmessages:[]},computed:{bodyClientRowCount:function(){var n=document.getElementById("divmsgcontainer").clientHeight;return s((n-1)/i)+1},innerMessages:function(){var n=this.startIndex,t;return(n<0&&(n=0),this.allmessages==null||this.allmessages.length==0)?[]:this.allmessages.length<e?this.allmessages.slice():(t=this.bodyClientRowCount+n+f*2+1,t>this.allmessages.length&&(t=this.allmessages.length),this.allmessages.slice(n,t))}},methods:{reload:function(n){for(var r,u,f,t=0;t<this.allmessages.length;t++)n.push(this.allmessages[t]);this.allmessages=n;r=n&&n.length*i;this.bodyContainerHeight=r;this.bodyContainerStyle.height=r&&r+"px";n.length<e?(this.startIndex=-1,this.startIndex=0,this.bodyContentStyle.top="0px"):(u=this.startIndex,f=n.length-this.bodyClientRowCount,u>f&&(u=f),this.startIndex=-1,this.startIndex=u)},refresh:function(){var n=this.startIndex;this.startIndex=-1;this.startIndex=n},linkClick:function(n){n.Source=="WorkOrder"&&c(n.SourceId)},readMessage:function(t,i){var f=$(i.target),u,r;if(f.attr("type")!="checkbox"){if(u=[],t)t.Readed=!0,u.push(t.Id);else for(r=0;r<this.allmessages.length;r++)this.allmessages[r].Selected&&(this.allmessages[r].Readed=!0,u.push(this.allmessages[r].Id));this.refresh();u.length>0&&n.readUserMessages(u)}},deleteMessage:function(t){var r=[],i=this,u;if(t)r.push(t.Id),showConfirm(GetTextByKey("P_MAIN_DOYOUWANTTODELETETHEMESSAGE","Do you want to delete the message?"),GetTextByKey("P_MAIN_DELETEMESSAGES","Delete Message"),function(){var u=i.allmessages.indexOf(t);i.allmessages.splice(u,1);n.deleteUserMessages(r);i.reload([])});else{for(u=0;u<this.allmessages.length;u++)this.allmessages[u].Selected&&r.push(this.allmessages[u].Id);r.length>0&&showConfirm(GetTextByKey("P_MAIN_DOYOUWANTTODELETESELECTEDMESSAGES","Do you want to delete selected message(s)?"),GetTextByKey("P_MAIN_DELETEMESSAGES","Delete Message"),function(){for(var t=i.allmessages.length-1;t>=0;t--)i.allmessages[t].Selected&&i.allmessages.splice(t,1);n.deleteUserMessages(r);i.reload([])})}},closeMessage:function(){$("#divmsgs").hide()},refreshMessage:function(){n.getUserMessages()},selectAll:function(n){for(var i=$(n.target),r=i.prop("checked"),t=0;t<this.allmessages.length;t++)this.allmessages[t].Selected=r;this.refresh()}}}),o,r,u;document.getElementById("divmsgcontainer").addEventListener("scroll",h,{passive:!0});$("#iconmessage").click(function(){n.getUserMessages();$("#divmsgs").show()});o=0;r=!1;this.getUserMessages=function(){r||(r=!1,_network.commonpagequery(10,o,function(n){r=!1;$("#iconmessage").show();l(n)},function(){r=!1},!0))};this.readUserMessages=function(t){_network.commonpagequery(11,JSON.stringify(t),function(){n.getUnreadCount()},function(){},!0)};this.deleteUserMessages=function(t){_network.commonpagequery(12,JSON.stringify(t),function(){n.getUnreadCount()},function(){},!0)};u=0;this.getUnreadCount=function(){_network.commonpagequery(13,"",function(t){if($("#iconmessage").show(),!isNaN(t)&&eval(t)>0){var i=eval(t);u!=i&&$("#divmsgs").is(":visible")&&n.getUserMessages();u=i;u>99?$("#divunreadcount").text("99+"):$("#divunreadcount").text(u);$("#divunreadcount").show()}else $("#divunreadcount").hide()},function(){},!0)};setInterval(function(){n.getUnreadCount()},45e3);n.getUnreadCount()}),function(){"use strict";function n(n,t){return n.attr(t).replace(/[.]/g,"_")}$.fn.applyFleetLanguageText=function(t){return this.each(function(){for(var e,r=$(this).find("[data-lgid]"),i,u,f=0;f<r.length;f++)i=$(r[f]),u=n(i,"data-lgid"),i.is("input")?i.val(GetTextByKey(u,i.val())):i.text(GetTextByKey(u,i.text()));for(r=$(this).find("input[data-holder-lgid]"),f=0;f<r.length;f++)i=$(r[f]),u=n(i,"data-holder-lgid"),i.attr("placeholder",GetTextByKey(u,i.attr("placeholder")));if(t)for(r=$(this).find("[data-title-lgid]"),e=0;e<r.length;e++)i=$(r[e]),u=n(i,"data-title-lgid"),i.attr("title",GetTextByKey(u,u))})}}();langObj=undefined;userfavorates=[];$(function(){$("#dialog_favorite").dialog(function(){showmaskbg(!1);$(".maskbg").hide()})});favgridinited=!1;_network.ficquery=function(n,t,i,r){requestFIC("FI.FIC.IFICQuery",n,t,i,r)}; |