From 0886def1edab2dfeb34c1b186128d2c26ed4de21 Mon Sep 17 00:00:00 2001 From: fly-l <1420031550@qq.com> Date: Tue, 31 Oct 2023 18:25:58 +0800 Subject: [PATCH] 2023-10-31 --- SGGL/FineUIPro.Web/common/main_new0.aspx.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SGGL/FineUIPro.Web/common/main_new0.aspx.cs b/SGGL/FineUIPro.Web/common/main_new0.aspx.cs index cd4c44ec..602f5250 100644 --- a/SGGL/FineUIPro.Web/common/main_new0.aspx.cs +++ b/SGGL/FineUIPro.Web/common/main_new0.aspx.cs @@ -648,7 +648,7 @@ namespace FineUIPro.Web.common public static int GetCompletedNum() { var result = (from x in Funs.DB.Solution_LargerHazard - where x.States == "1" && x.IsSuperLargerHazard == false && + where x.States != "0" && x.IsSuperLargerHazard == false && x.RecordTime > Const.DtmarkTime select x).Count(); return result; @@ -699,7 +699,7 @@ namespace FineUIPro.Web.common public static int GetSuperCompletedNum() { var result = (from x in Funs.DB.Solution_LargerHazard - where x.States == "1" && x.IsSuperLargerHazard == true && + where x.States != "0" && x.IsSuperLargerHazard == true && x.RecordTime > Const.DtmarkTime select x).Count(); return result;