diff --git a/.vs/CNCEC_SUBQHSE_WUHUAN/v17/.wsuo b/.vs/CNCEC_SUBQHSE_WUHUAN/v17/.wsuo
index 6b7a5a4a..a10de9ee 100644
Binary files a/.vs/CNCEC_SUBQHSE_WUHUAN/v17/.wsuo and b/.vs/CNCEC_SUBQHSE_WUHUAN/v17/.wsuo differ
diff --git a/.vs/CNCEC_SUBQHSE_WUHUAN/v17/DocumentLayout.json b/.vs/CNCEC_SUBQHSE_WUHUAN/v17/DocumentLayout.json
new file mode 100644
index 00000000..377abef3
--- /dev/null
+++ b/.vs/CNCEC_SUBQHSE_WUHUAN/v17/DocumentLayout.json
@@ -0,0 +1,79 @@
+{
+ "Version": 1,
+ "WorkspaceRootPath": "D:\\\u6570\u636E\\\u8BFA\u5FC5\u8FBE\\\u4E94\u73AF\\CNCEC_SUBQHSE_WUHUAN\\",
+ "Documents": [],
+ "DocumentGroupContainers": [
+ {
+ "Orientation": 1,
+ "VerticalTabListWidth": 256,
+ "DocumentGroups": [
+ {
+ "DockedHeight": 200,
+ "SelectedChildIndex": -1,
+ "Children": [
+ {
+ "$type": "Bookmark",
+ "Name": "ST:0:0:{e506b91c-c606-466a-90a9-123d1d1e12b3}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:130:0:{116d2292-e37d-41cd-a077-ebacac4c8cc4}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:132:0:{116d2292-e37d-41cd-a077-ebacac4c8cc4}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:133:0:{116d2292-e37d-41cd-a077-ebacac4c8cc4}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:134:0:{116d2292-e37d-41cd-a077-ebacac4c8cc4}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:1:0:{f2bd8fb8-fc94-3dae-a733-fd993c73cc87}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:131:0:{1fc202d4-d401-403c-9834-5b218574bb67}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:129:0:{13b12e3e-c1b4-4539-9371-4fe9a0d523fc}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:2:0:{f2bd8fb8-fc94-3dae-a733-fd993c73cc87}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:3:0:{f2bd8fb8-fc94-3dae-a733-fd993c73cc87}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:128:0:{116d2292-e37d-41cd-a077-ebacac4c8cc4}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:129:0:{116d2292-e37d-41cd-a077-ebacac4c8cc4}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:0:0:{1a46fd64-28d5-434c-8eb3-17a02d419b53}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:131:0:{116d2292-e37d-41cd-a077-ebacac4c8cc4}"
+ },
+ {
+ "$type": "Bookmark",
+ "Name": "ST:0:0:{aa2115a1-9712-457b-9047-dbb71ca2cdd2}"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/ReleasePackerALL2017_lpf.bat b/ReleasePackerALL2017_lpf.bat
new file mode 100644
index 00000000..8714a249
--- /dev/null
+++ b/ReleasePackerALL2017_lpf.bat
@@ -0,0 +1,142 @@
+@echo off
+REM ---------------
+REM 发布包生成工具
+REM 执行此文件前请先用Release生成publisher项目
+REM --------------
+
+
+
+REM --------------
+REM 环境变量设置 Project_Src为如PUBLISHER4_CODING这样的分支
+REM --------------
+set PROJECT_SRC=%CD%
+
+REM 源代码publisher项目文件夹
+set PUBLISHER_SRC_ROOT=%PROJECT_SRC%\SGGL\FineUIPro.Web
+
+REM 源代码版本日志文件夹
+set VerLog_SRC_ROOT=%PROJECT_SRC%\database\版本日志
+
+REM 包文件夹名
+SET ReleasePack=PackFile
+
+REM 发布程序包文件夹
+SET ReleasePackFolder=%PROJECT_SRC%\SGGL%ReleasePack%
+
+REM 发布包publisher文件所在文件夹
+SET RELEASE_PUBLISHER_ROOT=%PROJECT_SRC%\SGGL%ReleasePack%\%ReleasePack%
+
+REM 发布包版本日志文件所在文件夹
+SET RELEASE_VerLog_ROOT=%PROJECT_SRC%\SGGL%ReleasePack%\版本日志
+
+
+REM --------------
+REM 发布程序包文件夹相关
+REM --------------
+
+IF exist %ReleasePackFolder%\nul.ext (
+@echo 删除已存在的发布程序包文件夹
+@echo.
+rd %ReleasePackFolder% /S /Q
+)
+mkdir %ReleasePackFolder%
+
+
+IF exist %RELEASE_VerLog_ROOT%\nul.ext (
+rd %RELEASE_VerLog_ROOT% /S /Q
+)
+mkdir %RELEASE_VerLog_ROOT%
+
+
+IF errorlevel 1 goto delReleasePackError
+
+
+@echo 设置.net控制台环境
+@echo.
+@call "D:\Visual Studio 2022\Common7\Tools\VsDevCmd.bat"
+IF errorlevel 1 goto netEnvironmentError
+
+
+@echo 开始预编译...
+@echo.
+aspnet_compiler -p %PUBLISHER_SRC_ROOT% %RELEASE_PUBLISHER_ROOT% -u -v /
+IF errorlevel 1 goto aspnet_compilerError
+@echo 预编译完成
+@echo.
+
+
+@echo 开始合并程序集...
+@echo.
+Aspnet_merge %RELEASE_PUBLISHER_ROOT% -o UI
+IF errorlevel 1 goto Aspnet_mergeError
+@echo 合并程序集完成
+@echo.
+
+
+REM --------------
+REM 删除不必要的文件
+REM --------------
+
+@echo 开始清理垃圾文件...
+@echo.
+
+del %RELEASE_PUBLISHER_ROOT%\*.cs /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.designer.cs /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.csproj /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.csproj.* /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.pdb /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.resx /s /f
+
+del %RELEASE_PUBLISHER_ROOT%\*.db /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.bak /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.*.bak /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.sln /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.suo /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.scc /s /f
+rd %RELEASE_PUBLISHER_ROOT%\obj /s /q
+
+del %RELEASE_PUBLISHER_ROOT%\ReadMe.txt /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.pfx /s /f
+del %RELEASE_PUBLISHER_ROOT%\*.StyleCop /s /f
+
+@echo 清理完成
+@echo.
+
+REM --------------
+REM 拷贝版本日志
+REM --------------
+@echo 拷贝版本日志...
+@echo.
+
+copy %VerLog_SRC_ROOT%\*.* %RELEASE_VerLog_ROOT% /Y
+
+
+
+
+@echo 发布包已生成,存放路径为%ReleasePackFolder%
+@echo.
+goto END
+
+
+:delReleasePackError
+@echo.
+@echo 删除包存储文件夹失败!
+goto END
+
+:netEnvironmentError
+@echo.
+@echo .net环境设置失败!
+goto END
+
+:aspnet_compilerError
+@echo.
+@echo 预编译失败!
+goto END
+
+:Aspnet_mergeError
+@echo.
+@echo 合并程序集失败!
+goto END
+
+:END
+pause
diff --git a/SGGL/BLL/API/APIPersonService.cs b/SGGL/BLL/API/APIPersonService.cs
index c89257b8..e8b5e74f 100644
--- a/SGGL/BLL/API/APIPersonService.cs
+++ b/SGGL/BLL/API/APIPersonService.cs
@@ -763,6 +763,10 @@ namespace BLL
{
newPerson.TeamGroupId = person.TeamGroupId;
}
+ if (!string.IsNullOrEmpty(person.WorkPostName))
+ {
+ person.WorkPostId = WorkPostService.AddWorkPostByName(person.WorkPostName);
+ }
if (!string.IsNullOrEmpty(person.WorkPostId))
{
newPerson.WorkPostId = person.WorkPostId;
diff --git a/SGGL/BLL/AnBang/AnBangService.cs b/SGGL/BLL/AnBang/AnBangService.cs
new file mode 100644
index 00000000..06f552c4
--- /dev/null
+++ b/SGGL/BLL/AnBang/AnBangService.cs
@@ -0,0 +1,12 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BLL
+{
+ public static class AnBangService
+ {
+ }
+}
diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj
index c320958d..100e10d6 100644
--- a/SGGL/BLL/BLL.csproj
+++ b/SGGL/BLL/BLL.csproj
@@ -85,6 +85,7 @@
+
diff --git a/SGGL/BLL/BaseInfo/WorkPostService.cs b/SGGL/BLL/BaseInfo/WorkPostService.cs
index 3992f1ca..74cb6cd6 100644
--- a/SGGL/BLL/BaseInfo/WorkPostService.cs
+++ b/SGGL/BLL/BaseInfo/WorkPostService.cs
@@ -45,7 +45,36 @@ namespace BLL
db.Base_WorkPost.InsertOnSubmit(newWorkPost);
db.SubmitChanges();
}
+ public static string AddWorkPostByName(string workPostName)
+ {
+ string workpostid = String.Empty;
+ using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
+ {
+ var model = db.Base_WorkPost.FirstOrDefault(e => e.WorkPostName == workPostName);
+ if (model != null)
+ {
+ workpostid = model.WorkPostId;
+ }
+ else
+ {
+ Model.Base_WorkPost newWorkPost = new Model.Base_WorkPost
+ {
+ WorkPostId = SQLHelper.GetNewID(),
+ WorkPostCode = "",
+ WorkPostName = workPostName,
+ IsHsse = false,
+ IsCQMS = false,
+ CNCodes = "",
+ };
+ db.Base_WorkPost.InsertOnSubmit(newWorkPost);
+ db.SubmitChanges();
+ workpostid = newWorkPost.WorkPostId;
+ }
+
+ return workpostid;
+ }
+ }
///
/// 淇敼
///
diff --git a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx
index cfb5ac56..a4d61fba 100644
--- a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx
+++ b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx
@@ -22,7 +22,7 @@
-
+
diff --git a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx.cs
index 9cf19e18..800ff4e3 100644
--- a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx.cs
@@ -23,7 +23,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
{
GetButtonPower();
BLL.CNProfessionalService.InitCNProfessionalDownList(this.drpCNProfessional, true);//涓撲笟
- UnitWorkService.InitUnitWorkDownList(drpUnitWork, this.CurrUser.LoginProjectId, true);
+ BLL.UnitService.InitUnitByProjectIdUnitTypeDropDownList(drpUnit, this.CurrUser.LoginProjectId, BLL.Const.ProjectUnitType_2, true);//鏂藉伐鍒嗗寘鍟
BindGrid();
}
}
@@ -59,10 +59,10 @@ namespace FineUIPro.Web.CQMS.ProcessControl
+ @" WHERE P.ProjectId=@ProjectId ";
List listStr = new List();
listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));
- if (drpUnitWork.SelectedValue != BLL.Const._Null)
+ if (drpUnit.SelectedValue != BLL.Const._Null)
{
- strSql += " AND D.UnitWorkId=@UnitWorkId";
- listStr.Add(new SqlParameter("@UnitWorkId", drpUnitWork.SelectedValue));
+ strSql += " AND P.UnitId=@UnitId";
+ listStr.Add(new SqlParameter("@UnitId", drpUnit.SelectedValue));
}
if (drpCNProfessional.SelectedValue != BLL.Const._Null)
{
@@ -251,9 +251,9 @@ namespace FineUIPro.Web.CQMS.ProcessControl
on x.InspectionId equals y.InspectionId
where y.ProjectId == this.CurrUser.LoginProjectId
select y);
- if (drpUnitWork.SelectedValue != BLL.Const._Null)
+ if (drpUnit.SelectedValue != BLL.Const._Null)
{
- lists = lists.Where(x => x.UnitWorkId == drpUnitWork.SelectedValue);
+ lists = lists.Where(x => x.UnitId == drpUnit.SelectedValue);
}
if (drpCNProfessional.SelectedValue != BLL.Const._Null)
{
diff --git a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx.designer.cs
index 914a43ba..5e2e1a96 100644
--- a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionManagement.aspx.designer.cs
@@ -7,13 +7,11 @@
// 鑷姩鐢熸垚>
//------------------------------------------------------------------------------
-namespace FineUIPro.Web.CQMS.ProcessControl
-{
-
-
- public partial class InspectionManagement
- {
-
+namespace FineUIPro.Web.CQMS.ProcessControl {
+
+
+ public partial class InspectionManagement {
+
///
/// form1 鎺т欢銆
///
@@ -22,7 +20,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
+
///
/// PageManager1 鎺т欢銆
///
@@ -31,7 +29,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.PageManager PageManager1;
-
+
///
/// Panel1 鎺т欢銆
///
@@ -40,7 +38,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.Panel Panel1;
-
+
///
/// Grid1 鎺т欢銆
///
@@ -49,7 +47,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.Grid Grid1;
-
+
///
/// ToolSearch 鎺т欢銆
///
@@ -58,16 +56,16 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.Toolbar ToolSearch;
-
+
///
- /// drpUnitWork 鎺т欢銆
+ /// drpUnit 鎺т欢銆
///
///
/// 鑷姩鐢熸垚鐨勫瓧娈点
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
- protected global::FineUIPro.DropDownList drpUnitWork;
-
+ protected global::FineUIPro.DropDownList drpUnit;
+
///
/// drpCNProfessional 鎺т欢銆
///
@@ -76,7 +74,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.DropDownList drpCNProfessional;
-
+
///
/// txtStarTime 鎺т欢銆
///
@@ -85,7 +83,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.DatePicker txtStarTime;
-
+
///
/// Label1 鎺т欢銆
///
@@ -94,7 +92,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.Label Label1;
-
+
///
/// txtEndTime 鎺т欢銆
///
@@ -103,7 +101,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.DatePicker txtEndTime;
-
+
///
/// btnSearch 鎺т欢銆
///
@@ -112,7 +110,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.Button btnSearch;
-
+
///
/// btnOut 鎺т欢銆
///
@@ -121,7 +119,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.Button btnOut;
-
+
///
/// lblPageIndex 鎺т欢銆
///
@@ -130,7 +128,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::System.Web.UI.WebControls.Label lblPageIndex;
-
+
///
/// Label3 鎺т欢銆
///
@@ -139,7 +137,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::System.Web.UI.WebControls.Label Label3;
-
+
///
/// lbtnFileUrl 鎺т欢銆
///
@@ -148,7 +146,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::System.Web.UI.WebControls.LinkButton lbtnFileUrl;
-
+
///
/// ToolbarText1 鎺т欢銆
///
@@ -157,7 +155,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.ToolbarText ToolbarText1;
-
+
///
/// ddlPageSize 鎺т欢銆
///
@@ -166,7 +164,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.DropDownList ddlPageSize;
-
+
///
/// Window1 鎺т欢銆
///
@@ -175,7 +173,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.Window Window1;
-
+
///
/// Menu1 鎺т欢銆
///
@@ -184,7 +182,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.Menu Menu1;
-
+
///
/// btnMenuModify 鎺т欢銆
///
@@ -193,7 +191,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
protected global::FineUIPro.MenuButton btnMenuModify;
-
+
///
/// btnMenuDel 鎺т欢銆
///
diff --git a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx
index ae285275..8b729aa2 100644
--- a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx
+++ b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx
@@ -22,7 +22,7 @@
-
+
diff --git a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx.cs
index 6ed00eea..e1faeafe 100644
--- a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx.cs
@@ -26,7 +26,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
{
GetButtonPower();
BLL.CNProfessionalService.InitCNProfessionalDownList(this.drpCNProfessional, true);//涓撲笟
- UnitWorkService.InitUnitWorkDownList(drpUnitWork, this.CurrUser.LoginProjectId, true);
+ BLL.UnitService.InitUnitByProjectIdUnitTypeDropDownList(drpUnit, this.CurrUser.LoginProjectId, BLL.Const.ProjectUnitType_2, true);//鏂藉伐鍒嗗寘鍟
BindGrid();
}
}
@@ -59,10 +59,10 @@ namespace FineUIPro.Web.CQMS.ProcessControl
+ @" WHERE P.ProjectId=@ProjectId ";
List listStr = new List();
listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));
- if (drpUnitWork.SelectedValue != BLL.Const._Null)
+ if (drpUnit.SelectedValue != BLL.Const._Null)
{
- strSql += " AND D.UnitWorkId=@UnitWorkId";
- listStr.Add(new SqlParameter("@UnitWorkId", drpUnitWork.SelectedValue));
+ strSql += " AND P.UnitId=@UnitId";
+ listStr.Add(new SqlParameter("@UnitId", drpUnit.SelectedValue));
}
if (drpCNProfessional.SelectedValue != BLL.Const._Null)
{
@@ -279,9 +279,9 @@ namespace FineUIPro.Web.CQMS.ProcessControl
on x.InspectionId equals y.InspectionId
where y.ProjectId == this.CurrUser.LoginProjectId
select y);
- if (drpUnitWork.SelectedValue != BLL.Const._Null)
+ if (drpUnit.SelectedValue != BLL.Const._Null)
{
- lists = lists.Where(x => x.UnitWorkId == drpUnitWork.SelectedValue);
+ lists = lists.Where(x => x.UnitId == drpUnit.SelectedValue);
}
if (drpCNProfessional.SelectedValue != BLL.Const._Null)
{
diff --git a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx.designer.cs
index 6aa89952..7d6c8702 100644
--- a/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ProcessControl/InspectionNotice.aspx.designer.cs
@@ -58,13 +58,13 @@ namespace FineUIPro.Web.CQMS.ProcessControl {
protected global::FineUIPro.Toolbar ToolSearch;
///
- /// drpUnitWork 鎺т欢銆
+ /// drpUnit 鎺т欢銆
///
///
/// 鑷姩鐢熸垚鐨勫瓧娈点
/// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲
///
- protected global::FineUIPro.DropDownList drpUnitWork;
+ protected global::FineUIPro.DropDownList drpUnit;
///
/// drpCNProfessional 鎺т欢銆
diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt
index 534b922f..d5ff0428 100644
--- a/SGGL/FineUIPro.Web/ErrLog.txt
+++ b/SGGL/FineUIPro.Web/ErrLog.txt
@@ -1,498 +1,282 @@
-閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:HttpCompileException
-閿欒淇℃伅:g:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\Manager\ManagerMonthCEdit.aspx(375): error CS1061: 鈥淎SP.hsse_manager_managermonthcedit_aspx鈥濅笉鍖呭惈鈥済vCheckSort_RowCommand鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.hsse_manager_managermonthcedit_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥済vCheckSort_RowCommand鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?)
-閿欒鍫嗘爤:
- 鍦 System.Web.Compilation.BuildManager.PostProcessFoundBuildResult(BuildResult result, Boolean keyFromVPP, VirtualPath virtualPath)
- 鍦 System.Web.Compilation.BuildManager.GetBuildResultFromCacheInternal(String cacheKey, Boolean keyFromVPP, VirtualPath virtualPath, Int64 hashCode, Boolean ensureIsUpToDate)
- 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate)
- 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
- 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
- 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound)
- 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp)
- 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
- 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path)
- 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-鍑洪敊鏃堕棿:08/21/2024 17:30:17
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCEdit.aspx?months=2024-08-01
-IP鍦板潃:::1
-
-鍑洪敊鏃堕棿:08/21/2024 17:30:17
-
-
-閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:HttpCompileException
-閿欒淇℃伅:g:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\Manager\ManagerMonthCEdit.aspx(392): error CS0123: 鈥渘bCheckNumber_TextChanged鈥濈殑閲嶈浇鍧囦笌濮旀墭鈥淪ystem.EventHandler鈥濅笉鍖归厤
-閿欒鍫嗘爤:
- 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath)
- 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
- 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
- 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound)
- 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp)
- 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
- 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path)
- 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-鍑洪敊鏃堕棿:08/22/2024 10:35:47
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCEdit.aspx?MonthReportId=8ddae8b3-d390-45cf-9869-6ba21fef31f0
-IP鍦板潃:::1
-
-鍑洪敊鏃堕棿:08/22/2024 10:35:47
-
-
-閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:ArgumentException
-閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄
-鍙傛暟鍚: via
-閿欒鍫嗘爤:
- 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 鍦 System.ServiceModel.ClientBase`1.CreateChannel()
- 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 鍦 System.ServiceModel.ClientBase`1.get_Channel()
- 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13827
- 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181
-鍑洪敊鏃堕棿:08/22/2024 13:02:11
-鍑洪敊鏃堕棿:08/22/2024 13:02:11
-
-
-閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:ArgumentException
-閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄
-鍙傛暟鍚: via
-閿欒鍫嗘爤:
- 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 鍦 System.ServiceModel.ClientBase`1.CreateChannel()
- 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 鍦 System.ServiceModel.ClientBase`1.get_Channel()
- 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13851
- 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046
-鍑洪敊鏃堕棿:08/22/2024 13:02:11
-鍑洪敊鏃堕棿:08/22/2024 13:02:11
-
-
-閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:ArgumentException
-閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄
-鍙傛暟鍚: via
-閿欒鍫嗘爤:
- 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 鍦 System.ServiceModel.ClientBase`1.CreateChannel()
- 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 鍦 System.ServiceModel.ClientBase`1.get_Channel()
- 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13843
- 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942
-鍑洪敊鏃堕棿:08/22/2024 13:02:11
-鍑洪敊鏃堕棿:08/22/2024 13:02:11
-
-
-閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:ArgumentException
-閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄
-鍙傛暟鍚: via
-閿欒鍫嗘爤:
- 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 鍦 System.ServiceModel.ClientBase`1.CreateChannel()
- 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 鍦 System.ServiceModel.ClientBase`1.get_Channel()
- 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13643
- 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884
-鍑洪敊鏃堕棿:08/22/2024 13:02:11
-鍑洪敊鏃堕棿:08/22/2024 13:02:11
-
-
閿欒淇℃伅寮濮=====>
閿欒绫诲瀷:SqlException
-閿欒淇℃伅:DELETE 璇彞涓 REFERENCE 绾︽潫"FK_Manager_RewardAndPunishSortC_Manager_MonthReportC"鍐茬獊銆傝鍐茬獊鍙戠敓浜庢暟鎹簱"SGGLDB_WH"锛岃〃"dbo.Manager_RewardAndPunishSortC", column 'MonthReportId'銆
-璇彞宸茬粓姝€
+閿欒淇℃伅:鏃犳硶缁戝畾鐢卞涓儴鍒嗙粍鎴愮殑鏍囪瘑绗 "D.UnitWorkId"銆
閿欒鍫嗘爤:
鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
+ 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
+ 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData()
鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
- 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.DynamicDelete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.Delete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges()
- 鍦 BLL.MonthReportCService.DeleteMonthReportByMonthReportId(String monthReportId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\HSSE\Manager\ManagerMonthC\MonthReportCService.cs:琛屽彿 327
- 鍦 FineUIPro.Web.HSSE.Manager.ManagerMonthCNew.btnMenuDel_Click(Object sender, EventArgs e) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\Manager\ManagerMonthCNew.aspx.cs:琛屽彿 275
- 鍦 FineUIPro.MenuButton.OnClick(EventArgs e)
- 鍦 (MenuButton , EventArgs )
- 鍦 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
+ 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
+ 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
+ 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
+ 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
+ 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
+ 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
+ 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
+ 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\SQLHelper.cs:琛屽彿 311
+ 鍦 FineUIPro.Web.CQMS.ProcessControl.InspectionNotice.BindGrid() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\CQMS\ProcessControl\InspectionNotice.aspx.cs:琛屽彿 83
+ 鍦 FineUIPro.Web.CQMS.ProcessControl.InspectionNotice.btnSearch_Click(Object sender, EventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\CQMS\ProcessControl\InspectionNotice.aspx.cs:琛屽彿 135
+ 鍦 FineUIPro.Button.OnClick(EventArgs e)
+ 鍦 (Button , EventArgs )
+ 鍦 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-鍑洪敊鏃堕棿:08/22/2024 14:59:51
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCNew.aspx
+鍑洪敊鏃堕棿:09/02/2024 10:32:29
+鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ProcessControl/InspectionNotice.aspx
IP鍦板潃:::1
鎿嶄綔浜哄憳:JT
-鍑洪敊鏃堕棿:08/22/2024 14:59:51
+鍑洪敊鏃堕棿:09/02/2024 10:32:29
閿欒淇℃伅寮濮=====>
閿欒绫诲瀷:SqlException
-閿欒淇℃伅:DELETE 璇彞涓 REFERENCE 绾︽潫"FK_Manager_RewardAndPunishSortC_Manager_MonthReportC"鍐茬獊銆傝鍐茬獊鍙戠敓浜庢暟鎹簱"SGGLDB_WH"锛岃〃"dbo.Manager_RewardAndPunishSortC", column 'MonthReportId'銆
-璇彞宸茬粓姝€
+閿欒淇℃伅:鍒楀悕 'NextNum' 鏃犳晥銆
閿欒鍫嗘爤:
鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
+ 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
+ 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData()
鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
+ 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
+ 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
+ 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
+ 鍦 System.Data.Common.DbCommand.ExecuteReader()
鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.DynamicDelete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.Delete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges()
- 鍦 BLL.AccidentSortCService.DeleteAccidentSortsByMonthReportId(String monthReportId)
- 鍦 FineUIPro.Web.HSSE.Manager.ManagerMonthCNew.btnMenuDel_Click(Object sender, EventArgs e) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\Manager\ManagerMonthCNew.aspx.cs:琛屽彿 243
- 鍦 FineUIPro.MenuButton.OnClick(EventArgs e)
- 鍦 (MenuButton , EventArgs )
- 鍦 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
+ 鍦 System.Data.Linq.DataQuery`1.System.Collections.Generic.IEnumerable.GetEnumerator()
+ 鍦 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
+ 鍦 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
+ 鍦 FineUIPro.Web.common.mainProject2.GetJD() 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\mainProject2.aspx.cs:琛屽彿 720
+ 鍦 FineUIPro.Web.common.mainProject2.Page_Load(Object sender, EventArgs e) 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\mainProject2.aspx.cs:琛屽彿 113
+ 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
+ 鍦 System.EventHandler.Invoke(Object sender, EventArgs e)
+ 鍦 System.Web.UI.Control.OnLoad(EventArgs e)
+ 鍦 System.Web.UI.Control.LoadRecursive()
鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-鍑洪敊鏃堕棿:08/22/2024 15:03:04
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCNew.aspx
+鍑洪敊鏃堕棿:06/25/2024 17:08:52
+鍑洪敊鏂囦欢:http://localhost:8579/common/mainProject2.aspx
IP鍦板潃:::1
鎿嶄綔浜哄憳:JT
-鍑洪敊鏃堕棿:08/22/2024 15:03:04
+鍑洪敊鏃堕棿:06/25/2024 17:08:52
閿欒淇℃伅寮濮=====>
閿欒绫诲瀷:SqlException
-閿欒淇℃伅:DELETE 璇彞涓 REFERENCE 绾︽潫"FK_Manager_RewardAndPunishSortC_Manager_MonthReportC"鍐茬獊銆傝鍐茬獊鍙戠敓浜庢暟鎹簱"SGGLDB_WH"锛岃〃"dbo.Manager_RewardAndPunishSortC", column 'MonthReportId'銆
-璇彞宸茬粓姝€
+閿欒淇℃伅:鍙傛暟鍖栨煡璇 '(@ProjectId nvarchar(4000))SELECT NEWID() AS ID, CardNo,PersonNa' 闇瑕佸弬鏁 '@ProjectId'锛屼絾鏈彁渚涜鍙傛暟銆
閿欒鍫嗘爤:
鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
+ 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
+ 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData()
鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
- 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.DynamicDelete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.Delete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges()
- 鍦 BLL.AccidentSortCService.DeleteAccidentSortsByMonthReportId(String monthReportId)
- 鍦 FineUIPro.Web.HSSE.Manager.ManagerMonthCNew.btnMenuDel_Click(Object sender, EventArgs e) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\Manager\ManagerMonthCNew.aspx.cs:琛屽彿 243
- 鍦 FineUIPro.MenuButton.OnClick(EventArgs e)
- 鍦 (MenuButton , EventArgs )
- 鍦 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
+ 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
+ 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
+ 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
+ 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
+ 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
+ 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
+ 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
+ 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:琛屽彿 311
+ 鍦 FineUIPro.Web.HSSE.EduTrain.TrainFind.BindGrid() 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\EduTrain\TrainFind.aspx.cs:琛屽彿 116
+ 鍦 FineUIPro.Web.HSSE.EduTrain.TrainFind.Page_Load(Object sender, EventArgs e) 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\EduTrain\TrainFind.aspx.cs:琛屽彿 59
+ 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
+ 鍦 System.EventHandler.Invoke(Object sender, EventArgs e)
+ 鍦 System.Web.UI.Control.OnLoad(EventArgs e)
+ 鍦 System.Web.UI.Control.LoadRecursive()
鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-鍑洪敊鏃堕棿:08/22/2024 15:03:19
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCNew.aspx
+鍑洪敊鏃堕棿:09/03/2024 15:38:17
+鍑洪敊鏂囦欢:http://localhost:8579/HSSE/EduTrain/TrainFind.aspx
IP鍦板潃:::1
鎿嶄綔浜哄憳:JT
-鍑洪敊鏃堕棿:08/22/2024 15:03:19
+鍑洪敊鏃堕棿:09/03/2024 15:38:17
閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:SqlException
-閿欒淇℃伅:DELETE 璇彞涓 REFERENCE 绾︽潫"FK_Manager_RewardAndPunishSortC_Manager_MonthReportC"鍐茬獊銆傝鍐茬獊鍙戠敓浜庢暟鎹簱"SGGLDB_WH"锛岃〃"dbo.Manager_RewardAndPunishSortC", column 'MonthReportId'銆
-璇彞宸茬粓姝€
+閿欒绫诲瀷:FormatException
+閿欒淇℃伅:杈撳叆瀛楃涓茬殑鏍煎紡涓嶆纭
閿欒鍫嗘爤:
- 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
- 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.DynamicDelete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.Delete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges()
- 鍦 BLL.MonthReportCService.DeleteMonthReportByMonthReportId(String monthReportId)
- 鍦 FineUIPro.Web.HSSE.Manager.ManagerMonthCNew.btnMenuDel_Click(Object sender, EventArgs e) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\Manager\ManagerMonthCNew.aspx.cs:琛屽彿 275
- 鍦 FineUIPro.MenuButton.OnClick(EventArgs e)
- 鍦 (MenuButton , EventArgs )
- 鍦 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
+ 鍦 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
+ 鍦 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
+ 鍦 System.String.System.IConvertible.ToInt32(IFormatProvider provider)
+ 鍦 System.Convert.ToInt32(Object value)
+ 鍦 FineUIPro.RenderField.DSVurKNBLhHEBGjRDehgsQmnHqGTA(GridRow )
+ 鍦 (GridColumn , GridRow )
+ 鍦 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN()
+ 鍦 (GridRow )
+ 鍦 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object )
+ 鍦 (Grid , Int32 , Object )
+ 鍦 FineUIPro.Grid.AYqoKqSqsgZakIKkWuWxQURnixDO(IEnumerable , Boolean )
+ 鍦 (Grid , IEnumerable , Boolean )
+ 鍦 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
+ 鍦 (Grid , Boolean )
+ 鍦 FineUIPro.Grid.DataBind()
+ 鍦 FineUIPro.Web.BoSheng.BoPersonTrainRecord.GridBind() 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\BoSheng\BoPersonTrainRecord.aspx.cs:琛屽彿 34
+ 鍦 FineUIPro.Web.BoSheng.BoPersonTrainRecord.btnSearch_Click(Object sender, EventArgs e) 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\BoSheng\BoPersonTrainRecord.aspx.cs:琛屽彿 39
+ 鍦 FineUIPro.Button.OnClick(EventArgs e)
+ 鍦 (Button , EventArgs )
+ 鍦 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-鍑洪敊鏃堕棿:08/22/2024 15:09:53
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCNew.aspx
+鍑洪敊鏃堕棿:09/03/2024 15:53:12
+鍑洪敊鏂囦欢:http://localhost:8579/BoSheng/BoPersonTrainRecord.aspx
IP鍦板潃:::1
鎿嶄綔浜哄憳:JT
-鍑洪敊鏃堕棿:08/22/2024 15:09:53
+鍑洪敊鏃堕棿:09/03/2024 15:53:12
閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:SqlException
-閿欒淇℃伅:DELETE 璇彞涓 REFERENCE 绾︽潫"FK_Manager_RewardAndPunishSortC_Manager_MonthReportC"鍐茬獊銆傝鍐茬獊鍙戠敓浜庢暟鎹簱"SGGLDB_WH"锛岃〃"dbo.Manager_RewardAndPunishSortC", column 'MonthReportId'銆
-璇彞宸茬粓姝€
+閿欒绫诲瀷:FormatException
+閿欒淇℃伅:杈撳叆瀛楃涓茬殑鏍煎紡涓嶆纭
閿欒鍫嗘爤:
- 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
- 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.DynamicDelete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.Delete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges()
- 鍦 BLL.MonthReportCService.DeleteMonthReportByMonthReportId(String monthReportId)
- 鍦 FineUIPro.Web.HSSE.Manager.ManagerMonthCNew.btnMenuDel_Click(Object sender, EventArgs e) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\Manager\ManagerMonthCNew.aspx.cs:琛屽彿 275
- 鍦 FineUIPro.MenuButton.OnClick(EventArgs e)
- 鍦 (MenuButton , EventArgs )
- 鍦 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
+ 鍦 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
+ 鍦 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
+ 鍦 System.String.System.IConvertible.ToInt32(IFormatProvider provider)
+ 鍦 System.Convert.ToInt32(Object value)
+ 鍦 FineUIPro.RenderField.DSVurKNBLhHEBGjRDehgsQmnHqGTA(GridRow )
+ 鍦 (GridColumn , GridRow )
+ 鍦 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN()
+ 鍦 (GridRow )
+ 鍦 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object )
+ 鍦 (Grid , Int32 , Object )
+ 鍦 FineUIPro.Grid.AYqoKqSqsgZakIKkWuWxQURnixDO(IEnumerable , Boolean )
+ 鍦 (Grid , IEnumerable , Boolean )
+ 鍦 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
+ 鍦 (Grid , Boolean )
+ 鍦 FineUIPro.Grid.DataBind()
+ 鍦 FineUIPro.Web.BoSheng.BoPersonTrainRecord.GridBind() 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\BoSheng\BoPersonTrainRecord.aspx.cs:琛屽彿 34
+ 鍦 FineUIPro.Web.BoSheng.BoPersonTrainRecord.Page_Load(Object sender, EventArgs e) 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\BoSheng\BoPersonTrainRecord.aspx.cs:琛屽彿 22
+ 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
+ 鍦 System.EventHandler.Invoke(Object sender, EventArgs e)
+ 鍦 System.Web.UI.Control.OnLoad(EventArgs e)
+ 鍦 System.Web.UI.Control.LoadRecursive()
鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-鍑洪敊鏃堕棿:08/22/2024 15:11:10
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCNew.aspx
+鍑洪敊鏃堕棿:09/03/2024 15:53:47
+鍑洪敊鏂囦欢:http://localhost:8579/BoSheng/BoPersonTrainRecord.aspx
IP鍦板潃:::1
鎿嶄綔浜哄憳:JT
-鍑洪敊鏃堕棿:08/22/2024 15:11:10
+鍑洪敊鏃堕棿:09/03/2024 15:53:47
閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:SqlException
-閿欒淇℃伅:DELETE 璇彞涓 REFERENCE 绾︽潫"FK_Manager_RewardAndPunishSortC_Manager_MonthReportC"鍐茬獊銆傝鍐茬獊鍙戠敓浜庢暟鎹簱"SGGLDB_WH"锛岃〃"dbo.Manager_RewardAndPunishSortC", column 'MonthReportId'銆
-璇彞宸茬粓姝€
+閿欒绫诲瀷:FormatException
+閿欒淇℃伅:杈撳叆瀛楃涓茬殑鏍煎紡涓嶆纭
閿欒鍫嗘爤:
- 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
- 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.DynamicDelete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.Delete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges()
- 鍦 BLL.MonthReportCService.DeleteMonthReportByMonthReportId(String monthReportId)
- 鍦 FineUIPro.Web.HSSE.Manager.ManagerMonthCNew.btnMenuDel_Click(Object sender, EventArgs e) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\Manager\ManagerMonthCNew.aspx.cs:琛屽彿 275
- 鍦 FineUIPro.MenuButton.OnClick(EventArgs e)
- 鍦 (MenuButton , EventArgs )
- 鍦 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
+ 鍦 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
+ 鍦 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
+ 鍦 System.String.System.IConvertible.ToInt32(IFormatProvider provider)
+ 鍦 System.Convert.ToInt32(Object value)
+ 鍦 FineUIPro.RenderField.DSVurKNBLhHEBGjRDehgsQmnHqGTA(GridRow )
+ 鍦 (GridColumn , GridRow )
+ 鍦 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN()
+ 鍦 (GridRow )
+ 鍦 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object )
+ 鍦 (Grid , Int32 , Object )
+ 鍦 FineUIPro.Grid.AYqoKqSqsgZakIKkWuWxQURnixDO(IEnumerable , Boolean )
+ 鍦 (Grid , IEnumerable , Boolean )
+ 鍦 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
+ 鍦 (Grid , Boolean )
+ 鍦 FineUIPro.Grid.DataBind()
+ 鍦 FineUIPro.Web.BoSheng.BoPersonTrainRecord.GridBind() 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\BoSheng\BoPersonTrainRecord.aspx.cs:琛屽彿 34
+ 鍦 FineUIPro.Web.BoSheng.BoPersonTrainRecord.Page_Load(Object sender, EventArgs e) 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\BoSheng\BoPersonTrainRecord.aspx.cs:琛屽彿 22
+ 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
+ 鍦 System.EventHandler.Invoke(Object sender, EventArgs e)
+ 鍦 System.Web.UI.Control.OnLoad(EventArgs e)
+ 鍦 System.Web.UI.Control.LoadRecursive()
鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-鍑洪敊鏃堕棿:08/22/2024 15:11:25
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCNew.aspx
+鍑洪敊鏃堕棿:09/03/2024 15:54:12
+鍑洪敊鏂囦欢:http://localhost:8579/BoSheng/BoPersonTrainRecord.aspx
IP鍦板潃:::1
鎿嶄綔浜哄憳:JT
-鍑洪敊鏃堕棿:08/22/2024 15:11:25
+鍑洪敊鏃堕棿:09/03/2024 15:54:12
閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:HttpCompileException
-閿欒淇℃伅:g:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\Manager\ManagerMonthCEdit.aspx(623): error CS1061: 鈥淎SP.hsse_manager_managermonthcedit_aspx鈥濅笉鍖呭惈鈥渂tnOtherWorkPlanC_Click鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.hsse_manager_managermonthcedit_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥渂tnOtherWorkPlanC_Click鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?)
+閿欒绫诲瀷:FormatException
+閿欒淇℃伅:杈撳叆瀛楃涓茬殑鏍煎紡涓嶆纭
閿欒鍫嗘爤:
- 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath)
- 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
- 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
- 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound)
- 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp)
- 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
- 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path)
- 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-鍑洪敊鏃堕棿:08/22/2024 16:41:02
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCEdit.aspx?months=2024-08-01
-IP鍦板潃:::1
-
-鍑洪敊鏃堕棿:08/22/2024 16:41:02
-
-
-閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:SqlException
-閿欒淇℃伅:DELETE 璇彞涓 REFERENCE 绾︽潫"FK_Manager_Month_ComplianceObligationsC_Manager_MonthReportC"鍐茬獊銆傝鍐茬獊鍙戠敓浜庢暟鎹簱"SGGLDB_WH"锛岃〃"dbo.Manager_Month_ComplianceObligationsC", column 'MonthReportId'銆
-璇彞宸茬粓姝€
-閿欒鍫嗘爤:
- 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
- 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.DynamicDelete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.Delete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges()
- 鍦 BLL.MonthReportCService.DeleteMonthReportByMonthReportId(String monthReportId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\HSSE\Manager\ManagerMonthC\MonthReportCService.cs:琛屽彿 327
- 鍦 FineUIPro.Web.HSSE.Manager.ManagerMonthCNew.btnMenuDel_Click(Object sender, EventArgs e)
- 鍦 FineUIPro.MenuButton.OnClick(EventArgs e)
- 鍦 (MenuButton , EventArgs )
- 鍦 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
+ 鍦 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
+ 鍦 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
+ 鍦 System.String.System.IConvertible.ToInt32(IFormatProvider provider)
+ 鍦 System.Convert.ToInt32(Object value)
+ 鍦 FineUIPro.RenderField.DSVurKNBLhHEBGjRDehgsQmnHqGTA(GridRow )
+ 鍦 (GridColumn , GridRow )
+ 鍦 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN()
+ 鍦 (GridRow )
+ 鍦 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object )
+ 鍦 (Grid , Int32 , Object )
+ 鍦 FineUIPro.Grid.AYqoKqSqsgZakIKkWuWxQURnixDO(IEnumerable , Boolean )
+ 鍦 (Grid , IEnumerable , Boolean )
+ 鍦 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
+ 鍦 (Grid , Boolean )
+ 鍦 FineUIPro.Grid.DataBind()
+ 鍦 FineUIPro.Web.BoSheng.BoPersonTrainRecord.GridBind() 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\BoSheng\BoPersonTrainRecord.aspx.cs:琛屽彿 34
+ 鍦 FineUIPro.Web.BoSheng.BoPersonTrainRecord.Page_Load(Object sender, EventArgs e) 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\BoSheng\BoPersonTrainRecord.aspx.cs:琛屽彿 22
+ 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
+ 鍦 System.EventHandler.Invoke(Object sender, EventArgs e)
+ 鍦 System.Web.UI.Control.OnLoad(EventArgs e)
+ 鍦 System.Web.UI.Control.LoadRecursive()
鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-鍑洪敊鏃堕棿:08/22/2024 17:10:15
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCNew.aspx
+鍑洪敊鏃堕棿:09/03/2024 15:54:41
+鍑洪敊鏂囦欢:http://localhost:8579/BoSheng/BoPersonTrainRecord.aspx
IP鍦板潃:::1
鎿嶄綔浜哄憳:JT
-鍑洪敊鏃堕棿:08/22/2024 17:10:15
+鍑洪敊鏃堕棿:09/03/2024 15:54:41
閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:SqlException
-閿欒淇℃伅:DELETE 璇彞涓 REFERENCE 绾︽潫"FK_Manager_Month_ComplianceObligationsC_Manager_MonthReportC"鍐茬獊銆傝鍐茬獊鍙戠敓浜庢暟鎹簱"SGGLDB_WH"锛岃〃"dbo.Manager_Month_ComplianceObligationsC", column 'MonthReportId'銆
-璇彞宸茬粓姝€
+閿欒绫诲瀷:FormatException
+閿欒淇℃伅:杈撳叆瀛楃涓茬殑鏍煎紡涓嶆纭
閿欒鍫嗘爤:
- 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 鍦 System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
- 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
- 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.DynamicDelete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeDirector.StandardChangeDirector.Delete(TrackedObject item)
- 鍦 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 鍦 System.Data.Linq.DataContext.SubmitChanges()
- 鍦 BLL.MonthReportCService.DeleteMonthReportByMonthReportId(String monthReportId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\HSSE\Manager\ManagerMonthC\MonthReportCService.cs:琛屽彿 327
- 鍦 FineUIPro.Web.HSSE.Manager.ManagerMonthCNew.btnMenuDel_Click(Object sender, EventArgs e)
- 鍦 FineUIPro.MenuButton.OnClick(EventArgs e)
- 鍦 (MenuButton , EventArgs )
- 鍦 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
+ 鍦 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
+ 鍦 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
+ 鍦 System.String.System.IConvertible.ToInt32(IFormatProvider provider)
+ 鍦 System.Convert.ToInt32(Object value)
+ 鍦 FineUIPro.RenderField.DSVurKNBLhHEBGjRDehgsQmnHqGTA(GridRow )
+ 鍦 (GridColumn , GridRow )
+ 鍦 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN()
+ 鍦 (GridRow )
+ 鍦 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object )
+ 鍦 (Grid , Int32 , Object )
+ 鍦 FineUIPro.Grid.AYqoKqSqsgZakIKkWuWxQURnixDO(IEnumerable , Boolean )
+ 鍦 (Grid , IEnumerable , Boolean )
+ 鍦 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
+ 鍦 (Grid , Boolean )
+ 鍦 FineUIPro.Grid.DataBind()
+ 鍦 FineUIPro.Web.BoSheng.BoPersonTrainRecord.GridBind() 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\BoSheng\BoPersonTrainRecord.aspx.cs:琛屽彿 34
+ 鍦 FineUIPro.Web.BoSheng.BoPersonTrainRecord.Page_Load(Object sender, EventArgs e) 浣嶇疆 D:\鏁版嵁\璇哄繀杈綷浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\BoSheng\BoPersonTrainRecord.aspx.cs:琛屽彿 22
+ 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
+ 鍦 System.EventHandler.Invoke(Object sender, EventArgs e)
+ 鍦 System.Web.UI.Control.OnLoad(EventArgs e)
+ 鍦 System.Web.UI.Control.LoadRecursive()
鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-鍑洪敊鏃堕棿:08/22/2024 17:12:30
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCNew.aspx
+鍑洪敊鏃堕棿:09/03/2024 15:55:36
+鍑洪敊鏂囦欢:http://localhost:8579/BoSheng/BoPersonTrainRecord.aspx
IP鍦板潃:::1
+鎿嶄綔浜哄憳:JT
-鍑洪敊鏃堕棿:08/22/2024 17:12:30
-
-
-閿欒淇℃伅寮濮=====>
-閿欒绫诲瀷:HttpParseException
-閿欒淇℃伅:绫诲瀷鈥淔ineUIPro.TextArea鈥濅笉鍏锋湁鍚嶄负鈥渕inWidth鈥濈殑鍏叡灞炴с
-閿欒鍫嗘爤:
- 鍦 System.Web.UI.TemplateParser.ProcessException(Exception ex)
- 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding)
- 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding)
-----閿欒绫诲瀷:HttpException
-----閿欒淇℃伅:
-----绫诲瀷鈥淔ineUIPro.TextArea鈥濅笉鍏锋湁鍚嶄负鈥渕inWidth鈥濈殑鍏叡灞炴с
-----閿欒鍫嗘爤:
- 鍦 System.Web.UI.ControlBuilder.AddProperty(String filter, String name, String value, Boolean mainDirectiveMode)
- 鍦 System.Web.UI.ControlBuilder.PreprocessAttribute(String filter, String attribname, String attribvalue, Boolean mainDirectiveMode, Int32 line, Int32 column)
- 鍦 System.Web.UI.ControlBuilder.PreprocessAttributes(ParsedAttributeCollection attribs)
- 鍦 System.Web.UI.ControlBuilder.Init(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs)
- 鍦 System.Web.UI.ControlBuilder.CreateBuilderFromType(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs, Int32 line, String sourceFileName)
- 鍦 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty)
- 鍦 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText)
- 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding)
-鍑洪敊鏃堕棿:08/22/2024 17:19:22
-鍑洪敊鏂囦欢:http://localhost:8579/HSSE/Manager/ManagerMonthCEdit.aspx?months=2024-08-01
-IP鍦板潃:::1
-
-鍑洪敊鏃堕棿:08/22/2024 17:19:22
+鍑洪敊鏃堕棿:09/03/2024 15:55:36
diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
index 29220861..fec7f569 100644
--- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
+++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
@@ -19232,7 +19232,7 @@
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
-
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
\ No newline at end of file
diff --git a/SGGL/WebAPI/WebAPI.csproj b/SGGL/WebAPI/WebAPI.csproj
index d162082b..89e47133 100644
--- a/SGGL/WebAPI/WebAPI.csproj
+++ b/SGGL/WebAPI/WebAPI.csproj
@@ -57,6 +57,9 @@
..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll
+
+ ..\packages\Swashbuckle.Core.5.6.0\lib\net40\Swashbuckle.Core.dll
+
@@ -124,6 +127,9 @@
..\packages\Microsoft.AspNet.WebPages.3.2.4\lib\net45\System.Web.WebPages.Razor.dll
+
+ ..\packages\WebActivatorEx.2.0\lib\net40\WebActivatorEx.dll
+
True
..\packages\WebGrease.1.6.0\lib\WebGrease.dll
@@ -142,7 +148,9 @@
+
+
diff --git a/SGGL/WebAPI/WebAPI.csproj.user b/SGGL/WebAPI/WebAPI.csproj.user
index 5fe155da..c2dcc265 100644
--- a/SGGL/WebAPI/WebAPI.csproj.user
+++ b/SGGL/WebAPI/WebAPI.csproj.user
@@ -10,8 +10,8 @@
FolderProfile
- ApiControllerEmptyScaffolder
- root/Controller
+ MvcControllerEmptyScaffolder
+ root/Common/MVC/Controller
600
True
False
diff --git a/SGGL/WebAPI/packages.config b/SGGL/WebAPI/packages.config
index d3d18c70..d3dda5e0 100644
--- a/SGGL/WebAPI/packages.config
+++ b/SGGL/WebAPI/packages.config
@@ -25,5 +25,8 @@
+
+
+
\ No newline at end of file