diff --git a/IronIntelContractorSiteLib/InspectionBasePage.cs b/IronIntelContractorSiteLib/InspectionBasePage.cs index aafe20c..7e355ed 100644 --- a/IronIntelContractorSiteLib/InspectionBasePage.cs +++ b/IronIntelContractorSiteLib/InspectionBasePage.cs @@ -1,7 +1,6 @@ using Foresight.Fleet.Services.Asset; using Foresight.Fleet.Services.AssetHealth; using Foresight.Fleet.Services.Inspection; -using Foresight.Fleet.Services.JobSite; using Foresight.ServiceModel; using IronIntel.Contractor.FilterQ; using IronIntel.Contractor.Machines; @@ -289,9 +288,10 @@ namespace IronIntel.Contractor.Site } } } + var ic = CreateClient(); if (hasEmail) { - ir.EmailList = aic.GetInspectEmailList(companyId, string.Empty); + ir.EmailList = Download(() => ic.DownloadTeamIntelligenceUsers(companyId)).OrderBy(e => e.UserName).ToArray(); } //if (hasAsset) //{ @@ -300,8 +300,7 @@ namespace IronIntel.Contractor.Site //} if (hasJobsite) { - var jc = CreateClient(); - ir.JobSiteList = jc.GetJobSiteLimitItems(companyId, string.Empty); + ir.JobSiteList = Download(() => ic.DownloadJobSites(companyId, session.User.UID)).OrderBy(j => j.Name).ToArray(); } return ir; } @@ -325,8 +324,11 @@ namespace IronIntel.Contractor.Site //string[] ps = JsonConvert.DeserializeObject(clientdata); string companyId = SystemParams.CompanyID; - var ac = CreateClient(); - var assets = ac.GetAssetBasicInfoByUser(companyId, string.Empty, session.User.UID); + var ac = CreateClient(); + var list = new List(); + var assets = Download(startid => ac.DownloadAssets(companyId, session.User.UID, startid, 20000)) + .OrderBy(a => a.Name) + .ToArray(); return assets; } @@ -339,6 +341,50 @@ namespace IronIntel.Contractor.Site } } + private List Download(Func download, long startid = -1, int size = 100) + { + var list = new List(); + 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 Download(Func> download) + { + int count = 0; + while (count < 5) + { + try + { + return download(); + } + catch + { + count++; + } + } + return null; + } + private object UpdateInspectionReport() { try @@ -347,6 +393,7 @@ namespace IronIntel.Contractor.Site if (session != null) { string clientdata = Request.Params["ClientData"]; + clientdata = HttpUtility.HtmlDecode(clientdata); var report = JsonConvert.DeserializeObject(clientdata); bool isTeam = report.Target == TemplateTargets.Person; @@ -573,6 +620,16 @@ namespace IronIntel.Contractor.Site 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) { @@ -582,7 +639,7 @@ namespace IronIntel.Contractor.Site else { var client = CreateClient(); - templates = client.GetFormTemplateItems(SystemParams.CompanyID, filter, user.IID, state); + templates = client.GetAssetTemplateItems(SystemParams.CompanyID, filter, makeid, modelid, typeid, user.IID, state); } return templates; } @@ -1223,7 +1280,7 @@ namespace IronIntel.Contractor.Site 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 JobSiteLimitItem[] JobSiteList { get; set; } + public JobSiteItem[] JobSiteList { get; set; } } } diff --git a/Reflib/FleetServiceClient.dll b/Reflib/FleetServiceClient.dll index b2c877b..bdb8979 100644 Binary files a/Reflib/FleetServiceClient.dll and b/Reflib/FleetServiceClient.dll differ diff --git a/Site b/Site index f18f900..0d41da8 160000 --- a/Site +++ b/Site @@ -1 +1 @@ -Subproject commit f18f90035b8af122e5489264d05ea3b4fd04e7bc +Subproject commit 0d41da80b581050ac0a71bb242117d3b6f11a908