diff --git a/IronIntelContractorSiteLib/InspectionBasePage.cs b/IronIntelContractorSiteLib/InspectionBasePage.cs index da0b44c..551043f 100644 --- a/IronIntelContractorSiteLib/InspectionBasePage.cs +++ b/IronIntelContractorSiteLib/InspectionBasePage.cs @@ -93,6 +93,9 @@ namespace IronIntel.Contractor.Site case "GetAssetBasicInfoForEdit": result = GetAssetBasicInfoForEdit(); break; + case "UpdateInspectionReport": + result = UpdateInspectionReport(); + break; } } } @@ -336,6 +339,50 @@ namespace IronIntel.Contractor.Site } } + private object UpdateInspectionReport() + { + try + { + var session = GetCurrentLoginSession(); + if (session != null) + { + string clientdata = Request.Params["ClientData"]; + var report = JsonConvert.DeserializeObject(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(); + tc.UpdateTeamInspect(companyId, report, session.User.UID); + } + else + { + var ac = CreateClient(); + ac.UpdateAssetInspect(companyId, report, session.User.UID); + } + + return true; + } + else + return null; + } + catch (Exception ex) + { + return ex.Message; + } + } + private object GetInspectionReport() { try @@ -1160,7 +1207,7 @@ namespace IronIntel.Contractor.Site { 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 == default ? "" : CommitTimeLocal.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 IdentifiedQuestions { get; set; } } class IdentifiedQuestionItem : Question @@ -1171,7 +1218,7 @@ namespace IronIntel.Contractor.Site { 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 == default ? "" : CommitTimeLocal.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 JobSiteLimitItem[] JobSiteList { get; set; } diff --git a/Reflib/FICore.std.dll b/Reflib/FICore.std.dll index 2e094d7..e424a5a 100644 Binary files a/Reflib/FICore.std.dll and b/Reflib/FICore.std.dll differ diff --git a/Reflib/FleetServiceClient.dll b/Reflib/FleetServiceClient.dll index 35cf8cb..b2c877b 100644 Binary files a/Reflib/FleetServiceClient.dll and b/Reflib/FleetServiceClient.dll differ diff --git a/Site b/Site index 8ed076c..9df75cc 160000 --- a/Site +++ b/Site @@ -1 +1 @@ -Subproject commit 8ed076ccd71d4b2dac98850f4ef8188401401f19 +Subproject commit 9df75cc0b79d0ce12c5e4095e9f31bfb675ebd35