2020-05-25 17:52:17 +08:00

1360 lines
55 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Foresight.Fleet.Services.Asset;
using Foresight.Fleet.Services.AssetHealth;
using Foresight.Fleet.Services.Inspection;
using Foresight.Fleet.Services.User;
using Foresight.ServiceModel;
using IronIntel.Contractor.FilterQ;
using IronIntel.Contractor.Machines;
using IronIntel.Contractor.Maintenance;
using IronIntel.Contractor.Users;
using IronIntel.Services.Contractor;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web;
namespace IronIntel.Contractor.Site
{
public class InspectionBasePage : ContractorBasePage
{
protected void ProcessRequest(string method)
{
object result = null;
try
{
string methodName = Request.Params["MethodName"];
if (methodName != null)
{
switch (methodName)
{
case "GetGlobalSections":
result = GetGlobalSections();
break;
case "GetGlobalQuestions":
result = GetGlobalQuestions();
break;
case "SaveGlobalSection":
result = SaveGlobalSection();
break;
case "SaveGlobalQuestion":
result = SaveGlobalQuestion();
break;
case "DeleteGlobalSection":
result = DeleteGlobalSection();
break;
case "DeleteGlobalQuestion":
result = DeleteGlobalQuestion();
break;
case "GetTemplates":
result = GetTemplates();
break;
case "GetTemplate":
result = GetTemplate();
break;
case "SaveTemplate":
result = SaveTemplate();
break;
case "DeleteTemplate":
result = DeleteTemplate();
break;
case "PublishTemplate":
result = PublishTemplate();
break;
case "GetAssetMakes":
result = GetAssetMakes();
break;
case "GetAssetModels":
result = GetAssetModels();
break;
case "GetAssetTypes":
result = GetAssetTypes();
break;
case "GetInspectItems":
result = GetInspectItems();
break;
case "GetGlobalSectionsByID":
result = GetGlobalSectionsByID();
break;
case "GetInspectionReport":
result = GetInspectionReport();
break;
case "TemplateSaveAs":
result = TemplateSaveAs();
break;
case "GetInspectEmailList":
result = GetInspectEmailList();
break;
case "GetInspectionReportForEdit":
result = GetInspectionReportForEdit();
break;
case "GetAssetBasicInfoForEdit":
result = GetAssetBasicInfoForEdit();
break;
case "UpdateInspectionReport":
result = UpdateInspectionReport();
break;
}
}
}
catch (Exception ex)
{
SystemParams.WriteLog("error", "InspectionBasePage", ex.Message, ex.ToString());
throw ex;
}
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 = GetInspectionPDF(out fileName);
download = true;
break;
case "2"://print
buffer = GetInspectionPDF(out fileName);
break;
}
}
}
catch (Exception ex)
{
SystemParams.WriteLog("error", "InspectionBasePage", 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();
}
protected object GetInspectItem(string inspectionid)
{//只有id不知道类型
var sesstion = GetCurrentLoginSession();
AssetInspectClient aclient = CreateClient<AssetInspectClient>();
AssetInspectItem aitem = aclient.GetInspectItem(SystemParams.CompanyID, inspectionid, sesstion.User.UID);
if (aitem != null)
{
if (!CheckRight(SystemParams.CompanyID, Foresight.Fleet.Services.User.Feature.INSPECTION_REPORTS))
return null;
else
return aitem;
}
TeamIntelligenceClient tclient = CreateClient<TeamIntelligenceClient>();
TeamInspectItem titem = tclient.GetInspectItem(SystemParams.CompanyID, inspectionid, sesstion.User.UID);
if (!CheckRight(SystemParams.CompanyID, Foresight.Fleet.Services.User.Feature.TEAM_REPORTS))
return null;
else
return titem;
}
private object GetInspectItems()
{
try
{
var sesstion = GetCurrentLoginSession();
if (sesstion != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
DateTime startdate = Helper.DBMinDateTime;
DateTime enddate = DateTime.MaxValue;
if (!DateTime.TryParse(ps[1], out startdate))
startdate = Helper.DBMinDateTime;
if (!DateTime.TryParse(ps[2], out enddate))
enddate = DateTime.MaxValue;
else
enddate = enddate.Date.AddDays(1).AddSeconds(-1);
startdate = SystemParams.CustomerDetail.CustomerTimeToUtc(startdate);
enddate = SystemParams.CustomerDetail.CustomerTimeToUtc(enddate);
string filter = HttpUtility.HtmlDecode(ps[3]);
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
TeamInspectItem[] insplectitems = client.GetInspectItems(SystemParams.CompanyID, startdate, enddate, filter, sesstion.User.UID);
if (insplectitems == null || insplectitems.Length == 0)
return new TeamInspectInfo[0];
List<TeamInspectInfo> list = new List<TeamInspectInfo>();
foreach (TeamInspectItem item in insplectitems)
{
TeamInspectInfo inspect = new TeamInspectInfo();
Helper.CloneProperty(inspect, item);
list.Add(inspect);
}
return list.ToArray();
}
else
{
var client = CreateClient<AssetInspectClient>();
AssetInspectItem[] insplectitems = client.GetInspectItems(SystemParams.CompanyID, startdate, enddate, filter, sesstion.User.UID);
if (insplectitems == null || insplectitems.Length == 0)
return new AssetInspectInfo[0];
List<AssetInspectInfo> list = new List<AssetInspectInfo>();
foreach (AssetInspectItem item in insplectitems)
{
AssetInspectInfo inspect = new AssetInspectInfo();
Helper.CloneProperty(inspect, item);
list.Add(inspect);
}
return list.ToArray();
}
}
else
return new AssetInspectItem[0];
}
catch (Exception ex)
{
return ex.Message;
}
}
private object GetInspectionReportForEdit()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
string id = HttpUtility.HtmlDecode(ps[1]);
string companyId = SystemParams.CompanyID;
InspectReportInfo report = null;
var aic = CreateClient<AssetInspectClient>();
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
report = client.GetInspection(companyId, id);
}
else
{
report = aic.GetInspection(companyId, id);
}
if (report == null)
return null;
var ir = new InspectReportEditItem();
Helper.CloneProperty(ir, report);
ir.CommitTime = SystemParams.CustomerDetail.UtcToCustomerTime(ir.CommitTime);
ir.Answers.AddRange(report.Answers);
ir.Medias.AddRange(report.Medias);
if (!teamintelligence)
{
var aclient = FleetServiceClientHelper.CreateClient<AssetQueryClient>(companyId, session.SessionID);
ir.Asset = aclient.GetAssetBasicInfoByID(companyId, ir.AssetId);
}
// list
//bool hasAsset = false;
bool hasEmail = false;
bool hasJobsite = false;
foreach (var p in report.Template.Pages)
{
foreach (var s in p.Sections)
{
foreach (var q in s.Questions)
{
if (q.QuestionType == QuestionTypes.DropDown)
{
//if (q.LookupSource == LookupSources.Assets)
//{
// hasAsset = true;
//}
//else
if (q.LookupSource == LookupSources.Employee)
{
hasEmail = true;
}
else if (q.LookupSource == LookupSources.Jobsites)
{
hasJobsite = true;
}
}
else if (q.QuestionType == QuestionTypes.EmailList)
{
hasEmail = true;
}
}
}
}
var ic = CreateClient<InspectMobileClient>();
if (hasEmail)
{
ir.EmailList = Download(() => ic.DownloadTeamIntelligenceUsers(companyId)).OrderBy(e => e.UserName).ToArray();
}
//if (hasAsset)
//{
// var ac = CreateClient<AssetQueryClient>();
// ir.AssetList = ac.GetAssetBasicInfoByUser(companyId, string.Empty, session.User.UID);
//}
if (hasJobsite)
{
ir.JobSiteList = Download(() => ic.DownloadJobSites(companyId, session.User.UID)).OrderBy(j => j.Name).ToArray();
}
return ir;
}
else
return null;
}
catch (Exception ex)
{
return ex.Message;
}
}
private object GetAssetBasicInfoForEdit()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
//string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
string companyId = SystemParams.CompanyID;
var ac = CreateClient<InspectMobileClient>();
var list = new List<AssetItem>();
var assets = Download(startid => ac.DownloadAssets(companyId, session.User.UID, startid, 20000))
.OrderBy(a => a.Name)
.ToArray();
return assets;
}
else
return null;
}
catch (Exception ex)
{
return ex.Message;
}
}
private List<AssetItem> Download(Func<long, AssetItem[]> download, long startid = -1, int size = 100)
{
var list = new List<AssetItem>();
int count = 0;
while (count < 5)
{
try
{
var items = download(startid);
list.AddRange(items);
if (items.Length < size)
{
return list;
}
else
{
startid = items[items.Length - 1].Id;
}
}
catch
{
count++;
}
}
return null;
}
IEnumerable<T> Download<T>(Func<IEnumerable<T>> download)
{
int count = 0;
while (count < 5)
{
try
{
return download();
}
catch
{
count++;
}
}
return null;
}
private object UpdateInspectionReport()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
clientdata = HttpUtility.HtmlDecode(clientdata);
var report = JsonConvert.DeserializeObject<InspectReportInfo>(clientdata);
bool isTeam = report.Target == TemplateTargets.Person;
string companyId = SystemParams.CompanyID;
foreach (var a in report.Answers)
{
if (string.IsNullOrEmpty(a.Id))
{
a.Id = Guid.NewGuid().ToString();
}
}
// TODO: media
if (isTeam)
{
var tc = CreateClient<TeamIntelligenceClient>();
tc.UpdateTeamInspect(companyId, report, session.User.UID);
}
else
{
var ac = CreateClient<AssetInspectClient>();
ac.UpdateAssetInspect(companyId, report, session.User.UID);
}
return true;
}
else
return null;
}
catch (Exception ex)
{
return ex.Message;
}
}
private object GetInspectionReport()
{
try
{
var sesstion = GetCurrentLoginSession();
if (sesstion != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
string id = HttpUtility.HtmlDecode(ps[1]);
InspectReportInfo report = null;
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
report = client.GetInspection(SystemParams.CompanyID, id);
}
else
{
var client = CreateClient<AssetInspectClient>();
report = client.GetInspection(SystemParams.CompanyID, id);
}
if (report == null)
return null;
InspectReportItem ir = new InspectReportItem();
Helper.CloneProperty(ir, report);
ir.CommitTime = SystemParams.CustomerDetail.UtcToCustomerTime(ir.CommitTime);
ir.Answers.AddRange(report.Answers);
ir.Medias.AddRange(report.Medias);
ir.IdentifiedQuestions = new List<IdentifiedQuestionItem>();
foreach (var p in ir.Template.Pages)
{
foreach (var s in p.Sections)
{
foreach (var q in s.Questions)
{
var qType =ConvertQuestionType(q);
foreach (var a in ir.Answers)
{
if (q.Id.Equals(a.QuestionId, StringComparison.OrdinalIgnoreCase))
{
if (qType == QuestionTypes.Date || qType == QuestionTypes.DateAndTime)
{
DateTime dt = DateTime.Now;
if (DateTime.TryParse(a.Result, out dt))
{
if (qType == QuestionTypes.Date)
a.Result = dt.ToString("M/d/yyyy tt");
else if (qType == QuestionTypes.DateAndTime)
a.Result = dt.ToString("M/d/yyyy h:mm:ss tt");
}
}
else if (qType == QuestionTypes.Number
|| qType == QuestionTypes.Integer
|| qType == QuestionTypes.EngingHours
|| qType == QuestionTypes.Odometer)
{
double tn = 0;
if (double.TryParse(a.Result, out tn))
a.Result = tn.ToString("#,##0.##");
}
//IdentifiedQuestion
if (qType != QuestionTypes.DropDown
&& qType != QuestionTypes.YesOrNo
&& qType != QuestionTypes.List)
{
if (a.SeverityLevel != SeverityLeveles.None)
{
if (qType == QuestionTypes.Picture)
{
var ms = ir.Medias.FirstOrDefault(m => m.AnswerId.ToString() == a.Id.ToString());
if (ms == null)
continue;
}
IdentifiedQuestionItem iq = new IdentifiedQuestionItem();
Helper.CloneProperty(iq, q);
iq.IdentifiedSeverityLevel = a.SeverityLevel;
ir.IdentifiedQuestions.Add(iq);
}
}
else
{
if (a.SelectedItems != null && a.SelectedItems.Count() > 0)
{
bool hasseveritylevel = a.SelectedItems.Count(m => m.SeverityLevel != SeverityLeveles.None) > 0;
if (hasseveritylevel)
{
IdentifiedQuestionItem iq = new IdentifiedQuestionItem();
Helper.CloneProperty(iq, q);
iq.IdentifiedSeverityLevel = SeverityLeveles.Low;
bool isHigh = a.SelectedItems.Count(m => m.SeverityLevel == SeverityLeveles.High) > 0;
if (isHigh)
iq.IdentifiedSeverityLevel = SeverityLeveles.High;
else
{
bool isMedium = a.SelectedItems.Count(m => m.SeverityLevel == SeverityLeveles.Medium) > 0;
if (isMedium)
iq.IdentifiedSeverityLevel = SeverityLeveles.Medium;
}
ir.IdentifiedQuestions.Add(iq);
}
}
else
{
if (a.SeverityLevel != SeverityLeveles.None)
{
IdentifiedQuestionItem iq = new IdentifiedQuestionItem();
Helper.CloneProperty(iq, q);
iq.IdentifiedSeverityLevel = a.SeverityLevel;
ir.IdentifiedQuestions.Add(iq);
}
}
}
break;
}
}
}
}
}
if (!teamintelligence)
{
var aclient = FleetServiceClientHelper.CreateClient<AssetQueryClient>(SystemParams.CompanyID, sesstion.SessionID);
ir.Asset = aclient.GetAssetBasicInfoByID(SystemParams.CompanyID, ir.AssetId);
}
ir.IdentifiedQuestions = ir.IdentifiedQuestions.OrderByDescending(m => m.IdentifiedSeverityLevel).ToList();
return ir;
}
else
return null;
}
catch (Exception ex)
{
return ex.Message;
}
}
private QuestionTypes ConvertQuestionType(Question q)
{
var questionType = q.QuestionType;
if (questionType == QuestionTypes.FuelRecords)
{
switch (q.SubType)
{
case (int)FuelRecordTypes.TransactionDate:
questionType = QuestionTypes.DateAndTime;
break;
case (int)FuelRecordTypes.Odometer:
case (int)FuelRecordTypes.Quantity:
case (int)FuelRecordTypes.UnitCost:
case (int)FuelRecordTypes.TotalCost:
questionType = QuestionTypes.Odometer;
break;
case (int)FuelRecordTypes.FuelType:
case (int)FuelRecordTypes.State:
questionType = QuestionTypes.DropDown;
break;
case (int)FuelRecordTypes.Picture:
questionType = QuestionTypes.Picture;
break;
default:
break;
}
}
return questionType;
}
private byte[] GetInspectionPDF(out string fileName)
{
fileName = "";
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string id = Request.Params["id"];
bool teamintelligence = Helper.IsTrue(Request.Params["team"]);
byte[] bytes = null;
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
bytes = client.GetInspectionPDF(SystemParams.CompanyID, id);
fileName = client.GetInspection(SystemParams.CompanyID, id).Template.Name;
}
else
{
var client = CreateClient<AssetInspectClient>();
bytes = client.GetInspectionPDF(SystemParams.CompanyID, id);
fileName = client.GetInspection(SystemParams.CompanyID, id).Template.Name;
}
return bytes;
}
else
return null;
}
catch (Exception ex)
{
return null;
}
}
private object GetTemplates()
{
try
{
var user = GetCurrentUser();
if (user != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
int state = 0;
if (!int.TryParse(ps[1], out state))
state = -1;
string filter = HttpUtility.HtmlDecode(ps[2]);
int makeid = -1;
if (!int.TryParse(ps[3], out makeid))
makeid = -1;
int modelid = -1;
if (!int.TryParse(ps[4], out modelid))
modelid = -1;
int typeid = -1;
if (!int.TryParse(ps[5], out typeid))
typeid = -1;
FormTemplateItem[] templates = null;
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
templates = client.GetFormTemplateItems(SystemParams.CompanyID, filter, user.IID, state);
}
else
{
var client = CreateClient<AssetInspectClient>();
templates = client.GetAssetTemplateItems(SystemParams.CompanyID, filter, makeid, modelid, typeid, user.IID, state);
}
return templates;
}
else
return new FormTemplateItem[0];
}
catch (Exception ex)
{
return ex.Message;
}
}
private object GetInspectEmailList()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
bool teamintelligence = Helper.IsTrue(clientdata);
UserEmailInfo[] users = null;
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
users = client.GetInspectEmailList(SystemParams.CompanyID, string.Empty);
}
else
{
var client = CreateClient<AssetInspectClient>();
users = client.GetInspectEmailList(SystemParams.CompanyID, string.Empty);
}
return users;
}
else
return new UserEmailInfo[0];
}
catch (Exception ex)
{
return ex.Message;
}
}
private object GetTemplate()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
var clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
string id = HttpUtility.HtmlDecode(ps[1]);
FormTemplateInfo template = null;
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
template = client.GetFormTemplate(SystemParams.CompanyID, Convert.ToInt64(id));
}
else
{
var client = CreateClient<AssetInspectClient>();
template = client.GetFormTemplate(SystemParams.CompanyID, Convert.ToInt64(id));
}
return template;
}
else
return null;
}
catch (Exception ex)
{
return ex.Message;
}
}
private object TemplateSaveAs()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
long srctempid = Convert.ToInt64(ps[1]);
string newtemplatename = HttpUtility.HtmlDecode(ps[2]);
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
long id = client.TemplateSaveAs(SystemParams.CompanyID, srctempid, newtemplatename, session.User.UID);
}
else
{
var client = CreateClient<AssetInspectClient>();
long id = client.TemplateSaveAs(SystemParams.CompanyID, srctempid, newtemplatename, session.User.UID);
}
return "OK";
}
else
{
return "Failed";
}
}
catch (Exception ex)
{
return ex.Message;
}
}
private object SaveTemplate()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
var data = HttpUtility.HtmlDecode(ps[1]);
FormTemplateInfo templateinfo = JsonConvert.DeserializeObject<FormTemplateInfo>(HttpUtility.HtmlDecode(data));
var user = UserManagement.GetUserByIID(session.User.UID);
if (user.UserType == Users.UserTypes.Readonly)
return "";
else if (user.UserType == Users.UserTypes.Common)
{
var pc = FleetServiceClientHelper.CreateClient<PermissionProvider>();
Tuple<Feature, Permissions>[] pmss = pc.GetUserPermissions(SystemParams.CompanyID, user.IID);
if (pmss.Length > 0)
{
int pkey = teamintelligence ? Feature.TEAM_TEMPLATES : Feature.INSPECTION_TEMPLATES;
Tuple<Feature, Permissions> pm = pmss.FirstOrDefault(m => m.Item1.Id == pkey);
if (pm.Equals(default(KeyValuePair<int, Permissions>))
|| pm.Item2 != Permissions.FullControl)
{
return "";
}
}
else
return "";
}
if (templateinfo != null)
{
if (templateinfo.Pages != null)
{
foreach (var p in templateinfo.Pages)
{
if (string.IsNullOrWhiteSpace(p.Id))
p.Id = Guid.NewGuid().ToString();
if (p.Sections != null)
{
foreach (var s in p.Sections)
{
if (string.IsNullOrWhiteSpace(s.Id))
s.Id = Guid.NewGuid().ToString();
if (s.Questions != null)
{
foreach (var q in s.Questions)
{
if (string.IsNullOrWhiteSpace(q.Id))
q.Id = Guid.NewGuid().ToString();
}
}
}
}
}
}
}
FormTemplateInfo newtemp = null;
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
newtemp = client.UpdateTemplate(SystemParams.CompanyID, templateinfo, session.User.UID);
}
else
{
var client = CreateClient<AssetInspectClient>();
newtemp = client.UpdateTemplate(SystemParams.CompanyID, templateinfo, session.User.UID);
}
return new string[] { newtemp.Id.ToString(), "Saved successfully." };
}
else
{
return "Failed";
}
}
catch (Exception ex)
{
return ex.Message;
}
}
private object DeleteTemplate()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
long tempid = Convert.ToInt64(ps[1]);
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
client.DeleteTemplate(SystemParams.CompanyID, tempid, session.User.UID, string.Empty);
}
else
{
var client = CreateClient<AssetInspectClient>();
client.DeleteTemplate(SystemParams.CompanyID, tempid, session.User.UID, string.Empty);
}
return "OK";
}
else
{
return "Failed";
}
}
catch (Exception ex)
{
return ex.Message;
}
}
private object PublishTemplate()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
long tempid = Convert.ToInt64(ps[1]);
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
client.PublishTemplate(SystemParams.CompanyID, tempid, session.User.UID);
}
else
{
var client = CreateClient<AssetInspectClient>();
client.PublishTemplate(SystemParams.CompanyID, tempid, session.User.UID);
}
return "OK";
}
else
{
return "Failed";
}
}
catch (Exception ex)
{
return ex.Message;
}
}
private object GetGlobalSections()
{
try
{
if (GetCurrentLoginSession() != null)
{
var data = Request.Params["ClientData"];
bool teamintelligence = Helper.IsTrue(data);
Section[] sections = null;
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
sections = client.GetGlobalSectionItems(SystemParams.CompanyID);
}
else
{
var client = CreateClient<AssetInspectClient>();
sections = client.GetGlobalSectionItems(SystemParams.CompanyID);
}
return sections;
}
else
return new Section[0];
}
catch (Exception ex)
{
return ex.Message;
}
}
private object GetGlobalQuestions()
{
try
{
if (GetCurrentLoginSession() != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
string sectionid = HttpUtility.HtmlDecode(ps[1]);
Question[] questions = null;
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
questions = client.GetGlobalQuestions(SystemParams.CompanyID, sectionid);
}
else
{
var client = CreateClient<AssetInspectClient>();
questions = client.GetGlobalQuestions(SystemParams.CompanyID, sectionid);
}
return questions;
}
else
return new Question[0];
}
catch (Exception ex)
{
return ex.Message;
}
}
private object SaveGlobalSection()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
var data = HttpUtility.HtmlDecode(ps[1]);
Section sec = JsonConvert.DeserializeObject<Section>(data);
if (string.IsNullOrEmpty(sec.Id))
sec.Id = Guid.NewGuid().ToString();
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
client.UpdateGlobalSectionItem(SystemParams.CompanyID, sec, session.User.UID);
}
else
{
var client = CreateClient<AssetInspectClient>();
client.UpdateGlobalSectionItem(SystemParams.CompanyID, sec, session.User.UID);
}
return new string[] { sec.Id, "Saved successfully." };
}
else
{
return "Failed";
}
}
catch (Exception ex)
{
return ex.Message;
}
}
private object SaveGlobalQuestion()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
string[] data = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(data[0]);
string sectioinid = data[1];
Question q = JsonConvert.DeserializeObject<Question>(HttpUtility.HtmlDecode(data[2]));
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
if (string.IsNullOrEmpty(q.Id))
{
q.Id = Guid.NewGuid().ToString();
client.AddGlobalQuestion(SystemParams.CompanyID, sectioinid, q, session.User.UID);
}
else
{
client.UpdateGlobalQuestion(SystemParams.CompanyID, sectioinid, q, session.User.UID);
}
}
else
{
var client = CreateClient<AssetInspectClient>();
if (string.IsNullOrEmpty(q.Id))
{
q.Id = Guid.NewGuid().ToString();
client.AddGlobalQuestion(SystemParams.CompanyID, sectioinid, q, session.User.UID);
}
else
{
client.UpdateGlobalQuestion(SystemParams.CompanyID, sectioinid, q, session.User.UID);
}
}
return new string[] { q.Id, "Saved successfully." };
}
else
{
return "Failed";
}
}
catch (Exception ex)
{
return ex.Message;
}
}
private object DeleteGlobalSection()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
string sectionid = HttpUtility.HtmlDecode(ps[1]);
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
client.DeleteGlobalSection(SystemParams.CompanyID, sectionid, "", session.User.UID);
}
else
{
var client = CreateClient<AssetInspectClient>();
client.DeleteGlobalSection(SystemParams.CompanyID, sectionid, "", session.User.UID);
}
return "OK";
}
else
{
return "Failed";
}
}
catch (Exception ex)
{
return ex.Message;
}
}
private object DeleteGlobalQuestion()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
string questionid = HttpUtility.HtmlDecode(ps[1]);
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
client.DeleteGlobalQuestion(SystemParams.CompanyID, questionid, "", session.User.UID);
}
else
{
var client = CreateClient<AssetInspectClient>();
client.DeleteGlobalQuestion(SystemParams.CompanyID, questionid, "", session.User.UID);
}
return "OK";
}
else
{
return "Failed";
}
}
catch (Exception ex)
{
return ex.Message;
}
}
private object GetGlobalSectionsByID()
{
try
{
if (GetCurrentLoginSession() != null)
{
string clientdata = Request.Params["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
bool teamintelligence = Helper.IsTrue(ps[0]);
string[] sids = JsonConvert.DeserializeObject<string[]>(ps[1]);
Section[] sections = null;
if (teamintelligence)
{
var client = CreateClient<TeamIntelligenceClient>();
sections = client.GetGlobalSection(SystemParams.CompanyID, sids);
}
else
{
var client = CreateClient<AssetInspectClient>();
sections = client.GetGlobalSection(SystemParams.CompanyID, sids);
}
return sections;
}
else
return new Section[0];
}
catch (Exception ex)
{
return ex.Message;
}
}
private object GetAssetMakes()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
AssetMake[] makes = CreateClient<AssetClassProvider>().GetAssetMakes(string.Empty);
List<AssetMakeItem> ls = new List<AssetMakeItem>();
foreach (var mk in makes)
{
AssetMakeItem item = new AssetMakeItem();
Helper.CloneProperty(item, mk);
ls.Add(item);
}
return ls.OrderBy(m => m.Name).ToArray();
}
else
return new AssetMakeItem[0];
}
catch (Exception ex)
{
return ex.Message;
}
}
private object GetAssetModels()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
var clientdata = Request.Form["ClientData"];
string[] ps = JsonConvert.DeserializeObject<string[]>(clientdata);
int makeid = -1;
int.TryParse(ps[0], out makeid);
var searchtxt = HttpUtility.HtmlDecode(ps[1]);
AssetModel[] models = CreateClient<AssetClassProvider>().GetAssetModels(makeid, searchtxt);
List<AssetModelItem> ls = new List<AssetModelItem>();
foreach (var md in models)
{
AssetModelItem item = new AssetModelItem();
Helper.CloneProperty(item, md);
if (md.MakeId > 0)
{
item.MakeID = md.MakeId;
item.MakeName = md.MakeName;
}
if (md.TypeId > 0)
{
item.TypeID = md.TypeId;
item.TypeName = md.TypeName;
}
ls.Add(item);
}
return ls.OrderBy(m => m.Name).ToArray();
}
else
return new AssetModelItem[0];
}
catch (Exception ex)
{
return ex.Message;
}
}
private object GetAssetTypes()
{
try
{
var session = GetCurrentLoginSession();
if (session != null)
{
AssetType[] types = CreateClient<AssetClassProvider>().GetAssetTypes(SystemParams.CompanyID);
types = types.OrderBy((t) => t.Name).ToArray();
List<StringKeyValue> list = new List<StringKeyValue>();
foreach (AssetType md in types)
{
StringKeyValue kv = new StringKeyValue();
kv.Key = md.ID.ToString();
kv.Value = md.Name;
list.Add(kv);
}
return list.ToArray();
}
else
return new StringKeyValue[0];
}
catch (Exception ex)
{
return ex.Message;
}
}
}
class AssetInspectInfo : AssetInspectItem
{
public string CommitTimeStr { get { return CommitTime == DateTime.MinValue ? "" : CommitTime.ToString(("M/d/yyyy h:mm tt")); } }
public string CommitTimeLocalStr { get { return CommitTimeLocal == DateTime.MinValue ? "" : CommitTimeLocal.ToString(("M/d/yyyy h:mm tt")); } }
public string LastUpdatedTimeLocalStr { get { return LastUpdatedTime.Year <= 1900 ? "" : LastUpdatedTimeLocal.ToString(("M/d/yyyy h:mm tt")); } }
}
class TeamInspectInfo : TeamInspectItem
{
public string CommitTimeStr { get { return CommitTime == DateTime.MinValue ? "" : CommitTime.ToString(("M/d/yyyy h:mm tt")); } }
public string CommitTimeLocalStr { get { return CommitTimeLocal == DateTime.MinValue ? "" : CommitTimeLocal.ToString(("M/d/yyyy h:mm tt")); } }
public string LastUpdatedTimeLocalStr { get { return LastUpdatedTime.Year <= 1900 ? "" : LastUpdatedTimeLocal.ToString(("M/d/yyyy h:mm tt")); } }
}
class InspectReportItem : InspectReportInfo
{
public AssetBasicInfo Asset { get; set; }
public string CommitTimeStr { get { return CommitTime == DateTime.MinValue ? "" : CommitTime.ToString(("M/d/yyyy h:mm tt")); } }
public string CommitTimeLocalStr { get { return CommitTimeLocal == DateTime.MinValue ? "" : CommitTimeLocal.ToString(("M/d/yyyy h:mm tt")); } }
public List<IdentifiedQuestionItem> IdentifiedQuestions { get; set; }
}
class IdentifiedQuestionItem : Question
{
public SeverityLeveles IdentifiedSeverityLevel { get; set; }
}
class InspectReportEditItem : InspectReportInfo
{
public AssetBasicInfo Asset { get; set; }
public string CommitTimeStr { get { return CommitTime == DateTime.MinValue ? "" : CommitTime.ToString(("M/d/yyyy h:mm tt")); } }
public string CommitTimeLocalStr { get { return CommitTimeLocal == DateTime.MinValue ? "" : CommitTimeLocal.ToString(("M/d/yyyy h:mm tt")); } }
public UserEmailInfo[] EmailList { get; set; }
public AssetBasicInfo[] AssetList { get; set; }
public JobSiteItem[] JobSiteList { get; set; }
}
}