diff --git a/HJGL_DS/.vs/SGGL/v15/Server/sqlite3/storage.ide-wal b/HJGL_DS/.vs/SGGL/v15/Server/sqlite3/storage.ide-wal index dc1cb0f..6c42f95 100644 Binary files a/HJGL_DS/.vs/SGGL/v15/Server/sqlite3/storage.ide-wal and b/HJGL_DS/.vs/SGGL/v15/Server/sqlite3/storage.ide-wal differ diff --git a/HJGL_DS/.vs/config/applicationhost.config b/HJGL_DS/.vs/config/applicationhost.config index befab23..03a3064 100644 --- a/HJGL_DS/.vs/config/applicationhost.config +++ b/HJGL_DS/.vs/config/applicationhost.config @@ -162,7 +162,7 @@ - + @@ -170,7 +170,7 @@ - + diff --git a/HJGL_DS/BLL/API/APIBaseServices.cs b/HJGL_DS/BLL/API/APIBaseServices.cs index c0f2ae0..55cbd05 100644 --- a/HJGL_DS/BLL/API/APIBaseServices.cs +++ b/HJGL_DS/BLL/API/APIBaseServices.cs @@ -350,8 +350,9 @@ namespace BLL.API using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) { var q = (from x in db.HJGL_BS_Welder - join y in db.Project_Welder on x.WED_ID equals y.WED_ID - where y.ProjectId == projectId && x.WED_IfOnGuard == true + join +y in db.Project_Welder on x.WED_ID equals y.WED_ID + where y.ProjectId == projectId orderby x.WED_Code select x).ToList(); diff --git a/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs b/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs index f9fb7a2..c1276ad 100644 --- a/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs +++ b/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs @@ -714,29 +714,26 @@ namespace BLL { newJointInfo.RT2_RepairFilmNum = newJointInfo.RT2_RepairFilmNum - 1; } - if (!string.IsNullOrEmpty(newJointInfo.RT2_RepairFilm)) + string[] strs = newJointInfo.RT2_RepairFilm.Split(','); + if (strs.Length == 1) { - string[] strs = newJointInfo.RT2_RepairFilm.Split(','); - if (strs.Length == 1) + newJointInfo.RT2_RepairFilm = null; + } + else + { + string str = string.Empty; + foreach (var item in strs) { - newJointInfo.RT2_RepairFilm = null; + if (item != filmNum) + { + str += item + ","; + } } - else + if (!string.IsNullOrEmpty(str)) { - string str = string.Empty; - foreach (var item in strs) - { - if (item != filmNum) - { - str += item + ","; - } - } - if (!string.IsNullOrEmpty(str)) - { - str = str.Substring(0, str.LastIndexOf(",")); - } - newJointInfo.RT2_RepairFilm = str; + str = str.Substring(0, str.LastIndexOf(",")); } + newJointInfo.RT2_RepairFilm = str; } newJointInfo.HardResultDate = DateTime.Now; db.SubmitChanges(); @@ -792,29 +789,26 @@ namespace BLL { newJointInfo.RT3_RepairFilmNum = newJointInfo.RT3_RepairFilmNum - 1; } - if (!string.IsNullOrEmpty(newJointInfo.RT3_RepairFilm)) + string[] strs = newJointInfo.RT3_RepairFilm.Split(','); + if (strs.Length == 1) { - string[] strs = newJointInfo.RT3_RepairFilm.Split(','); - if (strs.Length == 1) + newJointInfo.RT3_RepairFilm = null; + } + else + { + string str = string.Empty; + foreach (var item in strs) { - newJointInfo.RT3_RepairFilm = null; + if (item != filmNum) + { + str += item + ","; + } } - else + if (!string.IsNullOrEmpty(str)) { - string str = string.Empty; - foreach (var item in strs) - { - if (item != filmNum) - { - str += item + ","; - } - } - if (!string.IsNullOrEmpty(str)) - { - str = str.Substring(0, str.LastIndexOf(",")); - } - newJointInfo.RT3_RepairFilm = str; + str = str.Substring(0, str.LastIndexOf(",")); } + newJointInfo.RT3_RepairFilm = str; } newJointInfo.HardResultDate = DateTime.Now; db.SubmitChanges(); diff --git a/HJGL_DS/FineUIPro.Web/File/Excel/HJGL_DataIn/焊口信息导入模板.xls b/HJGL_DS/FineUIPro.Web/File/Excel/HJGL_DataIn/焊口信息导入模板.xls index c841591..6ba8a79 100644 Binary files a/HJGL_DS/FineUIPro.Web/File/Excel/HJGL_DataIn/焊口信息导入模板.xls and b/HJGL_DS/FineUIPro.Web/File/Excel/HJGL_DataIn/焊口信息导入模板.xls differ diff --git a/HJGL_DS/FineUIPro.Web/File/Excel/热处理台账.xlsx b/HJGL_DS/FineUIPro.Web/File/Excel/热处理台账.xlsx index 6ec8160..3488915 100644 Binary files a/HJGL_DS/FineUIPro.Web/File/Excel/热处理台账.xlsx and b/HJGL_DS/FineUIPro.Web/File/Excel/热处理台账.xlsx differ diff --git a/HJGL_DS/FineUIPro.Web/File/Excel/热处理数据录入导入模板.xlsx b/HJGL_DS/FineUIPro.Web/File/Excel/热处理数据录入导入模板.xlsx index 4256825..0f12aa6 100644 Binary files a/HJGL_DS/FineUIPro.Web/File/Excel/热处理数据录入导入模板.xlsx and b/HJGL_DS/FineUIPro.Web/File/Excel/热处理数据录入导入模板.xlsx differ diff --git a/HJGL_DS/FineUIPro.Web/HJGL/DataIn/WeldReportIn.aspx.cs b/HJGL_DS/FineUIPro.Web/HJGL/DataIn/WeldReportIn.aspx.cs index a2764fc..aa308d5 100644 --- a/HJGL_DS/FineUIPro.Web/HJGL/DataIn/WeldReportIn.aspx.cs +++ b/HJGL_DS/FineUIPro.Web/HJGL/DataIn/WeldReportIn.aspx.cs @@ -527,7 +527,7 @@ namespace FineUIPro.Web.HJGL.DataIn decimal? sch = Funs.GetNewDecimal(joint.JOT_Sch); string wmeCode = weldMethod.WME_Code; - string[] wmeCodes = wmeCode.Split('+'); + string[] wmeCodes = wmeCode.Split('/'); string location = locationItem.Value; string ste = joint.STE_ID; diff --git a/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx b/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx index c93b612..92ee250 100644 --- a/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx +++ b/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx @@ -261,9 +261,6 @@ - diff --git a/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx.cs b/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx.cs index b32d290..d737a2e 100644 --- a/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx.cs +++ b/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx.cs @@ -121,7 +121,7 @@ namespace FineUIPro.Web.HJGL.HotProessManage if (this.tvControlItem.SelectedNode.CommandName == "项目名称") { strSql = @"SELECT JointInfo.ProjectId,JointInfo.JOT_ID,Project.ProjectCode,HotProessItem.PrintDate,Sort1,Sort2,Sort3,Sort4,Sort5, - JointInfo.JOT_ID+'1' as JOT_ID1, JointInfo.JOT_ID+'2' as JOT_ID2,JointInfo.JOT_ID+'3' as JOT_ID3,JointInfo.JOT_ID+'4' as JOT_ID4,JointInfo.JOT_ID+'5' as JOT_ID5, + JointInfo.JOT_ID+'1' as JOT_ID1, JointInfo.JOT_ID+'2' as JOT_ID2,JointInfo.JOT_ID+'3' as JOT_ID3,JointInfo.JOT_ID+'4' as JOT_ID4, (CASE WHEN v.RepairMark IS NOT NULL THEN (JointInfo.JOT_JointNo+v.RepairMark) ELSE JointInfo.JOT_JointNo END )+isnull((select Top 1 HardRepairMark from dbo.HJGL_CH_HotProessTrustItem a where a.JOT_ID=HotProessItem.JOT_ID and a.HotProessTrustId=HotProessItem.HotProessTrustId and a.ProessTypes=HotProessItem.ProessTypes),'') AS JOT_JointNo,IsoInfo.ISO_IsoNo,IsoInfo.ISO_ID, (CASE WHEN Steel.STE_Code IS NOT NULL AND Steel2.STE_Code IS NOT NULL and Steel.STE_Code!=Steel2.STE_Code @@ -1366,7 +1366,7 @@ namespace FineUIPro.Web.HJGL.HotProessManage NPOI.SS.UserModel.ISheet sheet = workbook.GetSheetAt(0); int i = 2; strSql = @"SELECT JointInfo.ProjectId,JointInfo.JOT_ID,Project.ProjectCode,HotProessItem.PrintDate,HotProessTrust.HotProessTrustCode,(select Top 1 TrustDate from dbo.HJGL_CH_HotProessTrustItem a where a.JOT_ID=HotProessItem.JOT_ID and a.HotProessTrustId=HotProessItem.HotProessTrustId) as TrustDate, - JointInfo.JOT_ID+'1' as JOT_ID1, JointInfo.JOT_ID+'2' as JOT_ID2,JointInfo.JOT_ID+'3' as JOT_ID3,JointInfo.JOT_ID+'4' as JOT_ID4,JointInfo.JOT_ID+'5' as JOT_ID5, + JointInfo.JOT_ID+'1' as JOT_ID1, JointInfo.JOT_ID+'2' as JOT_ID2,JointInfo.JOT_ID+'3' as JOT_ID3,JointInfo.JOT_ID+'4' as JOT_ID4, (CASE WHEN v.RepairMark IS NOT NULL THEN (JointInfo.JOT_JointNo+v.RepairMark) ELSE JointInfo.JOT_JointNo END )+isnull((select Top 1 HardRepairMark from dbo.HJGL_CH_HotProessTrustItem a where a.JOT_ID=HotProessItem.JOT_ID and a.HotProessTrustId=HotProessItem.HotProessTrustId and a.ProessTypes=HotProessItem.ProessTypes),'') AS JOT_JointNo,IsoInfo.ISO_IsoNo,IsoInfo.ISO_ID, (CASE WHEN Steel.STE_Code IS NOT NULL AND Steel2.STE_Code IS NOT NULL and Steel.STE_Code!=Steel2.STE_Code @@ -1403,21 +1403,20 @@ namespace FineUIPro.Web.HJGL.HotProessManage NPOI.SS.UserModel.IRow row; NPOI.SS.UserModel.ICell cell; List jotIds = new List(); - int col13 = 0, col14 = 0, col15 = 0, col16 = 0, col17 = 0; + int col13 = 0, col14 = 0, col15 = 0, col16 = 0; for (int j = 0; j < tb.Rows.Count; j++) { if (!jotIds.Contains(tb.Rows[j]["JOT_ID"].ToString())) { string jotId = tb.Rows[j]["JOT_ID"].ToString(); jotIds.Add(jotId); - var attachFile5 = attachFiles.FirstOrDefault(x => x.ToKeyId == (jotId + "5")); var attachFile1 = attachFiles.FirstOrDefault(x => x.ToKeyId == (jotId + "1")); var attachFile2 = attachFiles.FirstOrDefault(x => x.ToKeyId == (jotId + "2")); var attachFile3 = attachFiles.FirstOrDefault(x => x.ToKeyId == (jotId + "3")); var attachFile4 = attachFiles.FirstOrDefault(x => x.ToKeyId == (jotId + "4")); - if (attachFile5 != null) + if (attachFile1 != null) { - string url = BLL.Funs.RootPath + attachFile5.AttachUrl; + string url = BLL.Funs.RootPath + attachFile1.AttachUrl; if (File.Exists(url)) { System.Drawing.Image image = System.Drawing.Image.FromFile(url); @@ -1427,9 +1426,9 @@ namespace FineUIPro.Web.HJGL.HotProessManage } } } - if (attachFile1 != null) + if (attachFile2 != null) { - string url = BLL.Funs.RootPath + attachFile1.AttachUrl; + string url = BLL.Funs.RootPath + attachFile2.AttachUrl; if (File.Exists(url)) { System.Drawing.Image image = System.Drawing.Image.FromFile(url); @@ -1439,9 +1438,9 @@ namespace FineUIPro.Web.HJGL.HotProessManage } } } - if (attachFile2 != null) + if (attachFile3 != null) { - string url = BLL.Funs.RootPath + attachFile2.AttachUrl; + string url = BLL.Funs.RootPath + attachFile3.AttachUrl; if (File.Exists(url)) { System.Drawing.Image image = System.Drawing.Image.FromFile(url); @@ -1451,27 +1450,15 @@ namespace FineUIPro.Web.HJGL.HotProessManage } } } - if (attachFile3 != null) - { - string url = BLL.Funs.RootPath + attachFile3.AttachUrl; - if (File.Exists(url)) - { - System.Drawing.Image image = System.Drawing.Image.FromFile(url); - if (image.Width > col16) - { - col16 = image.Width; - } - } - } if (attachFile4 != null) { string url = BLL.Funs.RootPath + attachFile4.AttachUrl; if (File.Exists(url)) { System.Drawing.Image image = System.Drawing.Image.FromFile(url); - if (image.Width > col17) + if (image.Width > col16) { - col17 = image.Width; + col16 = image.Width; } } } @@ -1494,10 +1481,6 @@ namespace FineUIPro.Web.HJGL.HotProessManage { sheet.SetColumnWidth(16, col16 * 37); } - if (col17 > 0) - { - sheet.SetColumnWidth(17, col17 * 37); - } i = 2; jotIds.Clear(); for (int j = 0; j < tb.Rows.Count; j++) @@ -1507,24 +1490,11 @@ namespace FineUIPro.Web.HJGL.HotProessManage string jotId = tb.Rows[j]["JOT_ID"].ToString(); jotIds.Add(jotId); row = sheet.CreateRow(i); - var attachFile5 = attachFiles.FirstOrDefault(x => x.ToKeyId == (jotId + "5")); var attachFile1 = attachFiles.FirstOrDefault(x => x.ToKeyId == (jotId + "1")); var attachFile2 = attachFiles.FirstOrDefault(x => x.ToKeyId == (jotId + "2")); var attachFile3 = attachFiles.FirstOrDefault(x => x.ToKeyId == (jotId + "3")); var attachFile4 = attachFiles.FirstOrDefault(x => x.ToKeyId == (jotId + "4")); int height = 0; - if (attachFile5 != null) - { - string url = BLL.Funs.RootPath + attachFile5.AttachUrl; - if (File.Exists(url)) - { - System.Drawing.Image image = System.Drawing.Image.FromFile(url); - if (image.Height > height) - { - height = image.Height; - } - } - } if (attachFile1 != null) { string url = BLL.Funs.RootPath + attachFile1.AttachUrl; @@ -1647,26 +1617,15 @@ namespace FineUIPro.Web.HJGL.HotProessManage cell.SetCellValue(string.Empty); cell = row.CreateCell(17); cell.CellStyle = cellStyle; - cell.SetCellValue(string.Empty); - cell = row.CreateCell(18); - cell.CellStyle = cellStyle; cell.SetCellValue(tb.Rows[j]["Remark"].ToString()); - if (attachFile5 != null) - { - string fp = BLL.Funs.RootPath + attachFile5.AttachUrl; - if (File.Exists(fp)) - { - byte[] fileBytes = File.ReadAllBytes(fp); - TryAddPicture(sheet, i, 13, fileBytes, PictureType.PNG); - } - } + if (attachFile1 != null) { string fp = BLL.Funs.RootPath + attachFile1.AttachUrl; if (File.Exists(fp)) { byte[] fileBytes = File.ReadAllBytes(fp); - TryAddPicture(sheet, i, 14, fileBytes, PictureType.PNG); + TryAddPicture(sheet, i, 13, fileBytes, PictureType.PNG); } } if (attachFile2 != null) @@ -1675,7 +1634,7 @@ namespace FineUIPro.Web.HJGL.HotProessManage if (File.Exists(fp)) { byte[] fileBytes = File.ReadAllBytes(fp); - TryAddPicture(sheet, i, 15, fileBytes, PictureType.PNG); + TryAddPicture(sheet, i, 14, fileBytes, PictureType.PNG); } } if (attachFile3 != null) @@ -1684,7 +1643,7 @@ namespace FineUIPro.Web.HJGL.HotProessManage if (File.Exists(fp)) { byte[] fileBytes = File.ReadAllBytes(fp); - TryAddPicture(sheet, i, 16, fileBytes, PictureType.PNG); + TryAddPicture(sheet, i, 15, fileBytes, PictureType.PNG); } } if (attachFile4 != null) @@ -1693,7 +1652,7 @@ namespace FineUIPro.Web.HJGL.HotProessManage if (File.Exists(fp)) { byte[] fileBytes = File.ReadAllBytes(fp); - TryAddPicture(sheet, i, 17, fileBytes, PictureType.PNG); + TryAddPicture(sheet, i, 16, fileBytes, PictureType.PNG); } } diff --git a/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEditImport.aspx.cs b/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEditImport.aspx.cs index 7eae38d..c1fddff 100644 --- a/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEditImport.aspx.cs +++ b/HJGL_DS/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEditImport.aspx.cs @@ -547,21 +547,17 @@ namespace FineUIPro.Web.HJGL.HotProessManage string jotId = dic[a]; if (b == 16) { - jotId += "5"; + jotId += "1"; } else if (b == 17) { - jotId += "1"; + jotId += "2"; } else if (b == 18) - { - jotId += "2"; - } - else if (b == 19) { jotId += "3"; } - else if (b == 20) + else if (b == 19) { jotId += "4"; } diff --git a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.cs b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.cs index aec29e6..3de3eb0 100644 --- a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.cs +++ b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.cs @@ -527,7 +527,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage DataTable tb = BLL.SQLHelper.GetDataTableRunProc("HJGL_spRepairJointWorkRecord", parameter); Dictionary keyValuePairs = new Dictionary(); - keyValuePairs.Add("ProjectName", BLL.Base_ProjectService.GetProjectName(projectId)); + keyValuePairs.Add("ProjectName", BLL.Base_ProjectService.GetProjectByProjectId(projectId).ProjectName); BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs); DataTable dt = new DataTable(); diff --git a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs index 490fddb..756b96f 100644 --- a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs +++ b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs @@ -359,7 +359,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage wmeCode = wm.WME_Code; } - string[] wmeCodes = wmeCode.Split('+'); + string[] wmeCodes = wmeCode.Split('/'); string location = item.JOT_Location; string ste = jot.STE_ID; diff --git a/HJGL_DS/FineUIPro.Web/Web.config b/HJGL_DS/FineUIPro.Web/Web.config index bf404b8..97d6b43 100644 --- a/HJGL_DS/FineUIPro.Web/Web.config +++ b/HJGL_DS/FineUIPro.Web/Web.config @@ -11,7 +11,7 @@ - + diff --git a/HJGL_DS/FineUIPro.Web/WeldMat/Stock/StockInEdit.aspx.cs b/HJGL_DS/FineUIPro.Web/WeldMat/Stock/StockInEdit.aspx.cs index 27b2e0f..43db0b4 100644 --- a/HJGL_DS/FineUIPro.Web/WeldMat/Stock/StockInEdit.aspx.cs +++ b/HJGL_DS/FineUIPro.Web/WeldMat/Stock/StockInEdit.aspx.cs @@ -188,16 +188,16 @@ namespace FineUIPro.Web.WeldMat.Stock { stockIn.AttachUrl = att.First().AttachUrl; } - //var mat = from x in Funs.DB.Weld_UsingMat where x.StockInId == this.StockInId select x; - //if (mat.Count() > 0) - //{ - // // 焊材已有领用,不更新数量 - // BLL.StockInService.UpdateStockIn1(stockIn); - //} - //else - //{ + var mat = from x in Funs.DB.Weld_UsingMat where x.StockInId == this.StockInId select x; + if (mat.Count() > 0) + { + // 焊材已有领用,不更新数量 + BLL.StockInService.UpdateStockIn1(stockIn); + } + else + { BLL.StockInService.UpdateStockIn(stockIn); - //} + } BLL.Sys_LogService.AddLog(Const.System_7, this.CurrUser.LoginProjectId, this.CurrUser.UserId, "修改焊材入库录入"); } else diff --git a/HJGL_DS/FineUIPro.Web/WeldMat/UsingSentMat/UsingtMatSelect.aspx b/HJGL_DS/FineUIPro.Web/WeldMat/UsingSentMat/UsingtMatSelect.aspx index ae84aaa..bb0ec87 100644 --- a/HJGL_DS/FineUIPro.Web/WeldMat/UsingSentMat/UsingtMatSelect.aspx +++ b/HJGL_DS/FineUIPro.Web/WeldMat/UsingSentMat/UsingtMatSelect.aspx @@ -99,7 +99,7 @@ + HeaderText="质保书号" HeaderTextAlign="Center" TextAlign="Center"> diff --git a/HJGL_DS/WebAPI/Controllers/JointInfoController.cs b/HJGL_DS/WebAPI/Controllers/JointInfoController.cs index 16c9739..60dfe7c 100644 --- a/HJGL_DS/WebAPI/Controllers/JointInfoController.cs +++ b/HJGL_DS/WebAPI/Controllers/JointInfoController.cs @@ -148,7 +148,7 @@ namespace WebAPI.Controllers decimal? sch = Funs.GetNewDecimal(joint.JOT_Sch); string wmeCode = weldMethod.WME_Code; - string[] wmeCodes = wmeCode.Split('+'); + string[] wmeCodes = wmeCode.Split('/'); string location = locationItem.Value; string ste = joint.STE_ID; diff --git a/HJGL_DS/WebAPI/Properties/PublishProfiles/FolderProfile.pubxml.user b/HJGL_DS/WebAPI/Properties/PublishProfiles/FolderProfile.pubxml.user index cca65e6..17a9a86 100644 --- a/HJGL_DS/WebAPI/Properties/PublishProfiles/FolderProfile.pubxml.user +++ b/HJGL_DS/WebAPI/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -79,13 +79,13 @@ 09/10/2013 16:29:20 - 03/31/2025 16:00:54 + 03/12/2025 10:55:18 07/03/2024 11:01:05 - 03/31/2025 16:00:54 + 03/12/2025 10:55:18 12/17/2020 21:32:28 @@ -115,10 +115,10 @@ 07/25/2012 11:48:56 - 03/31/2025 16:00:53 + 03/12/2025 10:55:15 - 03/31/2025 16:00:53 + 03/12/2025 10:55:15 02/18/2018 09:44:54 @@ -316,10 +316,10 @@ 02/01/2018 12:20:56 - 03/31/2025 16:00:58 + 03/12/2025 10:55:21 - 03/31/2025 16:00:58 + 03/12/2025 10:55:21 01/23/2014 13:57:34 @@ -445,7 +445,7 @@ 07/03/2024 11:01:07 - 03/31/2025 16:01:11 + 03/12/2025 10:55:47 \ No newline at end of file