diff --git a/DataBase/版本日志/SGGLDB_WH_2023-09-04.sql b/DataBase/版本日志/SGGLDB_WH_2023-09-04.sql
new file mode 100644
index 00000000..2e4f4386
--- /dev/null
+++ b/DataBase/版本日志/SGGLDB_WH_2023-09-04.sql
@@ -0,0 +1,2 @@
+update Inspection_SummaryMb set MenuP='WBSü',MenuC='WBSü' WHERE MenuP='WBS'
+GO
\ No newline at end of file
diff --git a/SGGL/BLL/OpenService/GetDataService.cs b/SGGL/BLL/OpenService/GetDataService.cs
index 30dd7df6..6f33075f 100644
--- a/SGGL/BLL/OpenService/GetDataService.cs
+++ b/SGGL/BLL/OpenService/GetDataService.cs
@@ -272,8 +272,8 @@ namespace BLL
{
try
{
- DateTime dateS = DateTime.Now.AddMonths(-6);
- dateS = Funs.GetNewDateTimeOrNow(DateTime.Now.AddMonths(-6).Year + "-" + DateTime.Now.AddMonths(-6).Month + "-01");
+ DateTime dateS = DateTime.Now.AddMonths(-12);
+ dateS = Funs.GetNewDateTimeOrNow(DateTime.Now.AddMonths(-12).Year + "-" + DateTime.Now.AddMonths(-12).Month + "-01");
var getNums = from x in db.SitePerson_PersonInOutNumber
where x.ProjectId == projectId && x.InOutDate >= dateS
orderby x.InOutDate
diff --git a/SGGL/FineUIPro.Web/ZHGL/InspectionSummary/InspectionSummary.aspx b/SGGL/FineUIPro.Web/ZHGL/InspectionSummary/InspectionSummary.aspx
index 843ab25c..89e06a9f 100644
--- a/SGGL/FineUIPro.Web/ZHGL/InspectionSummary/InspectionSummary.aspx
+++ b/SGGL/FineUIPro.Web/ZHGL/InspectionSummary/InspectionSummary.aspx
@@ -18,7 +18,7 @@
ClicksToEdit="2" DataIDField="InspectionSummaryId" AllowSorting="true" SortField="SortId"
SortDirection="DESC" EnableColumnLines="true"
AllowPaging="true" IsDatabasePaging="true" PageSize="10" IsFluid="true"
- EnableRowDoubleClickEvent="true">
+ EnableRowDoubleClickEvent="true" AllowColumnLocking="true">
@@ -49,14 +49,14 @@
+ FieldType="String" HeaderText="序号" TextAlign="Left" HeaderTextAlign="Center" ID="SNumber" ShowToolTip="true" Locked="true">
+ FieldType="String" HeaderText="模块" TextAlign="Left" HeaderTextAlign="Center" Locked="true">
-
+
diff --git a/SGGL/FineUIPro.Web/ZHGL/InspectionSummary/InspectionSummary.aspx.cs b/SGGL/FineUIPro.Web/ZHGL/InspectionSummary/InspectionSummary.aspx.cs
index d61a384c..93fa7ba8 100644
--- a/SGGL/FineUIPro.Web/ZHGL/InspectionSummary/InspectionSummary.aspx.cs
+++ b/SGGL/FineUIPro.Web/ZHGL/InspectionSummary/InspectionSummary.aspx.cs
@@ -443,7 +443,14 @@ namespace FineUIPro.Web.ZHGL.InspectionSummary
model.CompileDateMonth = this.drpCompileDateMonth.Text.Trim();
model.InspectionSummaryId = Guid.NewGuid().ToString();
model.InspectionSummaryMbId = "10";
- model.SummeryResult = listWbs.Where(x => x.ProjectId == pid).ToList().Count.ToString();
+ var WbsCount = listWbs.Where(x => x.ProjectId == pid).ToList().Count;
+ if (WbsCount > 0)
+ {
+ model.SummeryResult = "已裁剪";
+ }
+ else {
+ model.SummeryResult = "未裁剪";
+ }
allList.Add(model);
//综合管理
diff --git a/SGGL/FineUIPro.Web/common/mainProject2.aspx b/SGGL/FineUIPro.Web/common/mainProject2.aspx
index 48d4a4bc..9043f130 100644
--- a/SGGL/FineUIPro.Web/common/mainProject2.aspx
+++ b/SGGL/FineUIPro.Web/common/mainProject2.aspx
@@ -19,6 +19,35 @@
body.f-body {
padding: 0px;
}
+
+ /*头部按钮样式*/
+ .bgbtn_dbsx{
+ display: inline-block;
+ position: absolute;
+ width: 5%;
+ height: 4%;
+ left: 79%;
+ top: 51px;
+ background: green !important;
+ border: none !important;
+ padding: 0 !important;
+ }
+
+ .bgbtn_gjsx{
+ display: inline-block;
+ position: absolute;
+ width: 5%;
+ height: 4%;
+ left: 72%;
+ top: 51px;
+ background: red !important;
+ border: none !important;
+ padding: 0 !important;
+ }
+ .div_border {
+ border: 1px solid #00FFFF;
+ }
+