using FI.FIC; using Foresight.Fleet.Services; using Foresight.Fleet.Services.Asset; using Foresight.Fleet.Services.AssetHealth; using Foresight.Fleet.Services.AssetHealth.WorkOrder; using Foresight.Fleet.Services.Attachment; using Foresight.Fleet.Services.Customer; using Foresight.Fleet.Services.Inspection; using Foresight.Fleet.Services.JobSite; using Foresight.Fleet.Services.Partner; using Foresight.ServiceModel; using IronIntel.Contractor.Machines; using IronIntel.Contractor.Maintenance; using IronIntel.Contractor.MapView; using IronIntel.Contractor.Users; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Diagnostics.Contracts; using System.Linq; using System.Net.Mail; using System.Runtime.InteropServices; using System.Text; using System.Web; namespace IronIntel.Contractor.Site.Maintenance { public class WorkOrderBasePage : ContractorBasePage { protected void ProcessRequest(string methodName) { object result = null; if (methodName != null) { switch (methodName.ToUpper()) { case "GETWORKORDERS": result = GetWorkOrders(); break; case "GETWORKORDERLISTITEM": result = GetWorkOrderListItem(); break; case "SAVEWORKORDER": result = SaveWorkOrder(); break; case "DELETEWORKORDER": result = DeleteWorkOrder(); break; case "RESTOREDELETEWORKORDER": result = RestoreDeleteWorkOrder(); break; case "GETCONTACTS": result = GetContacts(); break; case "GETMACHINES": result = GetMachines(); break; case "GETWORKORDERINFO": result = GetWorkOrderInfo(); break; case "GETOPENWORKORDERID": result = GetOpenWorkOrderID(); break; case "GETSEGMENTS": result = GetSegments(); break; case "SAVESEGMENT": result = SaveSegment(); break; case "DELETESEGMENT": result = DeleteSegment(); break; case "GETSEGMENTDATASOURCE": result = GetSegmentDataSource(); break; case "GETSEGMENTDATASOURCE1": result = GetSegmentDataSource1(); break; case "GETCOMPONENTS": result = GetComponents(); break; case "GETJOBSITES": result = GetJobsites(); break; case "GETNONEASSIGNEDALERTS": result = GetNoneAssignedAlerts(); break; case "ADDORREMOVEALERTSFROMWORKORDER": result = AddOrRemoveAlertsFromWorkOrder(); break; case "GETATTACHMENTS": result = GetAttachments(); break; case "ADDATTACHMENT": result = AddAttachment(); break; case "DELETEATTACHMENT": result = DeleteAttachment(); break; case "GETMACHINECONTACTS": result = GetMachineContacts(); break; case "SENDWORKORDER": result = SendWorkOrder(); break; case "GETINVOICENUMBER": result = GetInvoiceNumber(); break; case "GETALERTSFORWORKORDER": result = GetAlertsForWorkOrder(); break; case "GETASSETDETAILINFO": result = GetAssetDetailInfo(); break; case "GETPMSCHEDULESBYASSET": result = GetPMSchedulesByAsset(); break; case "GENERATEMANUALPMALERTS": result = GenerateManualPMAlerts(); break; case "GETWORKORDERSTATUSES": result = GetWorkOrderStatuses(); break; case "GETCOMMENTS": result = GetComments(); break; case "ADDWORKORDERCOMMENT": result = AddWorkOrderComment(); break; case "GETCOMMUNICATIONS": result = GetCommunications(); break; case "ADDWORKORDERCOMMUNICATION": result = AddWorkOrderCommunication(); break; case "GETCUSTOMERCONTACTS": result = GetCustomerContacts(); break; case "SAVEWORKORDERSTATUS": result = SaveWorkOrderStatus(); break; case "DELETEWORKORDERSTATUS": result = DeleteWorkOrderStatus(); break; case "UPDATEWOSTATUSTECHNICIANSAVAILABLE": result = UpdateWOStatusTechniciansAvailable(); break; case "UPDATEWOSTATUSAUTOTEXT": result = UpdateWOStatusAutoText(); break; case "GETFILTERDATASOURCE": result = GetFilterDataSource(); break; case "SETWORKORDERDEFAULT": result = SetWorkOrderDefault(); break; case "GETWORKORDERDEFAULT": result = GetWorkOrderDefault(); break; case "SETWORKORDERCOLLAPSED": result = SetWorkOrderCollapsed(); break; case "GETWORKORDERCOLLAPSED": result = GetWorkOrderCollapsed(); break; case "GETWOINSPECTITEMS": result = GetWOInspectItems(); break; case "SENDINTERNALCOMMENTS": result = SendInternalComments(); break; case "UPDATEWORKORDER": result = UpdateWorkOrder(); break; case "UPDATEWOATTACHMENTEXTENSION": result = UpdateWOAttachmentExtension(); break; case "UPDATEWOSTATUSTYPE": result = UpdateWOStatusType(); break; case "UPDATEWODEFAULTONOPEN": result = UpdateWODefaultOnOpen(); break; case "GETLOCATIONSANDDEPARTMENTS": result = GetLocationsAndDepartments(); break; case "GETDEPARTMENTS": result = GetDepartments(); break; case "GETWORKORDERTYPES": result = GetWorkOrderTypes(); break; case "GETPARTSSTATUSES": result = GetPartsStatuses(); break; case "GETLOCATIONS": result = GetLocations(); break; case "GETWORKORDERESTIMATES": result = GetWorkOrderEstimates(); break; case "SAVEWORKORDERESTIMATE": result = SaveWorkOrderEstimate(); break; case "PUBLISHESTIMATETOCUSTOMER": result = PublishEstimateToCustomer(); break; case "UPDATEWOESTIMATEVISIBLETOCUSTOMER": result = UpdateWOEstimateVisibleToCustomer(); break; case "DELETEWORKORDERESTIMATE": result = DeleteWorkOrderEstimate(); break; case "REVOKEWORKORDERESTIMATE": result = RevokeWorkOrderEstimate(); break; case "ADDESTIMATEATTACHMENT": result = AddEstimateAttachment(); break; case "DELETEESTIMATEATTACHMENT": result = DeleteEstimateAttachment(); break; case "UPDATEINSPECTIONVISIBLETOCUSTOMER": result = UpdateInspectionVisibleToCustomer(); break; case "GETESTIMATEATTACHMENT": result = GetEstimateAttachment(); break; case "GETSURVEYTEMPLATEITEMS": result = GetSurveyTemplateItems(); break; case "GETSURVEYTEMPLATEINFO": result = GetSurveyTemplateInfo(); break; case "SAVESURVEYTEMPLATE": result = SaveSurveyTemplate(); break; case "DELETESURVEYTEMPLATE": result = DeleteSurveyTemplate(); break; case "SENDWORKORDERSURVEYS": result = SendWorkOrderSurveys(); break; case "CREATEWORKORDERSURVEYSBYCONTACTS": result = CreateWorkOrderSurveysByContacts(); break; case "GETWORKORDERSURVEYS": result = GetWorkOrderSurveys(); break; case "GETWORKORDERSURVEYSBYIDS": result = GetWorkOrderSurveysByIDs(); break; case "GETWORKORDERSURVEYRESULT": result = GetWorkOrderSurveyResult(); break; case "UPDATEINSPECTIONWORKORDER": result = UpdateInspectionWorkOrder(); break; case "GETSURVEYTEMPLATEREPORT": result = GetSurveyTemplateReport(); break; case "GETSURVEYTEMPLATEEMAIL": result = GetSurveyTemplateEmail(); break; case "UPDATECOMMUNICATIONACKNOWLEDGED": result = UpdateCommunicationAcknowledged(); break; case "UPDATEESTIMATEACKNOWLEDGED": result = UpdateEstimateAcknowledged(); break; case "GETWORKORDERINVOICES": result = GetWorkOrderInvoices(); break; case "SAVEWORKORDERINVOICE": result = SaveWorkOrderInvoice(); break; case "PUBLISHINVOICETOCUSTOMER": result = PublishInvoiceToCustomer(); break; case "DELETEWORKORDERINVOICE": result = DeleteWorkOrderInvoice(); break; case "REVOKEWORKORDERINVOICE": result = RevokeWorkOrderInvoice(); break; case "MARKASPAID": result = MarkAsPaid(); break; case "CANCELPAYMENT": result = CancelPayment(); break; case "CHANGEWOINVOICECUSTOMERVISIBLE": result = ChangeWOInvoiceCustomerVisible(); break; case "GETWORKORDERINVOICEATTACHMENTS": result = GetWorkOrderInvoiceAttachments(); break; case "ADDINVOICEATTACHMENT": result = AddInvoiceAttachment(); break; case "DELETEINVOICEATTACHMENT": result = DeleteInvoiceAttachment(); break; case "GETWORKORDERINVOICEPAYMENT": result = GetWorkOrderInvoicePayment(); break; case "UPDATEWORKORDERATTACHMENTCAPTION": result = UpdateWorkOrderAttachmentCaption(); break; case "GETWOSERVICETIMESETTING": result = GetWOServiceTimeSetting(); break; case "SETWOSERVICETIMESETTING": result = SetWOServiceTimeSetting(); break; case "GETWORKORDERNUMBERS": result = GetWorkOrderNumbers(); break; case "GETWORKORDERHISTORYS": result = GetWorkOrderHistorys(); break; case "GETSMSFOOTNOTES": result = GetSMSFootnotes(); break; case "SETSMSFOOTNOTES": result = SetSMSFootnotes(); break; case "GETESTIMATESETTINGS": result = GetEstimateSettings(); break; case "SETESTIMATESETTINGS": result = SetEstimateSettings(); break; case "GETINVOICESETTINGS": result = GetInvoiceSettings(); break; case "SETINVOICESETTINGS": result = SetInvoiceSettings(); break; case "GETWORKORDERPARAMS": result = GetWorkorderParams(); break; case "GETWORKORDERFOLLOWERS": result = GetWorkOrderFollowers(); break; case "GETALLFOLLOWERS": result = GetAllFollowers(); break; case "GETCUSTOMERFOLLOWERS": result = GetCustomerFollowers(); break; case "GETSALESPERSONS": result = GetSalespersons(); break; case "GETALLWORKORDERTYPES": result = GetAllWorkOrderTypes(); break; case "GETSURVEYAUTOMATIONSETTING": result = GetSurveyAutomationSetting(); break; case "SETSURVEYAUTOMATIONSETTING": result = SetSurveyAutomationSetting(); break; case "SETDONOTSENDSURVEY": result = SetDoNotSendSurvey(); break; case "GETINSPECTIONTEMPLATEITEMS": result = GetInspectionTemplateItems(); break; case "GETWORKORDERCONTACTS": result = GetWorkOrderContacts(); break; case "SAVEWORKORDERCONTACT": result = SaveWorkOrderContact(); break; case "SAVEWORKORDERFOLLOWER": result = SaveWorkOrderFollower(); break; case "DELETEWORKORDERFOLLOWER": result = DeleteWorkOrderFollower(); break; case "GETSURVEYPREVIEWURL": result = GetSurveyPreviewUrl(); break; } } string json = JsonConvert.SerializeObject(result); Response.Write(json); Response.End(); } protected void ProcessFileRequest() { bool download = false; string fileName = ""; byte[] buffer = null; try { string type = Request.Params["t"]; if (type != null) { switch (type) { case "1"://download buffer = GetWorkOrderSurveyPDF(out fileName, false); download = true; break; case "2"://print buffer = GetWorkOrderSurveyPDF(out fileName); break; case "3"://download work order report buffer = GetWorkOrderReportPDF(out fileName); break; } } } catch (Exception ex) { SystemParams.WriteLog("error", "WorkOrderBasePage", ex.Message, ex.ToString()); throw ex; } fileName = HttpUtility.UrlEncode(string.IsNullOrEmpty(fileName) ? "attachment" : fileName, System.Text.Encoding.UTF8) + ".pdf"; Response.ContentType = "application/pdf"; Response.BufferOutput = false; Response.ContentEncoding = System.Text.Encoding.UTF8; Response.AddHeader("Content-Disposition" , string.Format("{0}filename={1}", download ? "attachment;" : "", fileName)); if (buffer != null) { Response.AddHeader("Content-Length", buffer.Length.ToString()); Response.BinaryWrite(buffer); } Response.Flush(); Response.End(); } private object GetWorkOrders() { try { var session = GetCurrentLoginSession(); if (session != null) { StringBuilder log = new StringBuilder(); DateTime start = DateTime.Now; DateTime last = DateTime.Now; var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); WorkOrderQueryParams p = JsonConvert.DeserializeObject(clientdata); WorkOrderProvider wop = CreateClient(); WorkOrderListItem[] workorders = null; if (p.AssetID > 0) workorders = wop.GetWorkOrderItemsByAsset(SystemParams.CompanyID, p.AssetID); else workorders = wop.GetWorkOrderItems(SystemParams.CompanyID, p.Contacts, p.Statuses, p.OrderTypes, p.AssetGroups, p.SearchText, p.Completed, p.Locations, p.Departments, p.Advisors); log.AppendLine("GetWorkOrderItems: " + (DateTime.Now - last).ToString()); last = DateTime.Now; WorkOrderListItemClient[] maintenanceworkorders = null;// if (p.ShowMaintenance) { maintenanceworkorders = MaintenanceManagement.GetMaintenanceWorkOrders(session.SessionID, SystemParams.CompanyID, p.Contacts, p.AssetGroups, p.SearchText, session.User.UID); log.AppendLine("GetMaintenanceWorkOrders: " + (DateTime.Now - last).ToString()); last = DateTime.Now; } WorkOrderStatus[] allwostatus = wop.GetWorkOrderStatuses(SystemParams.CompanyID); WorkOrderStatus[] wostatus = allwostatus; if (session.User.ContactType == Foresight.Fleet.Services.User.ContactTypes.Technician) { wostatus = allwostatus.Where(m => m.TechniciansAvailable).ToArray(); } log.AppendLine("GetWorkOrderStatuses: " + (DateTime.Now - last).ToString()); last = DateTime.Now; List list = new List(); if (maintenanceworkorders != null) { //普通用户机器权限过滤 var user = GetCurrentUser(); if (user.UserType < UserTypes.Admin) { long[] availableAssetsids = CreateClient().GetAvailableAssetsForUsers(SystemParams.CompanyID, session.User.UID); foreach (WorkOrderListItemClient wi in maintenanceworkorders) { if (availableAssetsids != null && !availableAssetsids.Contains(wi.AssetId)) continue; list.Add(wi); } } else list.AddRange(maintenanceworkorders); log.AppendLine("maintenanceworkorders: " + (DateTime.Now - last).ToString()); last = DateTime.Now; } foreach (WorkOrderListItem wo in workorders) { WorkOrderListItemClient wi = new WorkOrderListItemClient(); Helper.CloneProperty(wi, wo); if (wi.CreateDate != null) wi.CreateDate = wi.CreateDate.Value.Date; if (wi.CreationDate != null) wi.CreationDate = wi.CreationDate.Value.Date; if (wi.LastCommunicationDate != null) wi.LastCommunicationDate = wi.LastCommunicationDate.Value.Date; var sel = allwostatus.FirstOrDefault(s => s.Id == wi.Status); if (sel != null) wi.WorkOrderStatus = new WorkOrderStatus[] { sel }; if (wi.AssignedTo == "-1") { wi.AssignedTo = ""; wi.AssignedToName = ""; } if (!string.IsNullOrWhiteSpace(wi.AssignedTo)) wi.AssignedToUsers = new UserInfo[] { new UserInfo() { IID = wi.AssignedTo, DisplayName = wi.AssignedToName } }; if (wi.DepartmentId > 0) wi.Departments = new DepartmentInfo[] { new DepartmentInfo() { Id = wi.DepartmentId, Name = wi.Department } }; if (wi.LocationId > 0) wi.Locations = new CustomerLocation[] { new CustomerLocation() { ID = wi.LocationId, Name = wi.Location } }; if (!string.IsNullOrWhiteSpace(wi.SalespersonId)) wi.Salespersons = new StringKeyValue[] { new StringKeyValue() { Key = wi.SalespersonId, Value = wi.SalespersonName } }; if (wi.AdvisorId == "-1") { wi.AdvisorId = ""; wi.AdvisorName = ""; } list.Add(wi); } log.AppendLine("Process WorkOrders: " + (DateTime.Now - last).ToString()); last = DateTime.Now; string[] woTypes = wop.GetWorkOrderTypes(SystemParams.CompanyID); if (woTypes != null) woTypes = woTypes.OrderBy(m => m).ToArray(); log.AppendLine("GetWorkOrderTypes: " + (DateTime.Now - last).ToString()); last = DateTime.Now; List advs = new List(); var users = UserManagement.GetUsers(); foreach (var u in users.Where(u => u.ContactType == ContactTypes.Advisor)) { StringKeyValue kv = new StringKeyValue(); kv.Key = u.IID.ToLower(); kv.Value = u.DisplayName; advs.Add(kv); } log.AppendLine("GetUsers: " + (DateTime.Now - last).ToString()); last = DateTime.Now; var r = new { WorkOrders = list.OrderBy((m) => { int v = 0; if (int.TryParse(m.WorkOrderNumber, out v)) return m.WorkOrderNumber.PadLeft(50, '0'); else return m.WorkOrderNumber; }).ToArray(), WorkOrderStatus = wostatus.OrderBy(s => s.Name).ToArray(), WorkOrderTypes = woTypes, Advisors = advs.OrderBy((m) => m.Value).ToArray(), DeleteAndRestoreWorkOrder = wop.GetDeleteAndRestoreWorkOrder(SystemParams.CompanyID, p.SearchText) }; log.AppendLine("Process List: " + (DateTime.Now - last).ToString()); log.Insert(0, "Total: " + list.Count() + "; Time: " + (DateTime.Now - start).ToString()); //AddLog("Info", "WorkOrderBasePage.GetWorkOrders", session.User.ID, log.ToString()); return r; } else return null; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrders", ex.Message, ex.ToString()); return ex.Message; } } private object GetWorkOrderListItem() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); WorkOrderQueryParams p = JsonConvert.DeserializeObject(clientdata); WorkOrderListItem wo = null; wo = CreateClient().GetWorkOrderListItemById(SystemParams.CompanyID, p.WorkOrderID, p.Contacts, p.Statuses, p.OrderTypes, p.AssetGroups, p.SearchText, p.Completed, p.Locations, p.Departments, p.Advisors); if (wo == null) return null; WorkOrderStatus[] allwostatus = CreateClient().GetWorkOrderStatuses(SystemParams.CompanyID); WorkOrderStatus[] wostatus = allwostatus; if (session.User.ContactType == Foresight.Fleet.Services.User.ContactTypes.Technician) { wostatus = allwostatus.Where(m => m.TechniciansAvailable).ToArray(); } WorkOrderListItemClient wi = new WorkOrderListItemClient(); Helper.CloneProperty(wi, wo); if (wi.CreateDate != null) wi.CreateDate = wi.CreateDate.Value.Date; if (wi.LastCommunicationDate != null) wi.LastCommunicationDate = wi.LastCommunicationDate.Value.Date; var sel = allwostatus.FirstOrDefault(s => s.Id == wi.Status); if (sel != null) wi.WorkOrderStatus = new WorkOrderStatus[] { sel }; if (wi.AssignedTo == "-1") { wi.AssignedTo = ""; wi.AssignedToName = ""; } if (!string.IsNullOrWhiteSpace(wi.AssignedTo)) wi.AssignedToUsers = new UserInfo[] { new UserInfo() { IID = wi.AssignedTo, DisplayName = wi.AssignedToName } }; if (wi.DepartmentId > 0) wi.Departments = new DepartmentInfo[] { new DepartmentInfo() { Id = wi.DepartmentId, Name = wi.Department } }; if (wi.LocationId > 0) wi.Locations = new CustomerLocation[] { new CustomerLocation() { ID = wi.LocationId, Name = wi.Location } }; if (!string.IsNullOrWhiteSpace(wi.SalespersonId)) wi.Salespersons = new StringKeyValue[] { new StringKeyValue() { Key = wi.SalespersonId, Value = wi.SalespersonName } }; if (wi.AdvisorId == "-1") { wi.AdvisorId = ""; wi.AdvisorName = ""; } return wi; } else return null; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrders", ex.Message, ex.ToString()); return ex.Message; } } private object GetWorkOrderInfo() { try { if (GetCurrentLoginSession() != null) { var woid = Request.Form["ClientData"]; WorkOrderInfoClient woi = new WorkOrderInfoClient(); WorkOrderInfo wo = CreateClient().GetWorkOrderInfo(SystemParams.CompanyID, Convert.ToInt64(woid)); Helper.CloneProperty(woi, wo); if (woi.AssignedTo == "-1") { woi.AssignedTo = ""; woi.AssignedToName = ""; } if (woi.AdvisorId == "-1") { woi.AdvisorId = ""; woi.AdvisorName = ""; } List lsct = new List(); if (wo.Contacts != null && wo.Contacts.Length > 0) { var lang = GetLanguageCookie(); foreach (var pa in wo.Contacts) { ContactInfoClient item = new ContactInfoClient(); Helper.CloneProperty(item, pa); if ((int)item.ContactPreference == 0) item.ContactPreferenceStr = SystemParams.GetTextByKey(lang, "P_CR_TEXT", "Text"); else if ((int)item.ContactPreference == 1) item.ContactPreferenceStr = SystemParams.GetTextByKey(lang, "P_CR_EMAIL", "Email"); else if ((int)item.ContactPreference == 2) item.ContactPreferenceStr = SystemParams.GetTextByKey(lang, "P_CR_PHONE", "Phone"); lsct.Add(item); } woi.Contacts = lsct.ToArray(); } var asset = CreateClient().GetAssetBasicInfoByID(SystemParams.CompanyID, wo.AssetID); if (asset != null) { woi.VIN = asset.VIN; woi.AssetName = asset.DisplayName; woi.MakeName = asset.MakeName; woi.ModelName = asset.ModelName; woi.TypeName = asset.TypeName; } return woi; } else return new WorkOrderInfo(); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderInfo", ex.Message, ex.ToString()); return ex.Message; } } private object GetAlertsForWorkOrder()//获取当前WO已选和未选的的Alerts { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); string[] ps = JsonConvert.DeserializeObject(clientdata); var woid = ps[0]; var aid = ps[1]; long workorderid = Convert.ToInt64(woid); long assetid = Convert.ToInt64(aid); AlertManager am = new AlertManager(SystemParams.DataDbConnectionString); AlertInfo[] alerts = am.GetAlertsByWorkOrder(workorderid, session.User); AssetAlertItem[] aAlerts = CreateClient().GetNoneAssignedAlerts(SystemParams.CompanyID, assetid); List assetAlerts = new List(); if (aAlerts != null) { foreach (var aa in aAlerts) { AlertInfo ai = new AlertInfo(); ai.AlertID = aa.ID; ai.MachineID = aa.AssetID; ai.AlertType = aa.AlertType; ai.Description = aa.Description; ai.Description = ai.FormatDescription(ai.Description); ai.AlertTime_UTC = aa.AlertTime; ai.AlertLocalTime = aa.AlertLocalTime; ai.ServiceDescription = aa.ServiceDescription; assetAlerts.Add(ai); } } WorkorderAlerts wa = new WorkorderAlerts(); wa.Alerts = alerts; wa.AssetAlerts = assetAlerts.ToArray(); return wa; } else return null; } catch (Exception ex) { AddLog("ERROR", "AlertsBasePage.GetAlertsByWorkOrder", ex.Message, ex.ToString()); return ex.Message; } } private object GetOpenWorkOrderID() { try { if (GetCurrentLoginSession() != null) { var mid = Request.Form["ClientData"]; long aid = 0; long.TryParse(mid, out aid); var wos = CreateClient().GetWorkOrderItemsByAsset(SystemParams.CompanyID, aid); List wonumbers = new List(); foreach (var wo in wos) { if (!wo.Completed) wonumbers.Add(wo.WorkOrderNumber); } //WorkOrderManager workordermanager = new WorkOrderManager(SystemParams.DataDbConnectionString); //long[] workorderids = workordermanager.GetOpenWorkOrderID(mid); string ids = string.Join(", ", wonumbers); ids = mid + "|" + ids; return ids; } else return ""; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetOpenWorkOrderID", ex.Message, ex.ToString()); return ex.Message; } } private object SaveWorkOrder() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"].Split((char)170); var workorderitem = HttpUtility.HtmlDecode(clientdata[0]); var ids = HttpUtility.HtmlDecode(clientdata[1]); long[] alertids = JsonConvert.DeserializeObject(ids); var woc = JsonConvert.DeserializeObject(workorderitem); if (woc.Completed) { if (woc.CompleteDate == null) woc.CompleteDate = DateTime.Now; } else woc.CompleteDate = null; long workorderid = woc.Id; string wonumber = woc.WorkOrderNumber; var woclient = CreateClient(SystemParams.CompanyID); if (woc.Id == -1) { //contacts if (woc.CustomerId > 0 && woc.ContactsClient != null && woc.ContactsClient.Length > 0) { var client = CreateClient(); for (int i = 0; i < woc.ContactsClient.Length; i++) { var contact = woc.ContactsClient[i]; if (contact.SaveToCustomer > 0) { Foresight.Fleet.Services.Partner.ContactInfo pContact = new Foresight.Fleet.Services.Partner.ContactInfo(); Helper.CloneProperty(pContact, contact); pContact.Active = true; if (contact.Id > 0) client.UpdateContact(SystemParams.CompanyID, woc.CustomerId, pContact); else { contact.Id = (int)client.AddContact(SystemParams.CompanyID, woc.CustomerId, pContact); woc.Contacts[i].Id = contact.Id; } } } } WorkOrderInfo wo = new WorkOrderInfo(); Helper.CloneProperty(wo, woc); workorderid = woclient.AddNewWorkOrder(SystemParams.CompanyID, wo, alertids); wonumber = workorderid.ToString();//2021-10-20 新增时wonumber默认为woid //followers if (woc.Followers != null) { woclient.AddWorkOrderFollower(SystemParams.CompanyID, workorderid, woc.Followers); } } else { WorkOrderInfo wo = new WorkOrderInfo(); Helper.CloneProperty(wo, woc); WorkOrderInfo oldwo = woclient.GetWorkOrderInfo(SystemParams.CompanyID, workorderid); var user = UserManagement.GetUserByIID(session.User.UID); bool reopenworkorders = CheckRight(SystemParams.CompanyID, Foresight.Fleet.Services.User.Feature.REOPENWORKORDERS); if (oldwo.Completed && user.UserType < UserTypes.Admin && !reopenworkorders) { return "You cannot edit a Completed Work Order."; } wo.WorkOrderNumber = oldwo.WorkOrderNumber; woclient.UpdateWorkOrder(SystemParams.CompanyID, wo); wonumber = oldwo.WorkOrderNumber; } return new string[] { workorderid.ToString(), wonumber }; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object UpdateWorkOrder() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); clientdata = HttpUtility.HtmlDecode(clientdata); var wo = JsonConvert.DeserializeObject(clientdata); if (wo.Completed) { if (wo.CompleteDate == null) wo.CompleteDate = DateTime.Now; } else wo.CompleteDate = null; CreateClient().UpdateWorkOrderList(SystemParams.CompanyID, wo); WorkOrderInfoClient woc = new WorkOrderInfoClient(); Helper.CloneProperty(woc, wo); return woc; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object GetWorkOrderContacts() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long woid = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); var client = CreateClient(); Foresight.Fleet.Services.AssetHealth.WorkOrder.ContactInfo[] items = client.GetWorkOrderContacts(SystemParams.CompanyID, woid); if (items == null || items.Length == 0) return new ContactInfoClient[0]; List lsct = new List(); if (items != null && items.Length > 0) { var lang = GetLanguageCookie(); foreach (var pa in items) { ContactInfoClient item = new ContactInfoClient(); Helper.CloneProperty(item, pa); if ((int)item.ContactPreference == 0) item.ContactPreferenceStr = SystemParams.GetTextByKey(lang, "P_CR_TEXT", "Text"); else if ((int)item.ContactPreference == 1) item.ContactPreferenceStr = SystemParams.GetTextByKey(lang, "P_CR_EMAIL", "Email"); else if ((int)item.ContactPreference == 2) item.ContactPreferenceStr = SystemParams.GetTextByKey(lang, "P_CR_PHONE", "Phone"); lsct.Add(item); } } return lsct.ToArray(); } else return new ContactInfoClient[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderContacts", ex.Message, ex.ToString()); return ex.Message; } } private object SaveWorkOrderContact() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); var p = JsonConvert.DeserializeObject(clientdata); long woid = Convert.ToInt64(p[0]); int customerid = Convert.ToInt32(p[1]); Foresight.Fleet.Services.AssetHealth.WorkOrder.ContactInfo[] contacts = JsonConvert.DeserializeObject(p[2]); ContactInfoClient[] contactsclient = JsonConvert.DeserializeObject(p[2]); //contacts if (customerid > 0 && contactsclient != null && contactsclient.Length > 0) { var client = CreateClient(); for (int i = 0; i < contactsclient.Length; i++) { var contact = contactsclient[i]; if (contact.SaveToCustomer > 0) { Foresight.Fleet.Services.Partner.ContactInfo pContact = new Foresight.Fleet.Services.Partner.ContactInfo(); Helper.CloneProperty(pContact, contact); pContact.Active = true; if (contact.Id > 0) client.UpdateContact(SystemParams.CompanyID, customerid, pContact); else { contact.Id = (int)client.AddContact(SystemParams.CompanyID, customerid, pContact); contacts[i].Id = contact.Id; } } } } CreateClient().SaveWorkOrderContact(SystemParams.CompanyID, woid, customerid, contacts); return contacts; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object SaveWorkOrderFollower() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); var p = JsonConvert.DeserializeObject(clientdata); long woid = Convert.ToInt64(p[0]); WorkOrderFollowerInfo[] followers = JsonConvert.DeserializeObject(p[1]); CreateClient().AddWorkOrderFollower(SystemParams.CompanyID, woid, followers); return "OK"; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object DeleteWorkOrderFollower() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; int id = Convert.ToInt32(HttpUtility.HtmlDecode(clientdata)); CreateClient().DeleteWorkOrderFollower(SystemParams.CompanyID, id); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object DeleteWorkOrder() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long id = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); CreateClient().DeleteWorkOrder(SystemParams.CompanyID, id, string.Empty); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object RestoreDeleteWorkOrder() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long id = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); CreateClient().RestoreDeleteWorkOrder(SystemParams.CompanyID, id); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object GetCustomerContacts() { try { var session = GetCurrentLoginSession(); if (session != null) { string custid = Request.Form["ClientData"]; custid = HttpUtility.HtmlDecode(custid); Foresight.Fleet.Services.Partner.ContactInfo[] contacts = CreateClient().GetContacts(SystemParams.CompanyID, int.Parse(custid)).Where(m => m.Active).ToArray(); if (contacts == null || contacts.Length == 0) return new Foresight.Fleet.Services.Partner.ContactInfo[0]; var lang = GetLanguageCookie(); List ls = new List(); foreach (var pa in contacts) { ContactInfoClient item = new ContactInfoClient(); Helper.CloneProperty(item, pa); if ((int)item.ContactPreference == 0) item.ContactPreferenceStr = SystemParams.GetTextByKey(lang, "P_CR_TEXT", "Text"); else if ((int)item.ContactPreference == 1) item.ContactPreferenceStr = SystemParams.GetTextByKey(lang, "P_CR_EMAIL", "Email"); else if ((int)item.ContactPreference == 2) item.ContactPreferenceStr = SystemParams.GetTextByKey(lang, "P_CR_PHONE", "Phone"); ls.Add(item); } return ls.ToArray(); } else return new ContactInfoClient[0]; } catch (Exception ex) { return ex.Message; } } private UserInfo[] GetContacts() { var session = GetCurrentLoginSession(); UserInfo[] users = null; if (GetCurrentLoginSession() != null) { var clientdata = Request.Form["ClientData"]; string[] ps = JsonConvert.DeserializeObject(clientdata); long assetid = 0; int locid = 0; int depid = 0; long.TryParse(ps[0], out assetid); int.TryParse(ps[1], out locid); int.TryParse(ps[2], out depid); users = UserManagement.GetWorkOrderAssignToUsers(session.SessionID, SystemParams.CompanyID, assetid, locid, depid); return users; } else { users = new UserInfo[0]; } return users; } private object GetMachines() { var session = GetCurrentLoginSession(); MachineItem[] machines = null; if (GetCurrentLoginSession() != null) { //machines = MachineManagement.GetMachines(session.SessionID, session.User.UID, ""); var items = CreateClient(SystemParams.CompanyID).GetAssetListItemsByUser(SystemParams.CompanyID, session.User.UID, "", false, 0, true, null, null, null); return items.Select(i => new { i.Id, i.VIN, i.MakeName, i.ModelName, i.TypeName, i.OnRoad, EngineHours = Math.Round(i.EngineHours ?? 0, 2), Odometer = Math.Round(i.Odometer ?? 0, 2), DisplayName = GetDisplayName(i) }).OrderBy(g => g.DisplayName).ToArray(); } else { machines = new MachineItem[0]; } return machines.Where(m => m.Hide == false).OrderBy(m => m.DisplayName).ToArray(); } private string GetDisplayName(AssetListItemInfo a) { //Name取值顺序为Name2,Name,VIN,ID用于前端显示 string name = a.Name2; if (string.IsNullOrWhiteSpace(name)) name = a.Name; if (string.IsNullOrWhiteSpace(name)) name = a.VIN; if (string.IsNullOrWhiteSpace(name)) name = a.Id.ToString(); return name; } private object GetAssetDetailInfo() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"].Split((char)170); var custid = HttpUtility.HtmlDecode(clientdata[0]); var assetidstr = HttpUtility.HtmlDecode(clientdata[1]); long assetid = -1; long.TryParse(assetidstr, out assetid); if (string.IsNullOrWhiteSpace(custid)) custid = SystemParams.CompanyID; AssetDetailInfo info = CreateClient(custid).GetAssetDetailInfo(custid, assetid); return info; } else return null; } catch (Exception ex) { return ex.Message; } } private object GetNoneAssignedAlerts() { try { if (GetCurrentLoginSession() != null) { var id = Request.Form["ClientData"]; long assetid = Convert.ToInt64(id); AssetAlertItem[] alerts = CreateClient().GetNoneAssignedAlerts(SystemParams.CompanyID, assetid); if (alerts == null || alerts.Length == 0) return new AssetAlertInfo[0]; List list = new List(); foreach (AssetAlertItem alert in alerts) { AssetAlertInfo ai = new AssetAlertInfo(); Helper.CloneProperty(ai, alert); ai.Description = ai.FormatDescription(ai.Description); ai.AlertTime = ai.AlertTime.ToLocalTime(); ai.CompletedDate = ai.AlertTime.ToLocalTime(); list.Add(ai); } return list.ToArray(); } else return new AssetAlertInfo[0]; } catch (Exception ex) { AddLog("ERROR", "AlertsBasePage.GetNoneAssignedAlerts", ex.Message, ex.ToString()); return ex.Message; } } private object GetPMSchedulesByAsset() { try { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); long assetid = 0; long.TryParse(clientdata, out assetid); var client = CreateClient(session.SessionID); PMScheduleItem[] pms = client.GetPMScheduleItemsByAssetID(SystemParams.CompanyID, assetid, "", string.Empty, false); if (pms == null) return new PMScheduleItem[0]; return pms; } return new PMScheduleItem[0]; } catch (Exception ex) { AddLog("ERROR", "AssetBasePage.GetPmSchedules", ex.Message, ex.ToString()); return ex.Message; } } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetAssetSchedules", ex.Message, ex.ToString()); return ex.Message; } } private object GenerateManualPMAlerts() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"]; string[] ps = JsonConvert.DeserializeObject(clientdata); long assetid = 0; long.TryParse(ps[0], out assetid); long woid = 0; long.TryParse(ps[1], out woid); string[] scheduleids = JsonConvert.DeserializeObject(ps[2]); var client = CreateClient(); PMAlertResult[] rs = client.GenerateManualPMAlerts(SystemParams.CompanyID, assetid, woid, scheduleids, session.User.UID); return rs; } else return new string[0]; } catch (Exception ex) { return ex.Message; } } private object AddOrRemoveAlertsFromWorkOrder() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"].Split((char)170); var woid = HttpUtility.HtmlDecode(clientdata[0]); var ids = HttpUtility.HtmlDecode(clientdata[1]); var isaddstr = HttpUtility.HtmlDecode(clientdata[2]); bool isadd = Helper.IsTrue(isaddstr); long[] alertids = JsonConvert.DeserializeObject(ids); CreateClient().AddOrRemoveAlertsFromWorkOrder(SystemParams.CompanyID, Convert.ToInt64(woid), alertids, isadd); return "OK"; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object UpdateCommunicationAcknowledged() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long id = Convert.ToInt64(ps[0]); bool check = Helper.IsTrue(ps[1]); CreateClient().UpdateCommunicationAcknowledged(SystemParams.CompanyID, id, check); return "OK"; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object UpdateEstimateAcknowledged() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long id = Convert.ToInt64(ps[0]); bool check = Helper.IsTrue(ps[1]); CreateClient().UpdateEstimateAcknowledged(SystemParams.CompanyID, id, check); return "OK"; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object GetComponents() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); int t = 0; int.TryParse(clientdata, out t); var woc = CreateClient().GetComponents(SystemParams.CompanyID, t); return woc; } else return new SegmentClient(); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetComponents", ex.Message, ex.ToString()); return ex.Message; } } private object GetJobsites() { try { var session = GetCurrentLoginSession(); if (session != null) { var jss = CreateClient().GetJobSiteItems(SystemParams.CompanyID, "", false); List list = new List(); foreach (var js in jss) { JobSiteViewItem item = new JobSiteViewItem(); item.ID = js.ID; item.Name = js.Name; list.Add(item); } return list; } else return new SegmentClient(); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetJobsites", ex.Message, ex.ToString()); return ex.Message; } } private object GetSalespersons() { try { var session = GetCurrentLoginSession(); if (session != null) { var users = CreateClient().GetUsersByCustomerID(SystemParams.CompanyID, ""); List list = new List(); foreach (var user in users) { if (!user.Active) continue; StringKeyValue kv = new StringKeyValue(); kv.Key = user.UID; kv.Value = user.Name; list.Add(kv); } return list.ToArray(); } else return new StringKeyValue[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetSalespersons", ex.Message, ex.ToString()); return ex.Message; } } private object GetInspectionTemplateItems() { try { var session = GetCurrentLoginSession(); if (session != null) { var templates = CreateClient().GetAssetTemplateItems(SystemParams.CompanyID, "", -1, -1, -1, session.User.UID, 1); List list = new List(); foreach (var temp in templates) { StringKeyValue kv = new StringKeyValue(); kv.Key = temp.Id.ToString(); kv.Value = temp.Name; list.Add(kv); } return list.ToArray(); } else return new StringKeyValue[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetAssetTemplateItems", ex.Message, ex.ToString()); return ex.Message; } } #region Segment private object GetSegmentDataSource() { try { var session = GetCurrentLoginSession(); if (session != null) { SegmentClient client = new SegmentClient(); client.Users = UserManagement.GetUsers(); if (client.Users == null) client.Users = new UserInfo[0]; var jss = CreateClient().GetJobSiteItems(SystemParams.CompanyID, "", false); List list = new List(); foreach (var js in jss) { JobSiteViewItem item = new JobSiteViewItem(); item.ID = js.ID; item.Name = js.Name; list.Add(item); } client.JobSites = list.ToArray(); if (client.JobSites == null) client.JobSites = new JobSiteViewItem[0]; var wop = CreateClient(); client.Components = wop.GetComponents(SystemParams.CompanyID, 0); client.SegmentTypes = wop.GetSegmentTypes(SystemParams.CompanyID); return client; } else return new SegmentClient(); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetSegmentDataSource", ex.Message, ex.ToString()); return ex.Message; } } private object GetSegmentDataSource1() { try { var session = GetCurrentLoginSession(); if (session != null) { SegmentClient client = new SegmentClient(); var wop = CreateClient(); client.Components = wop.GetComponents(SystemParams.CompanyID, 0); client.SegmentTypes = wop.GetSegmentTypes(SystemParams.CompanyID); return client; } else return new SegmentClient(); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetSegmentDataSource", ex.Message, ex.ToString()); return ex.Message; } } private object GetSegments() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long woid = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); WorkOrderSegmentInfo[] segments = CreateClient().GetSegments(SystemParams.CompanyID, woid); if (segments == null || segments.Length == 0) return new SegmentInfo[0]; List list = new List(); foreach (WorkOrderSegmentInfo se in segments) { SegmentInfo si = new SegmentInfo(); Helper.CloneProperty(si, se); si.SegmentID = se.Id; list.Add(si); } return list.ToArray(); } else return new SegmentInfo[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetSegments", ex.Message, ex.ToString()); return ex.Message; } } private object SaveSegment() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); SegmentInfo si = JsonConvert.DeserializeObject(clientdata); WorkOrderSegmentInfo segment = new WorkOrderSegmentInfo(); Helper.CloneProperty(segment, si); segment.Id = si.SegmentID; if (segment.CompletedDate != null) segment.Completed = true; if (segment.Id == -1) { segment.Id = CreateClient().AddNewSegment(SystemParams.CompanyID, segment); } else { CreateClient().UpdateSegment(SystemParams.CompanyID, segment); } return segment.Id; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object DeleteSegment() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; int id = Convert.ToInt32(HttpUtility.HtmlDecode(clientdata)); CreateClient().DeleteSegment(SystemParams.CompanyID, id, string.Empty); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } #endregion #region Attachment private object GetAttachments() { try { if (GetCurrentLoginSession() != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); string[] ps = JsonConvert.DeserializeObject(clientdata); long woid = Convert.ToInt64(ps[0]); long assetid = Convert.ToInt64(ps[1]); WOAttachments attas = new WOAttachments(); var wop = CreateClient(); AssetDocumentInfo[] aatts = CreateClient().GetAssetDocuments(SystemParams.CompanyID, assetid).Where(m => m.VisibleOnWorkOrder == true).ToArray(); //WorkOrderAttachmentInfo[] aatts = wop.GetAssetAttachementsAvailbleOnWorkOrder(SystemParams.CompanyID, assetid); WorkOrderAttachmentInfo[] woatts = wop.GetWorkOrderAttachments(SystemParams.CompanyID, woid, false); MediaInfo[] iatts = wop.GetWOInspectMedias(SystemParams.CompanyID, woid); List list = new List(); foreach (AssetDocumentInfo att in aatts) { WorkOrderAttachmentItem item = new WorkOrderAttachmentItem(); item.FileName = att.Name; item.FileType = att.FileType; item.AttachmentId = att.Id; item.AttachmentIdStr = att.Id.ToString(); item.AttachmentType = 1; item.Url = att.Url; list.Add(item); } attas.AssetAttachments = list.OrderBy(m => m.AddedOnLocal).ToArray(); list.Clear(); foreach (WorkOrderAttachmentInfo att in woatts) { WorkOrderAttachmentItem item = new WorkOrderAttachmentItem(); Helper.CloneProperty(item, att); item.AttachmentIdStr = att.AttachmentId.ToString(); item.AttachmentType = 2; item.Extensions = new List(); item.AvailableToCustomer = false; if (att.Extensions.Count > 0) { var ext = att.Extensions.First(m => m.Key == "1"); if (ext != null) item.AvailableToCustomer = Helper.IsTrue(ext.Value); } list.Add(item); } attas.WorkOrderAttachments = list.OrderBy(m => m.AddedOnLocal).ToArray(); list.Clear(); foreach (MediaInfo att in iatts) { WorkOrderAttachmentItem item = new WorkOrderAttachmentItem(); item.FileName = att.FileName; item.FileType = att.FileType; item.AttachmentIdStr = att.Id; item.AttachmentType = 3; item.Url = att.Url; item.ThumbnailUrl = att.ThumbnailUrl; list.Add(item); } attas.InspectionAttachments = list.OrderBy(m => m.AddedOnLocal).ToArray(); return attas; } else return null; } catch (Exception ex) { return ex.Message; } } private object AddAttachment() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); string[] ps = JsonConvert.DeserializeObject(clientdata); long woid = Convert.ToInt64(ps[0]); string notes = HttpUtility.UrlDecode(ps[1]); HttpPostedFile uploadFile = null; byte[] iconfilebyte = null; if (Request.Files.Count > 0) { uploadFile = Request.Files[0]; iconfilebyte = ConvertFile2bytes(uploadFile); } string filename = uploadFile == null ? "" : uploadFile.FileName; long attid = CreateClient().AddWorkOrderAttachment(SystemParams.CompanyID, Convert.ToInt64(woid), filename, notes, iconfilebyte); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object DeleteAttachment() { try { var session = GetCurrentLoginSession(); if (session != null) { string attachid = HttpUtility.HtmlDecode(Request.Form["ClientData"]); CreateClient().DeleteWorkOrderAttachment(SystemParams.CompanyID, Convert.ToInt64(attachid)); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object UpdateWOAttachmentExtension() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long attid = Convert.ToInt64(ps[0]); AttachmentExtensionInfo ext = JsonConvert.DeserializeObject(ps[1]); CreateClient().UpdateWOAttachmentExtension(SystemParams.CompanyID, attid, ext); return "OK"; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object UpdateWorkOrderAttachmentCaption() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long attid = Convert.ToInt64(ps[0]); string caption = ps[1]; CreateClient().UpdateWorkOrderAttachmentCaption(SystemParams.CompanyID, attid, caption); return "OK"; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object UpdateInspectionVisibleToCustomer() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); string id = ps[0]; bool check = Helper.IsTrue(ps[1]); CreateClient().UpdateInspectionVisibleToCustomer(SystemParams.CompanyID, id, check); return "OK"; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } #endregion #region WorkOrder Status private object GetWorkOrderStatuses() { try { var session = GetCurrentLoginSession(); if (session != null) { var items = CreateClient().GetWorkOrderStatuses(SystemParams.CompanyID); if (session.User.ContactType == Foresight.Fleet.Services.User.ContactTypes.Technician) { items = items.Where(m => m.TechniciansAvailable).ToArray(); } return items; } else return null; } catch (Exception ex) { return ex.Message; } } private object SaveWorkOrderStatus() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); WorkOrderStatus status = JsonConvert.DeserializeObject(clientdata); if (status.Id == -1) { CreateClient().AddWorkOrderStatus(SystemParams.CompanyID, status); } else { if (status.Id == 100 && status.StatusType != 100) return "Failed"; CreateClient().UpdateWorkOrderStatus(SystemParams.CompanyID, status); } return new string[0]; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object DeleteWorkOrderStatus() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; int id = Convert.ToInt32(HttpUtility.HtmlDecode(clientdata)); if (id != 100) CreateClient().DeleteWorkOrderStatus(SystemParams.CompanyID, id); return new string[0]; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private string UpdateWOStatusTechniciansAvailable() { try { var user = GetCurrentUser(); if (user != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); StringKeyValue kv = JsonConvert.DeserializeObject(clientdata); int id = Convert.ToInt32(kv.Key); bool techniciansavailable = Helper.IsTrue(kv.Value); CreateClient().UpdateWOStatusTechniciansAvailable(SystemParams.CompanyID, id, techniciansavailable); return "OK"; } else { return "Failed"; } } catch (Exception ex) { return ex.Message; } } private string UpdateWOStatusAutoText() { try { var user = GetCurrentUser(); if (user != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); StringKeyValue kv = JsonConvert.DeserializeObject(clientdata); int id = Convert.ToInt32(kv.Key); bool autotext = Helper.IsTrue(kv.Value); CreateClient().UpdateWOStatusAutoText(SystemParams.CompanyID, id, autotext); return "OK"; } else { return "Failed"; } } catch (Exception ex) { return ex.Message; } } private string UpdateWOStatusType() { try { var user = GetCurrentUser(); if (user != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); StringKeyValue kv = JsonConvert.DeserializeObject(clientdata); int id = Convert.ToInt32(kv.Key); int statustype = Convert.ToInt32(kv.Value); if (id == 100 && statustype != 100) return "Failed"; CreateClient().UpdateWOStatusType(SystemParams.CompanyID, id, statustype); return "OK"; } else { return "Failed"; } } catch (Exception ex) { return ex.Message; } } private string UpdateWODefaultOnOpen() { try { var user = GetCurrentUser(); if (user != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); StringKeyValue kv = JsonConvert.DeserializeObject(clientdata); int id = Convert.ToInt32(kv.Key); int statustype = Convert.ToInt32(kv.Value); CreateClient().UpdateWODefaultOnOpen(SystemParams.CompanyID, id, statustype); return "OK"; } else { return "Failed"; } } catch (Exception ex) { return ex.Message; } } #endregion #region Send Email private object GetMachineContacts() { try { var session = GetCurrentLoginSession(); if (session != null) { var assetid = Request.Form["ClientData"]; var users = UserManagement.GetUsersByAssetID(session.SessionID, Convert.ToInt64(assetid), SystemParams.CompanyID); foreach (var u in users) { u.Mobile = Foresight.Standard.PhoneNumber.PreparePhonenumber(u.Mobile); } return UserManagement.GetUsersByAssetID(session.SessionID, Convert.ToInt64(assetid), SystemParams.CompanyID); } else return new UserInfo[0]; } catch (Exception ex) { return ex.Message; } } private object SendWorkOrder() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"].Split((char)170); var woidstr = HttpUtility.HtmlDecode(clientdata[0]); var address = HttpUtility.HtmlDecode(clientdata[1]); var desc = HttpUtility.HtmlDecode(clientdata[2]); Foresight.Standard.StringKeyValue[] emailaddress = JsonConvert.DeserializeObject(address); if (emailaddress == null || emailaddress.Length == 0) return "Failed"; long woid = Convert.ToInt64(woidstr); string absuri = Context.Request.Url.AbsoluteUri; string wourl = absuri.Substring(0, absuri.LastIndexOf("/Maintenance", StringComparison.OrdinalIgnoreCase)); wourl = wourl + "/jump.aspx?p=" + Convert.ToBase64String(Encoding.UTF8.GetBytes("jt=woe;woid=" + woid)); CreateClient().SendWorkOrderEmail(SystemParams.CompanyID, woid, desc, wourl, emailaddress); return "OK"; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } #endregion private object GetFilterDataSource() { try { var session = GetCurrentLoginSession(); if (session != null) { FilterDataSourceItem item = new FilterDataSourceItem(); var groups = MachineManagement.GetMachineGroupsByUser(session.User.UID, null); List list = new List(); foreach (var gp in groups) { StringKeyValue kv = new StringKeyValue(); kv.Key = gp.GroupID; kv.Value = gp.GroupName; list.Add(kv); } item.AssetGroups = list.OrderBy((m) => m.Value).ToArray(); var client = CreateClient(); CustomerLocation[] alllocs = client.GetLocations(SystemParams.CompanyID); var plocs = alllocs.Where(d => d.PId <= 0).OrderBy(d => d.Name); List resultlocs = new List(); foreach (var ploc in plocs) { resultlocs.Add(ploc); resultlocs.AddRange(alllocs.Where(d => d.PId == ploc.ID).OrderBy(d => d.Name)); } item.Locations = resultlocs.ToArray(); DepartmentInfo[] alldeps = client.GetAllDepartments(SystemParams.CompanyID); var pdeps = alldeps.Where(d => d.PId <= 0).OrderBy(d => d.Name); List result = new List(); foreach (var pdep in pdeps) { result.Add(pdep); result.AddRange(alldeps.Where(d => d.PId == pdep.Id).OrderBy(d => d.Name)); } item.Departments = result.ToArray(); List adep = new List(); var users = UserManagement.GetUsers(); foreach (var u in users.Where(u => u.ContactType == ContactTypes.Advisor)) { StringKeyValue kv = new StringKeyValue(); kv.Key = u.IID.ToLower(); kv.Value = u.DisplayName; adep.Add(kv); } item.Advisors = adep.OrderBy((m) => m.Value).ToArray(); List otypes = new List(); var wop = CreateClient(); string[] woTypes = wop.GetWorkOrderTypes(SystemParams.CompanyID); foreach (var t in woTypes) { StringKeyValue kv = new StringKeyValue(); kv.Key = t; kv.Value = t; otypes.Add(kv); } item.OrderTypes = otypes.OrderBy((m) => m.Value).ToArray(); List statuses = new List(); var wostatuses = wop.GetWorkOrderStatuses(SystemParams.CompanyID); foreach (var s in wostatuses) { StringKeyValue kv = new StringKeyValue(); kv.Key = s.Id.ToString(); kv.Value = s.Name; statuses.Add(kv); } item.Statuses = statuses.OrderBy((m) => m.Value).ToArray(); return item; } else return new FilterDataSourceItem(); } catch (Exception ex) { return ex.Message; } } private object GetLocationsAndDepartments() { try { var session = GetCurrentLoginSession(); if (session != null) { FilterDataSourceItem item = new FilterDataSourceItem(); var client = CreateClient(); CustomerLocation[] alllocs = client.GetLocations(SystemParams.CompanyID); var plocs = alllocs.Where(d => d.PId <= 0).OrderBy(d => d.Name); List resultlocs = new List(); foreach (var ploc in plocs) { resultlocs.Add(ploc); resultlocs.AddRange(alllocs.Where(d => d.PId == ploc.ID).OrderBy(d => d.Name)); } item.Locations = resultlocs.ToArray(); DepartmentInfo[] alldeps = client.GetAllDepartments(SystemParams.CompanyID); var pdeps = alldeps.Where(d => d.PId <= 0).OrderBy(d => d.Name); List result = new List(); foreach (var pdep in pdeps) { result.Add(pdep); result.AddRange(alldeps.Where(d => d.PId == pdep.Id).OrderBy(d => d.Name)); } item.Departments = result.ToArray(); return item; } else return new FilterDataSourceItem(); } catch (Exception ex) { return ex.Message; } } private object GetDepartments() { try { var session = GetCurrentLoginSession(); if (session != null) { var client = CreateClient(); DepartmentInfo[] alldeps = client.GetAllDepartments(SystemParams.CompanyID); var pdeps = alldeps.Where(d => d.PId <= 0).OrderBy(d => d.Name); List result = new List(); foreach (var pdep in pdeps) { result.Add(pdep); result.AddRange(alldeps.Where(d => d.PId == pdep.Id).OrderBy(d => d.Name)); } return result.ToArray(); } else return new DepartmentInfo[0]; } catch (Exception ex) { return ex.Message; } } private object GetLocations() { try { var session = GetCurrentLoginSession(); if (session != null) { var client = CreateClient(); CustomerLocation[] alllocs = client.GetLocations(SystemParams.CompanyID); var plocs = alllocs.Where(d => d.PId <= 0).OrderBy(d => d.Name); List result = new List(); foreach (var ploc in plocs) { result.Add(ploc); result.AddRange(alllocs.Where(d => d.PId == ploc.ID).OrderBy(d => d.Name)); } return result.ToArray(); } else return new CustomerLocation[0]; } catch (Exception ex) { return ex.Message; } } private string SetWorkOrderDefault() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); UserParams.SetStringParameter(session.User.UID, "WorkOrderDefault", clientdata); return "OK"; } else { return "Failed"; } } catch (Exception ex) { return ex.Message; } } private object GetWorkOrderDefault() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); string value = UserParams.GetStringParameter(session.User.UID, "WorkOrderDefault"); WorkOrderDefaultItem item = null; try { if (!string.IsNullOrEmpty(value)) item = JsonConvert.DeserializeObject(value); } catch { } return item; } else return null; } catch (Exception ex) { return ex.Message; } } private string SetWorkOrderCollapsed() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); UserParams.SetStringParameter(session.User.UID, "WorkOrderCollapsed", clientdata); return "OK"; } else { return "Failed"; } } catch (Exception ex) { return ex.Message; } } private object GetWorkOrderCollapsed() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); string value = UserParams.GetStringParameter(session.User.UID, "WorkOrderCollapsed"); StringKeyValue[] data = null; if (!string.IsNullOrEmpty(value)) data = JsonConvert.DeserializeObject(value); return data; } else return null; } catch (Exception ex) { return ex.Message; } } private object GetInvoiceNumber() { try { if (GetCurrentLoginSession() != null) { var woid = Request.Form["ClientData"]; return new WorkOrderManager(SystemParams.DataDbConnectionString).GetInvoiceNumber(woid); } else return new string[0]; } catch (Exception ex) { return ex.Message; } } private object GetComments() { try { var session = GetCurrentLoginSession(); if (session != null) { var woid = Request.Form["ClientData"]; var comments = CreateClient().GetComments(SystemParams.CompanyID, Convert.ToInt64(woid)); List list = new List(); foreach (var c in comments) { CommentItem citem = new CommentItem(); Helper.CloneProperty(citem, c); citem.FormatFollowUp(); list.Add(citem); } return list.OrderBy(m => m.SubmitLocalDate).ToArray(); } else return new CommentItem[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetComments", ex.Message, ex.ToString()); return ex.Message; } } private object AddWorkOrderComment() { try { var user = GetCurrentUser(); if (user != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long woid = Convert.ToInt64(ps[0]); string comment = ps[1]; CreateClient().SubmitComment(SystemParams.CompanyID, woid, comment, false, null); } return ""; } catch (Exception ex) { return ex.Message; } } private object SendInternalComments() { try { var user = GetCurrentUser(); if (user != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long woid = Convert.ToInt64(ps[0]); string comment = ps[1]; StringKeyValue[] emailaddress = JsonConvert.DeserializeObject(ps[2]); StringKeyValue[] phonenumbers = JsonConvert.DeserializeObject(ps[3]); var wo = CreateClient().GetWorkOrderInfo(SystemParams.CompanyID, woid); var lang = GetLanguageCookie(); string title = SystemParams.GetTextByKey(lang, "P_WO_INTERNALCOMMUNICATIONADDED", "Internal communication added"); string won = wo.WorkOrderNumber; if (string.IsNullOrWhiteSpace(won)) won = string.Format("WO {0}", woid); title = string.Format("{0}: {1}", won, title); string[] eaddress = emailaddress.Select(m => m.Value).ToArray(); string[] pns = phonenumbers.Select(m => m.Value).ToArray(); List followup = new List(); followup.AddRange(eaddress); followup.AddRange(pns); var client = CreateClient(); client.SubmitComment(SystemParams.CompanyID, woid, comment, false, string.Join(";", followup)); if (emailaddress != null && emailaddress.Length > 0) { string ecomment = comment.Replace("\r\n", "
").Replace("\n", "
"); ecomment = string.Format("{0} {1}

{2}", user.DisplayName, DateTime.Now.ToString(), ecomment); CreateClient().SendWorkOrderCommentEmail(SystemParams.CompanyID, woid, title, ecomment, eaddress, user.IID); } if (phonenumbers != null && phonenumbers.Length > 0) { string pnStr = string.Join(";", pns); System.Threading.ThreadPool.QueueUserWorkItem((object obj) => { try { client.SendInternalTextMessage(SystemParams.CompanyID, woid, pnStr, pns, comment, false); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.SendInternalComments.SendTextMessage", ex.Message, ex.ToString()); } }); } } return ""; } catch (Exception ex) { return ex.Message; } } private object GetCommunications() { try { var session = GetCurrentLoginSession(); if (session != null) { var woid = Request.Form["ClientData"]; var msgs = CreateClient().GetTextMessages(SystemParams.CompanyID, Convert.ToInt64(woid)); List list = new List(); foreach (var c in msgs) { TextMessageClient citem = new TextMessageClient(); Helper.CloneProperty(citem, c); citem.Participator.AddRange(c.Participator); list.Add(citem); } return list.ToArray(); } else return new TextMessageClient[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetCommunications", ex.Message, ex.ToString()); return ex.Message; } } private object AddWorkOrderCommunication() { try { var user = GetCurrentUser(); if (user != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long woid = Convert.ToInt64(ps[0]); StringKeyValue[] phs = JsonConvert.DeserializeObject(ps[1]); string msg = ps[2]; bool includeStatusLink = ps[3] == "1"; var client = CreateClient(); if (phs != null && phs.Length > 0) { string[] pns = phs.Select(m => m.Key).ToArray(); string[] pnvlues = phs.Select(m => m.Value).ToArray(); string pnStr = string.Join(";", pns); System.Threading.ThreadPool.QueueUserWorkItem((object obj) => { try { client.SendTextMessage(SystemParams.CompanyID, woid, pnStr, pnvlues, msg, includeStatusLink); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.AddWorkOrderCommunication.SendTextMessage", ex.Message, ex.ToString()); } }); } //foreach (var pm in phonenumbers) //{ // client.SendTextMessage(SystemParams.CompanyID, woid, pm, msg); //} } return ""; } catch (Exception ex) { return ex.Message; } } private object GetWOInspectItems() { try { var sesstion = GetCurrentLoginSession(); if (sesstion != null) { var clientdata = Request.Form["ClientData"]; string[] ps = JsonConvert.DeserializeObject(clientdata); long woid = 0; long assetid = 0; long.TryParse(ps[0], out woid); long.TryParse(ps[1], out assetid); var client = CreateClient(); AssetInspectItem[] insplectitems = client.GetWOInspectItems(SystemParams.CompanyID, woid); if (insplectitems == null || insplectitems.Length == 0) return new AssetInspectInfo[0]; List list = new List(); foreach (AssetInspectItem item in insplectitems) { AssetInspectInfo inspect = new AssetInspectInfo(); Helper.CloneProperty(inspect, item); list.Add(inspect); } if (list.Count > 0) { WorkOrderListItem[] wos = client.GetWorkOrderItemsByAsset(SystemParams.CompanyID, assetid); wos = wos.OrderByDescending(w => !w.Completed).ThenBy(w => w.WorkOrderNumber).ToArray(); list[0].WorkOrders = wos; } return list.ToArray(); } else return new AssetInspectItem[0]; } catch (Exception ex) { return ex.Message; } } private object UpdateInspectionWorkOrder() { try { var sesstion = GetCurrentLoginSession(); if (sesstion != null) { string clientdata = Request.Params["ClientData"]; string[] ps = JsonConvert.DeserializeObject(clientdata); string ispid = ps[0]; long woid = 0; long oldwoid = 0; long.TryParse(ps[1], out woid); long.TryParse(ps[2], out oldwoid); CreateClient().UpdateInspectionWorkOrder(SystemParams.CompanyID, ispid, woid, oldwoid); return new string[0]; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object GetWorkOrderTypes() { try { var session = GetCurrentLoginSession(); if (session != null) { var items = CreateClient().GetWorkOrderTypes(SystemParams.CompanyID); return items; } else return null; } catch (Exception ex) { return ex.Message; } } private object GetPartsStatuses() { try { var session = GetCurrentLoginSession(); if (session != null) { var items = CreateClient().GetPartsStatuses(SystemParams.CompanyID); return items; } else return null; } catch (Exception ex) { return ex.Message; } } private object GetWorkOrderNumbers() { try { var session = GetCurrentLoginSession(); if (session != null) { var items = CreateClient().GetWorkOrderNumbers(SystemParams.CompanyID); return items; } else return null; } catch (Exception ex) { return ex.Message; } } private object GetWorkOrderHistorys() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Params["ClientData"]; string[] ps = JsonConvert.DeserializeObject(clientdata); long woid = Convert.ToInt64(ps[0]); DateTime beginDate = Helper.DBMinDateTime; DateTime endDate = DateTime.MaxValue; if (!DateTime.TryParse(ps[1], out beginDate)) beginDate = Helper.DBMinDateTime; if (!DateTime.TryParse(ps[2], out endDate)) endDate = DateTime.MaxValue; WorkOrderHistoryInfo[] items = CreateClient().GetWorkOrderHistorys(SystemParams.CompanyID, woid, beginDate, endDate, ""); if (items == null || items.Length == 0) return new WorkOrderHistoryItem[0]; List ls = new List(); foreach (WorkOrderHistoryInfo item in items) { WorkOrderHistoryItem his = new WorkOrderHistoryItem(); Helper.CloneProperty(his, item); ls.Add(his); } return ls.ToArray(); } else return new WorkOrderHistoryItem[0]; } catch (Exception ex) { return ex.Message; } } #region Estimate private object GetWorkOrderEstimates() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long woid = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); var client = CreateClient(); WorkOrderEstimateInfo[] estimates = client.GetWorkOrderEstimates(SystemParams.CompanyID, woid); if (estimates == null || estimates.Length == 0) return new WorkOrderEstimateItem[0]; List list = new List(); foreach (WorkOrderEstimateInfo es in estimates) { WorkOrderEstimateItem item = new WorkOrderEstimateItem(); Helper.CloneProperty(item, es); WorkOrderAttachmentInfo[] atts = client.GetWorkOrderEstimateAttachments(SystemParams.CompanyID, item.Id); if (atts != null && atts.Length > 0) { List lsatt = new List(); foreach (var att in atts) { WorkOrderAttachmentItem attitem = new WorkOrderAttachmentItem(); Helper.CloneProperty(attitem, att); lsatt.Add(attitem); } item.Attachments = lsatt.ToArray(); } list.Add(item); } return list.ToArray(); } else return new WorkOrderEstimateItem(); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderEstimates", ex.Message, ex.ToString()); return ex.Message; } } private object SaveWorkOrderEstimate() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); WorkOrderEstimateInfo est = JsonConvert.DeserializeObject(clientdata); if (est.Id == -1) { est.Id = CreateClient().AddNewWorkOrderEstimate(SystemParams.CompanyID, est); } else { CreateClient().UpdateWorkOrderEstimate(SystemParams.CompanyID, est); } return est.Id; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object PublishEstimateToCustomer() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long id = Convert.ToInt64(ps[0]); long woid = Convert.ToInt64(ps[1]); StringKeyValue[] phs = JsonConvert.DeserializeObject(ps[2]); string msg = ps[3]; bool includeStatusLink = ps[4] == "1"; var client = CreateClient(); client.PublishEstimateToCustomer(SystemParams.CompanyID, id); if (phs != null && phs.Length > 0) { string[] pns = phs.Select(m => m.Key).ToArray(); string[] pnvalues = phs.Select(m => m.Value).ToArray(); string pnStr = string.Join(";", pns); System.Threading.ThreadPool.QueueUserWorkItem((object obj) => { try { client.SendTextMessage(SystemParams.CompanyID, woid, pnStr, pnvalues, msg, includeStatusLink); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.PublishEstimateToCustomer.SendTextMessage", ex.Message, ex.ToString()); } }); } } return ""; } catch (Exception ex) { return ex.Message; } } private object UpdateWOEstimateVisibleToCustomer() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long id = Convert.ToInt64(ps[0]); bool visibleToCustomer = Helper.IsTrue(ps[1]); var client = CreateClient(); client.UpdateWOEstimateVisibleToCustomer(SystemParams.CompanyID, id, visibleToCustomer); } return ""; } catch (Exception ex) { return ex.Message; } } private object DeleteWorkOrderEstimate() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long id = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); CreateClient().DeleteWorkOrderEstimate(SystemParams.CompanyID, id); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object RevokeWorkOrderEstimate() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long id = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); CreateClient().RevokeWorkOrderEstimate(SystemParams.CompanyID, id); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object GetEstimateAttachment() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long estid = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); WorkOrderAttachmentInfo[] atts = CreateClient().GetWorkOrderEstimateAttachments(SystemParams.CompanyID, estid); if (atts == null || atts.Length == 0) return new WorkOrderAttachmentItem[0]; List ls = new List(); foreach (var att in atts) { WorkOrderAttachmentItem attitem = new WorkOrderAttachmentItem(); Helper.CloneProperty(attitem, att); ls.Add(attitem); } return ls.ToArray(); } else return new WorkOrderAttachmentItem[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetEstimateAttachment", ex.Message, ex.ToString()); return ex.Message; } } private object AddEstimateAttachment() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); string[] ps = JsonConvert.DeserializeObject(clientdata); string estid = ps[0]; string[] notesdata = JsonConvert.DeserializeObject(ps[1]); if (Request.Files.Count > 0) { for (int i = 0; i < Request.Files.Count; i++) { HttpPostedFile uploadFile = null; byte[] iconfilebyte = null; uploadFile = Request.Files[i]; iconfilebyte = ConvertFile2bytes(uploadFile); string filename = uploadFile == null ? "" : uploadFile.FileName; string notes = HttpUtility.UrlDecode(notesdata[i]); long attid = CreateClient().AddWorkOrderEstimateAttachment(SystemParams.CompanyID, Convert.ToInt64(estid), filename, notes, iconfilebyte); } } return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object DeleteEstimateAttachment() { try { var session = GetCurrentLoginSession(); if (session != null) { string estid = HttpUtility.HtmlDecode(Request.Form["ClientData"]); CreateClient().DeleteWorkOrderEstimateAttachment(SystemParams.CompanyID, Convert.ToInt64(estid)); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } #endregion #region Survey private object GetSurveyTemplateItems() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); var client = CreateClient(); SurveyTemplateItem[] temps = client.GetSurveyTemplateItems(SystemParams.CompanyID, clientdata); if (temps == null || temps.Length == 0) return new SurveyTemplateItem[0]; int[] tempids = client.GetWorkOrderSurveyTemplates(SystemParams.CompanyID); List ls = new List(); foreach (SurveyTemplateItem item in temps) { SurveyTemplateClient temp = new SurveyTemplateClient(); Helper.CloneProperty(temp, item); if (tempids != null && tempids.Length > 0 && tempids.Contains(temp.Id)) temp.InUse = true; ls.Add(temp); } return ls.ToArray(); } else return new SurveyTemplateClient[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetSurveyTemplateItems", ex.Message, ex.ToString()); return ex.Message; } } private object GetSurveyTemplateInfo() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; int id = Convert.ToInt32(HttpUtility.HtmlDecode(clientdata)); var client = CreateClient(); SurveyTemplateInfo temp = client.GetSurveyTemplateInfo(SystemParams.CompanyID, id); if (temp == null) return new SurveyTemplateInfo(); return temp; } else return new SurveyTemplateInfo(); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetSurveyTemplateItems", ex.Message, ex.ToString()); return ex.Message; } } private object SaveSurveyTemplate() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); SurveyTemplateInfo temp = JsonConvert.DeserializeObject(clientdata); if (temp.Questions != null && temp.Questions.Count > 0) { foreach (SurveyTemplateQuestion qus in temp.Questions) { if (string.IsNullOrWhiteSpace(qus.Id)) qus.Id = Guid.NewGuid().ToString(); } } if (temp.Id == -1) { temp.Id = CreateClient().AddNewSurveyTemplate(SystemParams.CompanyID, temp); } else { CreateClient().UpdateSurveyTemplate(SystemParams.CompanyID, temp); } return temp.Id; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object DeleteSurveyTemplate() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; int id = Convert.ToInt32(HttpUtility.HtmlDecode(clientdata)); CreateClient().DeleteSurveyTemplate(SystemParams.CompanyID, id); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object SendWorkOrderSurveys() { try { var user = GetCurrentUser(); if (user != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long[] woids = JsonConvert.DeserializeObject(ps[0]); int templateid = Convert.ToInt32(ps[1]); CreateClient().CreateWorkOrderSurveys(SystemParams.CompanyID, woids, templateid); } return ""; } catch (Exception ex) { return ex.Message; } } private object CreateWorkOrderSurveysByContacts() { try { var user = GetCurrentUser(); if (user != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long woid = Convert.ToInt64(ps[0]); int templateid = Convert.ToInt32(ps[1]); Foresight.Fleet.Services.AssetHealth.WorkOrder.ContactInfo[] contacts = JsonConvert.DeserializeObject(ps[2]); CreateClient().CreateWorkOrderSurveysByContacts(SystemParams.CompanyID, woid, templateid, contacts); } return ""; } catch (Exception ex) { return ex.Message; } } private object GetWorkOrderSurveysByIDs() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); string ps = clientdata; string[] p = ps.Split(','); List list = new List(); foreach (string s in p) { list.Add(Convert.ToInt64(s)); } var client = CreateClient(); WorkOrderSurveyItem[] items = client.GetWorkOrderSurveyItemsBySurveyIds(SystemParams.CompanyID, list.ToArray()); if (items == null || items.Length == 0) return new WorkOrderSurveyInfo[0]; List ls = new List(); foreach (WorkOrderSurveyItem item in items) { WorkOrderSurveyInfo si = new WorkOrderSurveyInfo(); Helper.CloneProperty(si, item); ls.Add(si); } return ls.ToArray(); } else return new WorkOrderSurveyInfo[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderSurveys", ex.Message, ex.ToString()); return ex.Message; } } private object GetWorkOrderSurveys() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); int status = Convert.ToInt32(ps[0]); DateTime beginDate = Helper.DBMinDateTime; DateTime endDate = DateTime.MaxValue; if (!DateTime.TryParse(ps[1], out beginDate)) beginDate = Helper.DBMinDateTime; if (!DateTime.TryParse(ps[2], out endDate)) endDate = DateTime.MaxValue; int[] locations = JsonConvert.DeserializeObject(ps[4]); string[] advisors = JsonConvert.DeserializeObject(ps[5]); int tempid = Convert.ToInt32(ps[6]); DateTime wobeginDate = Helper.DBMinDateTime; DateTime woendDate = DateTime.MaxValue; if (!DateTime.TryParse(ps[7], out wobeginDate)) wobeginDate = Helper.DBMinDateTime; if (!DateTime.TryParse(ps[8], out woendDate)) woendDate = DateTime.MaxValue; var client = CreateClient(); WorkOrderSurveyItem[] items = client.GetWorkOrderSurveyItems(SystemParams.CompanyID, status, beginDate, endDate == DateTime.MaxValue ? (DateTime?)null : endDate, ps[3], locations, advisors, tempid, wobeginDate, woendDate == DateTime.MaxValue ? (DateTime?)null : woendDate); if (items == null || items.Length == 0) return new WorkOrderSurveyInfo[0]; List ls = new List(); foreach (WorkOrderSurveyItem item in items) { WorkOrderSurveyInfo si = new WorkOrderSurveyInfo(); Helper.CloneProperty(si, item); if (si.Contacts.Count > 0) si.Contacts = si.Contacts.OrderBy(m => m.SurveyOptOut_BC).ToList(); ls.Add(si); } return ls.ToArray(); } else return new WorkOrderSurveyInfo[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderSurveys", ex.Message, ex.ToString()); return ex.Message; } } private object SetDoNotSendSurvey() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long id = Convert.ToInt64(ps[0]); bool check = Helper.IsTrue(ps[1]); CreateClient().SetDoNotSendSurvey(SystemParams.CompanyID, id, check); return "OK"; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object GetWorkOrderSurveyResult() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; int id = Convert.ToInt32(HttpUtility.HtmlDecode(clientdata)); var client = CreateClient(); WorkOrderSurveyResult result = client.GetWorkOrderSurveyResult(SystemParams.CompanyID, id); WorkOrderSurveyResultItem item = new WorkOrderSurveyResultItem(); item.SurveyData = result; return item; } else return new WorkOrderSurveyResult(); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderSurveyResult", ex.Message, ex.ToString()); return ex.Message; } } private byte[] GetWorkOrderSurveyPDF(out string fileName, bool print = true) { fileName = ""; try { var session = GetCurrentLoginSession(); if (session != null) { string id = Request.Params["id"]; byte[] bytes = null; var client = CreateClient(); bytes = client.GetWorkOrderSurveyPDF(SystemParams.CompanyID, Convert.ToInt64(id)); fileName = "Work Order Survey"; FICHostEnvironment.WriteExportAuditTrail(session.User.UID, "WorkOrderSurvey", "", print ? "Print" : "DownLoad", fileName + ".pdf", print ? "" : ".pdf", bytes); return bytes; } else return null; } catch (Exception ex) { return null; } } private byte[] GetWorkOrderReportPDF(out string fileName) { fileName = ""; try { var session = GetCurrentLoginSession(); if (session != null) { string id = Request.Params["id"]; string type = Request.Params["tt"]; byte[] bytes = null; var client = CreateClient(); bytes = client.GetWorkOrderPDF(SystemParams.CompanyID, Convert.ToInt64(id), Convert.ToInt32(type)); fileName = "Work Order Report"; FICHostEnvironment.WriteExportAuditTrail(session.User.UID, "WorkOrderReport", "", "", fileName + ".pdf", ".pdf", bytes); return bytes; } else return null; } catch (Exception ex) { return null; } } private object GetSurveyTemplateReport() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); var id = HttpUtility.HtmlDecode(ps[0]); var sdatestr = HttpUtility.HtmlDecode(ps[1]); var edatestr = HttpUtility.HtmlDecode(ps[2]); int[] locations = JsonConvert.DeserializeObject(ps[3]); string[] advisors = JsonConvert.DeserializeObject(ps[4]); DateTime? beginDate = null; DateTime? endDate = null; DateTime bDate = DateTime.Now; DateTime eDate = DateTime.Now; if (DateTime.TryParse(sdatestr, out bDate)) { beginDate = bDate; } if (DateTime.TryParse(edatestr, out eDate)) { endDate = eDate; } var client = CreateClient(); SurveyReportInfo report = client.GetWorkOrderSurveyReport(SystemParams.CompanyID, Convert.ToInt32(id), beginDate, endDate, locations, advisors); return report; } else return null; } catch (Exception ex) { return null; } } private object GetSurveyTemplateEmail() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = HttpUtility.UrlDecode(Request.Params["ClientData"]); string[] pars = clientdata.Split((char)170); string[] ps = JsonConvert.DeserializeObject(pars[0]); var id = HttpUtility.HtmlDecode(ps[0]); var sdatestr = HttpUtility.HtmlDecode(ps[1]); var edatestr = HttpUtility.HtmlDecode(ps[2]); int[] locations = JsonConvert.DeserializeObject(ps[3]); string[] advisors = JsonConvert.DeserializeObject(ps[4]); DateTime? beginDate = null; DateTime? endDate = null; DateTime bDate = DateTime.Now; DateTime eDate = DateTime.Now; if (DateTime.TryParse(sdatestr, out bDate)) { beginDate = bDate; } if (DateTime.TryParse(edatestr, out eDate)) { endDate = eDate; } var client = CreateClient(); SurveyReportInfo report = client.GetWorkOrderSurveyReport(SystemParams.CompanyID, Convert.ToInt32(id), beginDate, endDate, locations, advisors); StringKeyValue[] emails = JsonConvert.DeserializeObject(pars[1]); var (body, images) = WorkOrderManager.GetSurveyReportEmail(report); var subject = "Survey Report - Template: " + report.TemplateName; foreach (var email in emails) { var view = AlternateView.CreateAlternateViewFromString(body, Encoding.Default, "text/html"); foreach (var image in images) { view.LinkedResources.Add(new LinkedResource(new System.IO.MemoryStream(image.Value), "image/jpeg") { ContentId = image.Key }); } var message = new MailMessage { Subject = subject, To = { new MailAddress(email.Value, email.Key) }, Body = body, IsBodyHtml = true, AlternateViews = { view } }; SystemParams.SendMail(message); } return null; } return "Unknown error occurs."; } catch (Exception ex) { AddLog("Error", "GetSurveyTemplateEmail", ex.Message, ex.ToString()); return ex.Message; } } private object GetSurveyPreviewUrl() { try { var session = GetCurrentLoginSession(); if (session != null) { string id = HttpUtility.UrlDecode(Request.Params["ClientData"]); var client = CreateClient(); var custid = SystemParams.CompanyID; var detail = client.GetCustomerDetail(custid); return new[] { detail.CustomerSiteAddress + "/wosurvey?sid=" + id + "&cid=" + custid + "&preview=1" }; } return "Id is required."; } catch (Exception ex) { AddLog("Error", "GetSurveyTemplateEmail", ex.Message, ex.ToString()); return ex.Message; } } #endregion #region Invoice private object GetWorkOrderInvoices() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long woid = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); var client = CreateClient(); WorkOrderInvoiceInfo[] invoices = client.GetWorkOrderInvoices(SystemParams.CompanyID, woid); if (invoices == null || invoices.Length == 0) return new WorkOrderInvoiceInfoItem[0]; List list = new List(); foreach (WorkOrderInvoiceInfo es in invoices) { WorkOrderInvoiceInfoItem item = new WorkOrderInvoiceInfoItem(); Helper.CloneProperty(item, es); WorkOrderAttachmentInfo[] atts = client.GetWorkOrderInvoiceAttachments(SystemParams.CompanyID, item.Id); if (atts != null && atts.Length > 0) { List lsatt = new List(); foreach (var att in atts) { WorkOrderAttachmentItem attitem = new WorkOrderAttachmentItem(); Helper.CloneProperty(attitem, att); lsatt.Add(attitem); } item.Attachments = lsatt.ToArray(); } if (item.Status == WorkOrderInvoiceStatus.Paid) { try { PaymentInfo payment = client.GetWorkOrderInvoicePayment(SystemParams.CompanyID, item.Id); if (payment != null) { PaymentItem pitem = new PaymentItem(); Helper.CloneProperty(pitem, payment); item.PaymentItem = pitem; } } catch (Exception ex1) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderInvoices.GetWorkOrderInvoicePayment", ex1.Message, ex1.ToString()); } } else if (item.Status == WorkOrderInvoiceStatus.ManualPaid) { try { item.PaymentItem = new PaymentItem() { CheckNumber = item.CheckNumber, PaymentEnteredByName = item.PaymentEnteredByName, PaymentType = item.PaymentMethod, CreatedLocal = item.PaymentEnteredOnLocal }; } catch (Exception ex1) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderInvoices.GetWorkOrderInvoicePayment", ex1.Message, ex1.ToString()); } } list.Add(item); } return list.ToArray(); } else return new WorkOrderInvoiceInfoItem(); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderInvoices", ex.Message, ex.ToString()); return ex.Message; } } private object SaveWorkOrderInvoice() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); WorkOrderInvoiceInfo invoice = JsonConvert.DeserializeObject(clientdata); if (invoice.Id == -1) { invoice.Id = CreateClient().AddNewWorkOrderInvoice(SystemParams.CompanyID, invoice); } else { CreateClient().UpdateWorkOrderInvoice(SystemParams.CompanyID, invoice); } return invoice.Id; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object PublishInvoiceToCustomer() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = HttpUtility.HtmlDecode(Request.Params["ClientData"]); string[] ps = JsonConvert.DeserializeObject(clientdata); long id = Convert.ToInt64(ps[0]); long woid = Convert.ToInt64(ps[1]); StringKeyValue[] phs = JsonConvert.DeserializeObject(ps[2]); string msg = ps[3]; bool includeStatusLink = ps[4] == "1"; var client = CreateClient(); client.PublishInvoiceToCustomer(SystemParams.CompanyID, id); if (phs != null && phs.Length > 0) { string[] pns = phs.Select(m => m.Key).ToArray(); string[] pnvalues = phs.Select(m => m.Value).ToArray(); string pnStr = string.Join(";", pns); System.Threading.ThreadPool.QueueUserWorkItem((object obj) => { try { client.SendTextMessage(SystemParams.CompanyID, woid, pnStr, pnvalues, msg, includeStatusLink); } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.PublishInvoiceToCustomer.SendTextMessage", ex.Message, ex.ToString()); } }); } } return ""; } catch (Exception ex) { return ex.Message; } } private object DeleteWorkOrderInvoice() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long id = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); CreateClient().DeleteWorkOrderInvoice(SystemParams.CompanyID, id); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object RevokeWorkOrderInvoice() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long id = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); CreateClient().RevokeWorkOrderInvoice(SystemParams.CompanyID, id); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object MarkAsPaid() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; string[] ps = JsonConvert.DeserializeObject(HttpUtility.HtmlDecode(clientdata)); long id = Convert.ToInt64(ps[0]); WorkOrderInvoiceInfo i = new WorkOrderInvoiceInfo() { Id = id, Status = WorkOrderInvoiceStatus.ManualPaid, PaymentMethod = ps[1], CheckNumber = ps[2] }; CreateClient().MarkAsPaid(SystemParams.CompanyID, i); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object CancelPayment() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long id = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); CreateClient().CancelPayment(SystemParams.CompanyID, id); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object ChangeWOInvoiceCustomerVisible() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; string[] ps = JsonConvert.DeserializeObject(HttpUtility.HtmlDecode(clientdata)); long id = Convert.ToInt64(ps[0]); CreateClient().ChangeWOInvoiceCustomerVisible(SystemParams.CompanyID, id, Convert.ToInt32(ps[1]) == 1); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object GetWorkOrderInvoicePayment() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long invoiceid = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); var client = CreateClient(); PaymentInfo payment = client.GetWorkOrderInvoicePayment(SystemParams.CompanyID, invoiceid); if (payment == null) return null; PaymentItem pitem = new PaymentItem(); Helper.CloneProperty(pitem, payment); if (payment.Card != null) { pitem.Card = new CardItem(); Helper.CloneProperty(pitem.Card, payment.Card); } return pitem; } else return null; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderInvoicePayment", ex.Message, ex.ToString()); return ex.Message; } } private object GetWorkOrderInvoiceAttachments() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long estid = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); WorkOrderAttachmentInfo[] atts = CreateClient().GetWorkOrderInvoiceAttachments(SystemParams.CompanyID, estid); if (atts == null || atts.Length == 0) return new WorkOrderAttachmentItem[0]; List ls = new List(); foreach (var att in atts) { WorkOrderAttachmentItem attitem = new WorkOrderAttachmentItem(); Helper.CloneProperty(attitem, att); ls.Add(attitem); } return ls.ToArray(); } else return new WorkOrderAttachmentItem[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderInvoiceAttachments", ex.Message, ex.ToString()); return ex.Message; } } private object AddInvoiceAttachment() { try { var session = GetCurrentLoginSession(); if (session != null) { var clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); string[] ps = JsonConvert.DeserializeObject(clientdata); string estid = ps[0]; string[] notesdata = JsonConvert.DeserializeObject(ps[1]); if (Request.Files.Count > 0) { for (int i = 0; i < Request.Files.Count; i++) { HttpPostedFile uploadFile = null; byte[] iconfilebyte = null; uploadFile = Request.Files[i]; iconfilebyte = ConvertFile2bytes(uploadFile); string filename = uploadFile == null ? "" : uploadFile.FileName; string notes = HttpUtility.UrlDecode(notesdata[i]); long attid = CreateClient().AddWorkOrderInvoiceAttachment(SystemParams.CompanyID, Convert.ToInt64(estid), filename, notes, iconfilebyte); } } return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } private object DeleteInvoiceAttachment() { try { var session = GetCurrentLoginSession(); if (session != null) { string estid = HttpUtility.HtmlDecode(Request.Form["ClientData"]); CreateClient().DeleteWorkOrderInvoiceAttachment(SystemParams.CompanyID, Convert.ToInt64(estid)); return "OK"; } return "Failed"; } catch (Exception ex) { return ex.Message; } } #endregion #region WO Service Working Time Setting private object GetWOServiceTimeSetting() { try { var session = GetCurrentLoginSession(); if (session != null) { string setting = SystemParams.GetStringParam("WorkOrderServiceWorkingTime"); return new { Setting = setting }; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object SetWOServiceTimeSetting() { try { var session = GetCurrentLoginSession(); if (session != null && session.User.UserType >= Foresight.Fleet.Services.User.UserTypes.Admin) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); SystemParams.SetStringParam("WorkOrderServiceWorkingTime", clientdata); return 0; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } #endregion #region SMS Footnotes private object GetSMSFootnotes() { try { var session = GetCurrentLoginSession(); if (session != null) { return SystemParams.GetStringParam(SystemParams.WOSMSFootnotes); } return ""; } catch (Exception ex) { return ex.Message; } } private object SetSMSFootnotes() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); SystemParams.SetStringParam(SystemParams.WOSMSFootnotes, clientdata); return ""; } return "Failed"; } catch (Exception ex) { return ex.Message; } } #endregion #region Estimate Settings private object GetEstimateSettings() { try { var session = GetCurrentLoginSession(); if (session != null) { List r = new List(); r.Add(SystemParams.GetStringParam(SystemParams.EstimateMessage)); r.Add(Helper.IsTrue(SystemParams.GetStringParam(SystemParams.DefaultPORequired)) ? "1" : "0"); return r.ToArray(); } return null; } catch (Exception ex) { return ex.Message; } } private object SetEstimateSettings() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); string[] ps = JsonConvert.DeserializeObject(clientdata); SystemParams.SetStringParam(SystemParams.EstimateMessage, ps[0]); SystemParams.SetStringParam(SystemParams.DefaultPORequired, ps[1] == "1" ? "Yes" : "No"); return ""; } return "Failed"; } catch (Exception ex) { return ex.Message; } } #endregion #region Invoice Settings private object GetInvoiceSettings() { try { var session = GetCurrentLoginSession(); if (session != null) { return SystemParams.GetStringParam(SystemParams.InvoiceMessage); } return ""; } catch (Exception ex) { return ex.Message; } } private object SetInvoiceSettings() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; clientdata = HttpUtility.HtmlDecode(clientdata); SystemParams.SetStringParam(SystemParams.InvoiceMessage, clientdata); return ""; } return "Failed"; } catch (Exception ex) { return ex.Message; } } #endregion private object GetWorkorderParams() { try { var session = GetCurrentLoginSession(); if (session != null) { return new { EstimateMessage = SystemParams.GetStringParam(SystemParams.EstimateMessage), DefaultPORequired = Helper.IsTrue(SystemParams.GetStringParam(SystemParams.DefaultPORequired)), InvoiceMessage = SystemParams.GetStringParam(SystemParams.InvoiceMessage), }; } return null; } catch (Exception ex) { return ex.Message; } } #region Follower private object GetWorkOrderFollowers() { try { var session = GetCurrentLoginSession(); if (session != null) { string clientdata = Request.Form["ClientData"]; long woid = Convert.ToInt64(HttpUtility.HtmlDecode(clientdata)); var client = CreateClient(); WorkOrderFollowerInfo[] items = client.GetWorkOrderFollowers(SystemParams.CompanyID, woid); if (items == null || items.Length == 0) return new WorkOrderFollowerInfo[0]; return items; } else return new WorkOrderFollowerInfo[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetWorkOrderFollowers", ex.Message, ex.ToString()); return ex.Message; } } private object GetCustomerFollowers() { try { var session = GetCurrentLoginSession(); if (session != null) { string custid = Request.Form["ClientData"]; custid = HttpUtility.HtmlDecode(custid); FollowerInfo[] followers = CreateClient().GetFollowers(SystemParams.CompanyID, int.Parse(custid)); if (followers == null || followers.Length == 0) return new FollowerInfo[0]; return followers; } else return new FollowerInfo[0]; } catch (Exception ex) { return ex.Message; } } private object GetAllFollowers() { try { var session = GetCurrentLoginSession(); if (session != null) { var users = UserManagement.GetActiveUsers(session.SessionID); return users.Where(u => u.IsUser).ToArray(); } else return new UserInfo[0]; } catch (Exception ex) { AddLog("ERROR", "WorkOrderBasePage.GetAllFollowers", ex.Message, ex.ToString()); return ex.Message; } } #endregion #region Survey Automaction private object GetAllWorkOrderTypes() { try { var session = GetCurrentLoginSession(); if (session != null) { string[] items = CreateClient().GetWorkOrderTypes(SystemParams.CompanyID); if (items == null || items.Length == 0) return new StringKeyValue[0]; List ls = new List(); foreach (string item in items) { StringKeyValue kv = new StringKeyValue(); kv.Key = item; kv.Value = item; ls.Add(kv); } return ls.ToArray(); } else return new StringKeyValue[0]; } catch (Exception ex) { return ex.Message; } } private object GetSurveyAutomationSetting() { try { var session = GetCurrentLoginSession(); if (session != null) { string setting = SystemParams.GetStringParam("SurveyAutomation"); SurveyAutomationItem item = JsonConvert.DeserializeObject(setting); return item; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } private object SetSurveyAutomationSetting() { try { var session = GetCurrentLoginSession(); if (session != null && session.User.UserType >= Foresight.Fleet.Services.User.UserTypes.Admin) { var clientdata = HttpUtility.HtmlDecode(Request.Form["ClientData"]); SurveyAutomationInfo info = JsonConvert.DeserializeObject(clientdata); SystemParams.SetStringParam("SurveyAutomation", JsonConvert.SerializeObject(info)); return 0; } else return "Failed"; } catch (Exception ex) { return ex.Message; } } #endregion } public class SurveyAutomationInfo { public int TemplateId { get; set; } public int DaysFromCompletedDate { get; set; } public int DaysSinceLastReceivedSurvey { get; set; } public int Resend { get; set; } public int ResendAfterDays { get; set; } public int Randomization { get; set; } public string[] ExcludeWorkOrderTypes { get; set; } public string SurveySendTimes { get; set; } } public class SegmentClient { public UserInfo[] Users { get; set; } public JobSiteViewItem[] JobSites { get; set; } public string[] Components { get; set; } public string[] SegmentTypes { get; set; } } class WorkorderAlerts { public AlertInfo[] Alerts { get; set; } public AlertInfo[] AssetAlerts { get; set; } } public class WorkOrderAttachmentItem : WorkOrderAttachmentInfo { public string AddedOnLocalStr { get { return AddedOnLocal == null ? "" : AddedOnLocal.ToString(); } } public bool AvailableToCustomer { get; set; } public string AttachmentIdStr { get; set; }//兼容Inspect的guid public int AttachmentType { get; set; }//Asset: 1;WO: 2;Inspert: 3 } class WOAttachments { public WorkOrderAttachmentItem[] AssetAttachments { get; set; } public WorkOrderAttachmentItem[] WorkOrderAttachments { get; set; } public WorkOrderAttachmentItem[] InspectionAttachments { get; set; } } public class FilterDataSourceItem { public StringKeyValue[] AssetGroups { get; set; } public CustomerLocation[] Locations { get; set; } public DepartmentInfo[] Departments { get; set; } public StringKeyValue[] Advisors { get; set; } public StringKeyValue[] Statuses { get; set; } public StringKeyValue[] OrderTypes { get; set; } } public class WorkOrderDefaultItem { public int[] Locations { get; set; } public int[] Departments { get; set; } public string[] Advisors { get; set; } public string[] OrderTypes { get; set; } } public class WorkOrderEstimateItem : WorkOrderEstimateInfo { public WorkOrderAttachmentItem[] Attachments { get; set; } public string PublishTimeStr { get { return PublishTime == null ? "" : PublishTime.Value.ToString(); } } public string CustomerResponseTimeStr { get { return CustomerResponseTime == null ? "" : CustomerResponseTime.Value.ToString(); } } public string ResponsePhoneStr { get { string rst = ""; if (Helper.IsEmail(ResponsePhone)) rst = ResponsePhone; else rst = Foresight.Standard.PhoneNumber.FormatPhoneNumber(ResponsePhone); return rst; } } } public class WorkOrderSurveyInfo : WorkOrderSurveyItem { public string SubmitTimeStr { get { return SubmitTime == null ? "" : SubmitTime.Value.ToShortDateString(); } } public string SentTimeStr { get { return SentTime == null ? "" : SentTime.Value.ToShortDateString(); } } } public class WorkOrderSurveyResultItem { public WorkOrderSurveyResult SurveyData { get; set; } public string SubmitTimeStr { get { return (SurveyData.Question != null && SurveyData.Question.SubmitTime != null) ? SurveyData.Question.SubmitTime.Value.ToString() : ""; } } } public class SurveyTemplateClient : SurveyTemplateItem { public bool InUse { get; set; } } public class WorkOrderInvoiceInfoItem : WorkOrderInvoiceInfo { public WorkOrderAttachmentItem[] Attachments { get; set; } public PaymentItem PaymentItem { get; set; } public string LastUpdatedOnStr { get { return LastUpdatedOn == null ? "" : LastUpdatedOn.Value.ToString(); } } } public class PaymentItem : PaymentInfo { public string CreatedLocalStr { get { return CreatedLocal == null ? "" : CreatedLocal.Value.ToString(); } } public string CardNumber => Card == null ? string.Empty : "**** " + Card.Last4Number; public string CardExpiration => Card == null ? string.Empty : Card.ExpMonth.ToString("00") + " / " + Card.ExpYear.ToString("0000"); public string CardType => Card == null ? string.Empty : Card.Brand + " " + Card.Funding; public string CardIssuer => Card?.Issuer ?? string.Empty; //Macnul Paid public string CheckNumber { get; set; } public string PaymentEnteredByName { get; set; } } class WorkOrderHistoryItem : WorkOrderHistoryInfo { public string DateTimeStr { get { return DateTime == null ? "" : DateTime.Value.ToString(); } } } class SurveyAutomationItem { public int TemplateId { get; set; } public int DaysFromCompletedDate { get; set; } public int DaysSinceLastReceivedSurvey { get; set; } public int Resend { get; set; } public int ResendAfterDays { get; set; } public int Randomization { get; set; } public string[] ExcludeWorkOrderTypes { get; set; } public string SurveySendTimes { get; set; } } }