diff --git a/DataBase/版本日志/SGGLDB_WH_2024-03-06-gaofei.sql b/DataBase/版本日志/SGGLDB_WH_2024-03-06-gaofei.sql
new file mode 100644
index 00000000..f36e44e6
--- /dev/null
+++ b/DataBase/版本日志/SGGLDB_WH_2024-03-06-gaofei.sql
@@ -0,0 +1,73 @@
+delete from Sys_ButtonToMenu where MenuId='AACD667C-5481-425D-819C-3892168DF61E'
+delete from Sys_Menu where MenuId='AACD667C-5481-425D-819C-3892168DF61E'
+GO
+
+alter table [dbo].[DriverGoods_GoodsBuy] add UnitCode nvarchar(50) null
+GO
+
+
+CREATE TABLE [dbo].[DriverGoods_GoodsBuyItem](
+ [GoodsBuyItemId] [nvarchar](50) NOT NULL,
+ [GoodsBuyId] [nvarchar](50) NULL,
+ [GoodsModelId] [nvarchar](50) NULL,
+ [Quantity] [nvarchar](50) NULL,
+ [RequiredTime] [datetime] NULL,
+ CONSTRAINT [PK_DriverGoods_GoodsBuyItem] PRIMARY KEY CLUSTERED
+(
+ [GoodsBuyItemId] ASC
+)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
+) ON [PRIMARY]
+
+GO
+
+ALTER TABLE [dbo].[DriverGoods_GoodsBuyItem] WITH CHECK ADD CONSTRAINT [FK_DriverGoods_GoodsBuyItem_DriverGoods_GoodsModel] FOREIGN KEY([GoodsModelId])
+REFERENCES [dbo].[DriverGoods_GoodsModel] ([GoodsModelId])
+GO
+
+ALTER TABLE [dbo].[DriverGoods_GoodsBuyItem] CHECK CONSTRAINT [FK_DriverGoods_GoodsBuyItem_DriverGoods_GoodsModel]
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverGoods_GoodsBuyItem', @level2type=N'COLUMN',@level2name=N'GoodsBuyItemId'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverGoods_GoodsBuyItem', @level2type=N'COLUMN',@level2name=N'GoodsBuyId'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverGoods_GoodsBuyItem', @level2type=N'COLUMN',@level2name=N'GoodsModelId'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverGoods_GoodsBuyItem', @level2type=N'COLUMN',@level2name=N'Quantity'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Ҫʱ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverGoods_GoodsBuyItem', @level2type=N'COLUMN',@level2name=N'RequiredTime'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'빺ϸ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverGoods_GoodsBuyItem'
+GO
+
+
+
+CREATE VIEW [dbo].[View_DriverGoods_GoodsBuyItem]
+/*Գ빺ϸѯб*/
+AS
+SELECT Item.GoodsBuyItemId,
+ Item.GoodsBuyId,
+ Item.GoodsModelId,
+ Item.Quantity,
+ Item.RequiredTime,
+ Model.Code,
+ Model.ProjectId,
+ Model.Description,
+ Model.Purpose,
+ Model.Attachment,
+ Model.Remark
+FROM dbo.DriverGoods_GoodsBuyItem AS Item
+LEFT JOIN dbo.DriverGoods_GoodsModel AS Model ON Model.GoodsModelId=Item.GoodsModelId
+
+
+
+
+
+GO
+
+
diff --git a/DataBase/菜单初始化脚本/1-7试车管理(Menu_TestRun).sql b/DataBase/菜单初始化脚本/1-7试车管理(Menu_TestRun).sql
index d3f6105c..d2a995a4 100644
--- a/DataBase/菜单初始化脚本/1-7试车管理(Menu_TestRun).sql
+++ b/DataBase/菜单初始化脚本/1-7试车管理(Menu_TestRun).sql
@@ -275,15 +275,15 @@ GO
INSERT INTO Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) VALUES(NEWID(),'1EC7978C-7800-45B2-9E80-3334644EF898','',4)
GO
-INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)
-VALUES('AACD667C-5481-425D-819C-3892168DF61E','ϸٹ','TestRun/DriverGoods/MaterialTrace.aspx',30,'CA46AEF2-D058-433B-BDE3-760015337ED4','Menu_TestRun',0,1,1)
-GO
- /* ϸٹ */
- INSERT INTO Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) VALUES(NEWID(),'AACD667C-5481-425D-819C-3892168DF61E','',1)
- INSERT INTO Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) VALUES(NEWID(),'AACD667C-5481-425D-819C-3892168DF61E','',2)
- INSERT INTO Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) VALUES(NEWID(),'AACD667C-5481-425D-819C-3892168DF61E','ɾ',3)
- INSERT INTO Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) VALUES(NEWID(),'AACD667C-5481-425D-819C-3892168DF61E','',4)
- GO
+--INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)
+--VALUES('AACD667C-5481-425D-819C-3892168DF61E','ϸٹ','TestRun/DriverGoods/MaterialTrace.aspx',30,'CA46AEF2-D058-433B-BDE3-760015337ED4','Menu_TestRun',0,1,1)
+--GO
+-- /* ϸٹ */
+-- INSERT INTO Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) VALUES(NEWID(),'AACD667C-5481-425D-819C-3892168DF61E','',1)
+-- INSERT INTO Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) VALUES(NEWID(),'AACD667C-5481-425D-819C-3892168DF61E','',2)
+-- INSERT INTO Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) VALUES(NEWID(),'AACD667C-5481-425D-819C-3892168DF61E','ɾ',3)
+-- INSERT INTO Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) VALUES(NEWID(),'AACD667C-5481-425D-819C-3892168DF61E','',4)
+-- GO
/* ===============ԤԳ ============*/
diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj
index 2cc5fba1..f837d0f2 100644
--- a/SGGL/BLL/BLL.csproj
+++ b/SGGL/BLL/BLL.csproj
@@ -727,6 +727,7 @@
+
diff --git a/SGGL/BLL/TestRun/DriverGoods/GoodsBuyItemService.cs b/SGGL/BLL/TestRun/DriverGoods/GoodsBuyItemService.cs
new file mode 100644
index 00000000..d43adae6
--- /dev/null
+++ b/SGGL/BLL/TestRun/DriverGoods/GoodsBuyItemService.cs
@@ -0,0 +1,67 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace BLL
+{
+ ///
+ /// 请购单明细
+ ///
+ public static class GoodsBuyItemService
+ {
+ public static Model.SGGLDB db = Funs.DB;
+
+ ///
+ /// 根据主键获取请购单明细
+ ///
+ ///
+ ///
+ public static Model.DriverGoods_GoodsBuyItem GetGoodsBuyItemById(string GoodsBuyItemId)
+ {
+ return Funs.DB.DriverGoods_GoodsBuyItem.FirstOrDefault(e => e.GoodsBuyItemId == GoodsBuyItemId);
+ }
+
+ ///
+ /// 根据周(月)报Id获取请购单明细
+ ///
+ ///
+ ///
+ public static List GetGoodsBuyItemByGoodsBuyId(string GoodsBuyId)
+ {
+ return (from x in Funs.DB.DriverGoods_GoodsBuyItem where x.GoodsBuyId == GoodsBuyId select x).ToList();
+ }
+
+ ///
+ /// 添加请购单明细
+ ///
+ ///
+ public static void AddGoodsBuyItem(Model.DriverGoods_GoodsBuyItem GoodsBuyItem)
+ {
+ Model.SGGLDB db = Funs.DB;
+ Model.DriverGoods_GoodsBuyItem newGoodsBuyItem = new Model.DriverGoods_GoodsBuyItem();
+ newGoodsBuyItem.GoodsBuyItemId = GoodsBuyItem.GoodsBuyItemId;
+ newGoodsBuyItem.GoodsBuyId = GoodsBuyItem.GoodsBuyId;
+ newGoodsBuyItem.GoodsModelId = GoodsBuyItem.GoodsModelId;
+ newGoodsBuyItem.Quantity = GoodsBuyItem.Quantity;
+ newGoodsBuyItem.RequiredTime = GoodsBuyItem.RequiredTime;
+ db.DriverGoods_GoodsBuyItem.InsertOnSubmit(newGoodsBuyItem);
+ db.SubmitChanges();
+ }
+
+ ///
+ /// 根据周(月)报Id删除所有相关明细信息
+ ///
+ ///
+ public static void DeleteGoodsBuyItemByGoodsBuyId(string GoodsBuyId)
+ {
+ Model.SGGLDB db = Funs.DB;
+ var q = (from x in db.DriverGoods_GoodsBuyItem where x.GoodsBuyId == GoodsBuyId select x).ToList();
+ if (q.Count() > 0)
+ {
+ db.DriverGoods_GoodsBuyItem.DeleteAllOnSubmit(q);
+ db.SubmitChanges();
+ }
+ }
+ }
+}
diff --git a/SGGL/BLL/TestRun/DriverGoods/GoodsBuyService.cs b/SGGL/BLL/TestRun/DriverGoods/GoodsBuyService.cs
index 83f2ac69..9d81cfb6 100644
--- a/SGGL/BLL/TestRun/DriverGoods/GoodsBuyService.cs
+++ b/SGGL/BLL/TestRun/DriverGoods/GoodsBuyService.cs
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using System.Web.UI.WebControls;
namespace BLL
{
@@ -39,6 +40,7 @@ namespace BLL
newGoodsBuy.GetGoodsDate = GoodsBuy.GetGoodsDate;
newGoodsBuy.AttachUrl = GoodsBuy.AttachUrl;
newGoodsBuy.Remark = GoodsBuy.Remark;
+ newGoodsBuy.UnitCode = GoodsBuy.UnitCode;
Funs.DB.DriverGoods_GoodsBuy.InsertOnSubmit(newGoodsBuy);
Funs.DB.SubmitChanges();
}
@@ -56,11 +58,12 @@ namespace BLL
newGoodsBuy.BuyName = GoodsBuy.BuyName;
newGoodsBuy.BuyCode = GoodsBuy.BuyCode;
//newGoodsBuy.CompileMan = GoodsBuy.CompileMan;
- newGoodsBuy.ApprovalDate = GoodsBuy.ApprovalDate;
+ //newGoodsBuy.ApprovalDate = GoodsBuy.ApprovalDate;
newGoodsBuy.SubmitDate = GoodsBuy.SubmitDate;
newGoodsBuy.GetGoodsDate = GoodsBuy.GetGoodsDate;
newGoodsBuy.AttachUrl = GoodsBuy.AttachUrl;
newGoodsBuy.Remark = GoodsBuy.Remark;
+ newGoodsBuy.UnitCode = GoodsBuy.UnitCode;
Funs.DB.SubmitChanges();
}
}
@@ -82,5 +85,39 @@ namespace BLL
Funs.DB.SubmitChanges();
}
}
+
+ ///
+ /// 获取类型信息
+ ///
+ ///
+ public static ListItem[] GetBugType()
+ {
+ ListItem[] list = new ListItem[5];
+ list[0] = new ListItem("01 开车临时材料请购单", "01");
+ list[1] = new ListItem("02 润滑油、脂请购单", "02");
+ list[2] = new ListItem("03 化学品消耗清单", "03");
+ list[3] = new ListItem("04 开车垫片请购单", "04");
+ list[4] = new ListItem("05 开车其他物资", "05");
+ return list;
+ }
+
+ ///
+ /// 获取方案类别
+ ///
+ ///
+ ///
+ public static string ConvertBugType(object solutionType)
+ {
+ if (solutionType != null)
+ {
+ ListItem[] list = GetBugType();
+ var item = list.FirstOrDefault(x => x.Value == solutionType.ToString());
+ if (item != null)
+ {
+ return item.Text.Substring(3);
+ }
+ }
+ return "";
+ }
}
}
diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt
index ecc8ecde..794ad190 100644
--- a/SGGL/FineUIPro.Web/ErrLog.txt
+++ b/SGGL/FineUIPro.Web/ErrLog.txt
@@ -1,307 +1,42 @@
-<<<<<<< HEAD
-=======
错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
+错误类型:NullReferenceException
+错误信息:未将对象引用设置到对象的实例。
错误堆栈:
- 在 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.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2180
-出错时间:03/04/2024 12:49:49
-出错时间:03/04/2024 12:49:49
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: 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.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2045
-出错时间:03/04/2024 12:49:49
-出错时间:03/04/2024 12:49:49
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: 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.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1941
-出错时间:03/04/2024 12:49:49
-出错时间:03/04/2024 12:49:49
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: 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.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1883
-出错时间:03/04/2024 12:49:49
-出错时间:03/04/2024 12:49:49
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeEdit.aspx(127): error CS1061: “ASP.testrun_driverschemeedit_aspx”不包含“rblIsAgree_SelectedIndexChanged”的定义,并且找不到可接受类型为“ASP.testrun_driverschemeedit_aspx”的第一个参数的扩展方法“rblIsAgree_SelectedIndexChanged”(是否缺少 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)
-出错时间:03/04/2024 15:32:44
-出错文件:http://localhost:8579/TestRun/DriverSchemeEdit.aspx?SolutionType=01
-IP地址:::1
-
-出错时间:03/04/2024 15:32:44
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeEdit.aspx(136): error CS1061: “ASP.testrun_driverschemeedit_aspx”不包含“drpHandleType_SelectedIndexChanged”的定义,并且找不到可接受类型为“ASP.testrun_driverschemeedit_aspx”的第一个参数的扩展方法“drpHandleType_SelectedIndexChanged”(是否缺少 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)
-出错时间:03/04/2024 15:34:25
-出错文件:http://localhost:8579/TestRun/DriverSchemeEdit.aspx?SolutionType=01
-IP地址:::1
-
-出错时间:03/04/2024 15:34:25
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:INSERT 语句与 FOREIGN KEY 约束"FK_Solution_TestRunConstructSolutionApprove_Sys_User"冲突。该冲突发生于数据库"SGGLDB_WH",表"dbo.Sys_User", column 'UserId'。
-语句已终止。
-错误堆栈:
- 在 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.DynamicInsert(TrackedObject item)
- 在 System.Data.Linq.ChangeDirector.StandardChangeDirector.Insert(TrackedObject item)
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 BLL.TestRunConstructSolutionApproveService.AddConstructSolutionApprove(Solution_TestRunConstructSolutionApprove approve) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\TestRun\TestRunConstructSolutionApproveService.cs:行号 232
- 在 FineUIPro.Web.TestRun.DriverSchemeEdit.Save(String saveType) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeEdit.aspx.cs:行号 313
- 在 FineUIPro.Web.TestRun.DriverSchemeEdit.btnSubmit_Click(Object sender, EventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeEdit.aspx.cs:行号 677
- 在 FineUIPro.Button.OnClick(EventArgs e)
- 在 (Button , EventArgs )
- 在 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
+ 在 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.<>c__DisplayClass5_0.b__1(View_DriverGoods_GoodsBuyItem x) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:行号 157
+ 在 System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate)
+ 在 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:行号 157
+ 在 FineUIPro.Window.OnClose(WindowCloseEventArgs e)
+ 在 (Window , WindowCloseEventArgs )
+ 在 FineUIPro.Window.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)
-出错时间:03/04/2024 17:13:27
-出错文件:http://localhost:8579/TestRun/DriverSchemeEdit.aspx?SolutionType=01
+出错时间:03/06/2024 15:22:37
+出错文件:http://localhost:8579/TestRun/DriverGoods/GoodsBuyEdit.aspx?GoodsBuyId=1d50d365-8005-48b4-af92-49f780aea04a
IP地址:::1
操作人员:JT
-出错时间:03/04/2024 17:13:27
+出错时间:03/06/2024 15:22:37
错误信息开始=====>
-错误类型:SqlException
-错误信息:违反了 PRIMARY KEY 约束“PK_Solution_TestRunConstructSolution”。不能在对象“dbo.Solution_TestRunConstructSolution”中插入重复键。重复键值为 (37aed052-8bb3-4a8e-89fb-52e3f9a5e994)。
-语句已终止。
+错误类型:NullReferenceException
+错误信息:未将对象引用设置到对象的实例。
错误堆栈:
- 在 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.DynamicInsert(TrackedObject item)
- 在 System.Data.Linq.ChangeDirector.StandardChangeDirector.Insert(TrackedObject item)
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 BLL.TestRunConstructSolutionService.AddConstructSolution(Solution_TestRunConstructSolution constructSolution) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\TestRun\TestRunConstructSolutionService.cs:行号 71
- 在 FineUIPro.Web.TestRun.DriverSchemeEdit.Save(String saveType) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeEdit.aspx.cs:行号 295
- 在 FineUIPro.Web.TestRun.DriverSchemeEdit.btnSubmit_Click(Object sender, EventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeEdit.aspx.cs:行号 677
- 在 FineUIPro.Button.OnClick(EventArgs e)
- 在 (Button , EventArgs )
- 在 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
+ 在 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.<>c__DisplayClass5_0.b__1(View_DriverGoods_GoodsBuyItem x) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:行号 157
+ 在 System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate)
+ 在 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:行号 157
+ 在 FineUIPro.Window.OnClose(WindowCloseEventArgs e)
+ 在 (Window , WindowCloseEventArgs )
+ 在 FineUIPro.Window.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)
-出错时间:03/04/2024 17:13:29
-出错文件:http://localhost:8579/TestRun/DriverSchemeEdit.aspx?SolutionType=01
+出错时间:03/06/2024 15:24:56
+出错文件:http://localhost:8579/TestRun/DriverGoods/GoodsBuyEdit.aspx?GoodsBuyId=1d50d365-8005-48b4-af92-49f780aea04a
IP地址:::1
操作人员:JT
-出错时间:03/04/2024 17:13:29
+出错时间:03/06/2024 15:24:57
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:INSERT 语句与 FOREIGN KEY 约束"FK_Solution_TestRunConstructSolutionApprove_Sys_User"冲突。该冲突发生于数据库"SGGLDB_WH",表"dbo.Sys_User", column 'UserId'。
-语句已终止。
-错误堆栈:
- 在 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.DynamicInsert(TrackedObject item)
- 在 System.Data.Linq.ChangeDirector.StandardChangeDirector.Insert(TrackedObject item)
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 BLL.TestRunConstructSolutionApproveService.AddConstructSolutionApprove(Solution_TestRunConstructSolutionApprove approve) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\TestRun\TestRunConstructSolutionApproveService.cs:行号 232
- 在 FineUIPro.Web.TestRun.DriverSchemeEdit.Save(String saveType) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeEdit.aspx.cs:行号 313
- 在 FineUIPro.Web.TestRun.DriverSchemeEdit.btnSubmit_Click(Object sender, EventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeEdit.aspx.cs:行号 677
- 在 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)
-出错时间:03/04/2024 17:17:17
-出错文件:http://localhost:8579/TestRun/DriverSchemeEdit.aspx?SolutionType=01
-IP地址:::1
-操作人员:JT
-
-出错时间:03/04/2024 17:17:17
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:列“AAA”不属于表 。
-错误堆栈:
- 在 System.Data.DataRow.GetDataColumn(String columnName)
- 在 System.Data.DataRow.set_Item(String columnName, Object value)
- 在 FineUIPro.Web.TestRun.DriverSchemeChart.AnalyseData() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeChart.aspx.cs:行号 64
- 在 FineUIPro.Web.TestRun.DriverSchemeChart.BtnAnalyse_Click(Object sender, EventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeChart.aspx.cs:行号 33
- 在 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)
-出错时间:03/05/2024 11:07:41
-出错文件:http://localhost:8579/TestRun/DriverSchemeChart.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/05/2024 11:07:41
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:列“AAA”不属于表 。
-错误堆栈:
- 在 System.Data.DataRow.GetDataColumn(String columnName)
- 在 System.Data.DataRow.set_Item(String columnName, Object value)
- 在 FineUIPro.Web.TestRun.DriverSchemeChart.AnalyseData() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeChart.aspx.cs:行号 64
- 在 FineUIPro.Web.TestRun.DriverSchemeChart.BtnAnalyse_Click(Object sender, EventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeChart.aspx.cs:行号 33
- 在 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)
-出错时间:03/05/2024 11:07:42
-出错文件:http://localhost:8579/TestRun/DriverSchemeChart.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/05/2024 11:07:42
-
->>>>>>> d28f7920d8c82ae74b3b4579a35df26704bc6372
diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
index f31ad95e..61e42452 100644
--- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
+++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
@@ -1719,6 +1719,7 @@
+
@@ -15546,6 +15547,13 @@
MaterialTraceEdit.aspx
+
+ ShowGoodsModel.aspx
+ ASPXCodeBehind
+
+
+ ShowGoodsModel.aspx
+
HseHazard.aspx
ASPXCodeBehind
diff --git a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuy.aspx b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuy.aspx
index 8afa3ffe..96a8e07e 100644
--- a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuy.aspx
+++ b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuy.aspx
@@ -9,78 +9,83 @@
diff --git a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.cs b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.cs
index 53e5e25a..9d913a87 100644
--- a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.cs
+++ b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.cs
@@ -1,5 +1,8 @@
using BLL;
+using Newtonsoft.Json.Linq;
using System;
+using System.Collections.Generic;
+using System.Linq;
namespace FineUIPro.Web.TestRun.DriverGoods
{
@@ -15,9 +18,7 @@ namespace FineUIPro.Web.TestRun.DriverGoods
{
if (!IsPostBack)
{
- BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
-
- string id = Request.Params["id"];
+ string id = Request.Params["GoodsBuyId"];
if (!string.IsNullOrEmpty(id))
{
Model.DriverGoods_GoodsBuy data = BLL.GoodsBuyService.GetGoodsBuyById(id);
@@ -25,18 +26,27 @@ namespace FineUIPro.Web.TestRun.DriverGoods
{
this.hdId.Text = id;
this.txtCode.Text = data.Code;
- this.txtBuyName.Text = data.BuyName;
- this.txtBuyCode.Text = data.BuyCode;
- if (!string.IsNullOrEmpty(data.CompileMan))
+ if (!string.IsNullOrEmpty(data.BuyCode))
{
- this.drpCompileMan.SelectedValue = data.CompileMan;
+ this.hdBuyCode.Text = data.BuyCode;
+ this.txtBuyName.Text = GoodsBuyService.ConvertBugType(data.BuyCode);
+ }
+ this.txtUnitCode.Text = data.UnitCode;
+ var list = from x in Funs.DB.View_DriverGoods_GoodsBuyItem where x.GoodsBuyId == id orderby x.Code select x;
+ this.Grid1.DataSource = list;
+ this.Grid1.DataBind();
+ if (list.Count() > 0)
+ {
+ var ids = list.Select(x => x.GoodsModelId).ToArray();
+ this.hdItemsString.Text = Funs.GetStringByArray(ids);
}
- this.txtApprovalDate.Text = data.ApprovalDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.ApprovalDate) : "";
- this.txtSubmitDate.Text = data.SubmitDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.SubmitDate) : "";
- this.txtGetGoodsDate.Text = data.GetGoodsDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.GetGoodsDate) : "";
- this.txtRemark.Text = data.Remark;
}
}
+ else
+ {
+ this.hdBuyCode.Text = Request.Params["BuyCode"];
+ this.txtBuyName.Text = GoodsBuyService.ConvertBugType(this.hdBuyCode.Text);
+ }
}
}
#endregion
@@ -65,19 +75,14 @@ namespace FineUIPro.Web.TestRun.DriverGoods
///
protected void btnSave_Click(object sender, EventArgs e)
{
- string id = Request.Params["id"];
+ string id = Request.Params["GoodsBuyId"];
Model.DriverGoods_GoodsBuy newData = new Model.DriverGoods_GoodsBuy();
newData.Code = this.txtCode.Text.Trim();
newData.BuyName = this.txtBuyName.Text.Trim();
- newData.BuyCode = this.txtBuyCode.Text.Trim();
- if (this.drpCompileMan.SelectedValue != BLL.Const._Null)
- {
- newData.CompileMan = this.drpCompileMan.SelectedValue;
- }
- newData.ApprovalDate = Funs.GetNewDateTime(this.txtApprovalDate.Text.Trim());
- newData.SubmitDate = Funs.GetNewDateTime(this.txtSubmitDate.Text.Trim());
- newData.GetGoodsDate = Funs.GetNewDateTime(this.txtGetGoodsDate.Text.Trim());
- newData.Remark = this.txtRemark.Text.Trim();
+ newData.BuyCode = this.hdBuyCode.Text.Trim();
+ newData.UnitCode = this.txtUnitCode.Text.Trim();
+ newData.CompileMan = this.CurrUser.UserId;
+ newData.ApprovalDate = DateTime.Now;
newData.ProjectId = this.CurrUser.LoginProjectId;
if (!string.IsNullOrEmpty(id))
{
@@ -97,9 +102,122 @@ namespace FineUIPro.Web.TestRun.DriverGoods
}
BLL.GoodsBuyService.AddGoodsBuy(newData);
}
+ BLL.GoodsBuyItemService.DeleteGoodsBuyItemByGoodsBuyId(newData.GoodsBuyId);
+ var details = jerqueSaveList();
+ foreach (var detail in details)
+ {
+ Model.DriverGoods_GoodsBuyItem item = new Model.DriverGoods_GoodsBuyItem();
+ item.GoodsBuyItemId = SQLHelper.GetNewID();
+ item.GoodsBuyId = newData.GoodsBuyId;
+ item.GoodsModelId = detail.GoodsModelId;
+ item.Quantity = detail.Quantity;
+ item.RequiredTime = detail.RequiredTime;
+ BLL.GoodsBuyItemService.AddGoodsBuyItem(item);
+ }
ShowNotify("保存成功!", MessageBoxIcon.Success);
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
}
#endregion
+
+ #region 搜索
+ ///
+ /// 搜索
+ ///
+ ///
+ ///
+ protected void btnNew_Click(object sender, EventArgs e)
+ {
+ string window = String.Format("ShowGoodsModel.aspx?Ids={0}", hdItemsString.Text, "查找 - ");
+ PageContext.RegisterStartupScript(Window1.GetSaveStateReference(hdItemsString.ClientID) + Window1.GetShowReference(window));
+ }
+ #endregion
+
+ #region 保存Grid集合
+ ///
+ /// 检查并保存集合
+ ///
+ private List jerqueSaveList()
+ {
+ var models = from x in Funs.DB.DriverGoods_GoodsModel where x.ProjectId == this.CurrUser.LoginProjectId select x;
+ List details = new List();
+ foreach (JObject mergedRow in Grid1.GetMergedData())
+ {
+ JObject values = mergedRow.Value("values");
+ int i = mergedRow.Value("index");
+ Model.View_DriverGoods_GoodsBuyItem detail = new Model.View_DriverGoods_GoodsBuyItem();
+ detail.GoodsModelId = this.Grid1.Rows[i].RowID;
+ Model.DriverGoods_GoodsModel model = models.FirstOrDefault(x => x.GoodsModelId == detail.GoodsModelId);
+ detail.Purpose = model.Purpose;
+ detail.Description = model.Description;
+ detail.Attachment = model.Attachment;
+ detail.Remark = model.Remark;
+ detail.Quantity = values.Value("Quantity");
+ string requiredTime = values.Value("RequiredTime");
+ if (!string.IsNullOrEmpty(requiredTime))
+ {
+ detail.RequiredTime = Convert.ToDateTime(requiredTime);
+ }
+
+ details.Add(detail);
+ }
+ return details;
+ }
+ #endregion
+
+ #region 关闭弹出窗口
+ ///
+ /// 关闭弹出窗口
+ ///
+ ///
+ ///
+ protected void Window1_Close(object sender, WindowCloseEventArgs e)
+ {
+ if (!string.IsNullOrEmpty(hdItemsString.Text))
+ {
+ string[] ids = hdItemsString.Text.Split(',');
+ var details = jerqueSaveList();
+ var models = from x in Funs.DB.DriverGoods_GoodsModel where x.ProjectId == this.CurrUser.LoginProjectId select x;
+ foreach (var id in ids)
+ {
+ var oldDetail = details.FirstOrDefault(x => x.GoodsModelId == id);
+ if (oldDetail == null) //添加集合没有的新纪录
+ {
+ Model.DriverGoods_GoodsModel model = models.FirstOrDefault(x => x.GoodsModelId == id);
+ if (model != null)
+ {
+ Model.View_DriverGoods_GoodsBuyItem detail = new Model.View_DriverGoods_GoodsBuyItem();
+ detail.GoodsModelId = model.GoodsModelId;
+ detail.Purpose = model.Purpose;
+ detail.Description = model.Description;
+ detail.Attachment = model.Attachment;
+ detail.Remark = model.Remark;
+ details.Add(detail);
+ }
+ }
+ }
+ this.Grid1.DataSource = details;
+ this.Grid1.DataBind();
+ }
+ }
+ #endregion
+
+ protected void Grid1_RowCommand(object sender, GridCommandEventArgs e)
+ {
+ string itemId = Grid1.DataKeys[e.RowIndex][0].ToString();
+ List details = jerqueSaveList();
+ if (e.CommandName == "delete")
+ {
+ foreach (Model.View_DriverGoods_GoodsBuyItem detail in details)
+ {
+ if (detail.GoodsModelId == itemId)
+ {
+ details.Remove(detail);
+ break;
+ }
+ }
+ Grid1.DataSource = details;
+ Grid1.DataBind();
+ }
+ }
}
}
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.designer.cs
index 5ef6bcff..0069f214 100644
--- a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.designer.cs
@@ -48,6 +48,24 @@ namespace FineUIPro.Web.TestRun.DriverGoods {
///
protected global::FineUIPro.Toolbar Toolbar1;
+ ///
+ /// hdItemsString 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox hdItemsString;
+
+ ///
+ /// hdBuyCode 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.HiddenField hdBuyCode;
+
///
/// ToolbarFill1 控件。
///
@@ -118,61 +136,16 @@ namespace FineUIPro.Web.TestRun.DriverGoods {
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.TextBox txtBuyName;
+ protected global::FineUIPro.Label txtBuyName;
///
- /// txtBuyCode 控件。
+ /// txtUnitCode 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.TextBox txtBuyCode;
-
- ///
- /// drpCompileMan 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.DropDownList drpCompileMan;
-
- ///
- /// txtApprovalDate 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.DatePicker txtApprovalDate;
-
- ///
- /// txtSubmitDate 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.DatePicker txtSubmitDate;
-
- ///
- /// txtGetGoodsDate 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.DatePicker txtGetGoodsDate;
-
- ///
- /// txtRemark 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextArea txtRemark;
+ protected global::FineUIPro.TextBox txtUnitCode;
///
/// Panel3 控件。
@@ -201,6 +174,51 @@ namespace FineUIPro.Web.TestRun.DriverGoods {
///
protected global::FineUIPro.Button btnAttach;
+ ///
+ /// Grid1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid Grid1;
+
+ ///
+ /// Toolbar4 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar4;
+
+ ///
+ /// btnNew 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnNew;
+
+ ///
+ /// txtQuantity 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtQuantity;
+
+ ///
+ /// txtRequiredTime 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtRequiredTime;
+
///
/// WindowAtt 控件。
///
@@ -209,5 +227,14 @@ namespace FineUIPro.Web.TestRun.DriverGoods {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Window WindowAtt;
+
+ ///
+ /// Window1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Window Window1;
}
}
diff --git a/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx b/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx
new file mode 100644
index 00000000..dbd5049c
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx
@@ -0,0 +1,64 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ShowGoodsModel.aspx.cs" Inherits="FineUIPro.Web.TestRun.DriverGoods.ShowGoodsModel" %>
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx.cs b/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx.cs
new file mode 100644
index 00000000..49f1dc04
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx.cs
@@ -0,0 +1,100 @@
+using BLL;
+using System;
+using System.Collections.Generic;
+using System.Data;
+using System.Data.SqlClient;
+using System.Linq;
+
+namespace FineUIPro.Web.TestRun.DriverGoods
+{
+ public partial class ShowGoodsModel : PageBase
+ {
+ #region 加载页面
+ ///
+ /// 加载页面
+ ///
+ ///
+ ///
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ if (!IsPostBack)
+ {
+ this.BindGrid();
+ }
+ }
+ #endregion
+
+ #region 数据绑定
+ ///
+ /// 数据绑定
+ ///
+ private void BindGrid()
+ {
+ //string[] selectRowId = Grid1.SelectedRowIDArray;
+ //foreach (GridRow row in Grid1.Rows)
+ //{
+ // if (selectRowId.Contains(row.RowID))
+ // {
+ // hdIds.Text += row.DataKeys[1].ToString() + ",";
+ // }
+ //}
+ string strSql = @"SELECT *
+ FROM dbo.DriverGoods_GoodsModel C
+ where C.ProjectId = @ProjectId";
+ List listStr = new List();
+ listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));
+ SqlParameter[] parameter = listStr.ToArray();
+ DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
+
+ Grid1.RecordCount = tb.Rows.Count;
+ var table = this.GetPagedDataTable(Grid1, tb);
+ Grid1.DataSource = table;
+ Grid1.DataBind();
+ string id = Request.Params["Ids"];
+ List ids = new List();
+ foreach (GridRow row in Grid1.Rows)
+ {
+ if (id.Contains(row.DataKeys[0].ToString()))
+ {
+ ids.Add(row.RowID);
+ }
+ }
+ this.Grid1.SelectedRowIDArray = ids.ToArray();
+ }
+ #endregion
+
+ #region 排序
+ ///
+ /// 排序
+ ///
+ ///
+ ///
+ protected void Grid1_Sort(object sender, GridSortEventArgs e)
+ {
+ this.BindGrid();
+ }
+ #endregion
+
+ #region 确定按钮
+ ///
+ /// 确定按钮
+ ///
+ ///
+ ///
+ protected void btnAccept_Click(object sender, EventArgs e)
+ {
+ string ids = string.Empty;
+ foreach (string id in Grid1.SelectedRowIDArray)
+ {
+ ids += id + ",";
+ }
+ if (!string.IsNullOrEmpty(ids))
+ {
+ ids = ids.Substring(0, ids.LastIndexOf(","));
+ }
+ PageContext.RegisterStartupScript(ActiveWindow.GetWriteBackValueReference(ids)
+ + ActiveWindow.GetHidePostBackReference());
+ }
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx.designer.cs
new file mode 100644
index 00000000..96fc1f26
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx.designer.cs
@@ -0,0 +1,96 @@
+//------------------------------------------------------------------------------
+// <自动生成>
+// 此代码由工具生成。
+//
+// 对此文件的更改可能导致不正确的行为,如果
+// 重新生成代码,则所做更改将丢失。
+// 自动生成>
+//------------------------------------------------------------------------------
+
+namespace FineUIPro.Web.TestRun.DriverGoods {
+
+
+ public partial class ShowGoodsModel {
+
+ ///
+ /// form1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::System.Web.UI.HtmlControls.HtmlForm form1;
+
+ ///
+ /// PageManager1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.PageManager PageManager1;
+
+ ///
+ /// Panel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel1;
+
+ ///
+ /// panelCenterRegion 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel panelCenterRegion;
+
+ ///
+ /// Grid1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid Grid1;
+
+ ///
+ /// Toolbar1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar1;
+
+ ///
+ /// ToolbarFill1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ToolbarFill ToolbarFill1;
+
+ ///
+ /// hdIds 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.HiddenField hdIds;
+
+ ///
+ /// btnAccept 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnAccept;
+ }
+}
diff --git a/SGGL/FineUIPro.Web/Web.config b/SGGL/FineUIPro.Web/Web.config
index 9fe9cb37..56282e91 100644
--- a/SGGL/FineUIPro.Web/Web.config
+++ b/SGGL/FineUIPro.Web/Web.config
@@ -12,7 +12,7 @@
-
+
diff --git a/SGGL/FineUIPro.Web/common/Menu_TestRun.xml b/SGGL/FineUIPro.Web/common/Menu_TestRun.xml
index 1f9d01b3..203f040f 100644
--- a/SGGL/FineUIPro.Web/common/Menu_TestRun.xml
+++ b/SGGL/FineUIPro.Web/common/Menu_TestRun.xml
@@ -36,7 +36,6 @@
-
diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs
index f123efcd..bb8befb4 100644
--- a/SGGL/Model/Model.cs
+++ b/SGGL/Model/Model.cs
@@ -725,6 +725,9 @@ namespace Model
partial void InsertDriverGoods_GoodsBuy(DriverGoods_GoodsBuy instance);
partial void UpdateDriverGoods_GoodsBuy(DriverGoods_GoodsBuy instance);
partial void DeleteDriverGoods_GoodsBuy(DriverGoods_GoodsBuy instance);
+ partial void InsertDriverGoods_GoodsBuyItem(DriverGoods_GoodsBuyItem instance);
+ partial void UpdateDriverGoods_GoodsBuyItem(DriverGoods_GoodsBuyItem instance);
+ partial void DeleteDriverGoods_GoodsBuyItem(DriverGoods_GoodsBuyItem instance);
partial void InsertDriverGoods_GoodsModel(DriverGoods_GoodsModel instance);
partial void UpdateDriverGoods_GoodsModel(DriverGoods_GoodsModel instance);
partial void DeleteDriverGoods_GoodsModel(DriverGoods_GoodsModel instance);
@@ -1415,9 +1418,6 @@ namespace Model
partial void InsertManager_Month_CheckC(Manager_Month_CheckC instance);
partial void UpdateManager_Month_CheckC(Manager_Month_CheckC instance);
partial void DeleteManager_Month_CheckC(Manager_Month_CheckC instance);
- partial void InsertManager_Month_ComplianceObligations(Manager_Month_ComplianceObligations instance);
- partial void UpdateManager_Month_ComplianceObligations(Manager_Month_ComplianceObligations instance);
- partial void DeleteManager_Month_ComplianceObligations(Manager_Month_ComplianceObligations instance);
partial void InsertManager_Month_ComplianceObligationsC(Manager_Month_ComplianceObligationsC instance);
partial void UpdateManager_Month_ComplianceObligationsC(Manager_Month_ComplianceObligationsC instance);
partial void DeleteManager_Month_ComplianceObligationsC(Manager_Month_ComplianceObligationsC instance);
@@ -4431,6 +4431,14 @@ namespace Model
}
}
+ public System.Data.Linq.Table DriverGoods_GoodsBuyItem
+ {
+ get
+ {
+ return this.GetTable();
+ }
+ }
+
public System.Data.Linq.Table DriverGoods_GoodsModel
{
get
@@ -6279,14 +6287,6 @@ namespace Model
}
}
- public System.Data.Linq.Table Manager_Month_ComplianceObligations
- {
- get
- {
- return this.GetTable();
- }
- }
-
public System.Data.Linq.Table Manager_Month_ComplianceObligationsC
{
get
@@ -9135,6 +9135,14 @@ namespace Model
}
}
+ public System.Data.Linq.Table View_DriverGoods_GoodsBuyItem
+ {
+ get
+ {
+ return this.GetTable();
+ }
+ }
+
public System.Data.Linq.Table View_EduTrain_TrainFind
{
get
@@ -21092,6 +21100,8 @@ namespace Model
private string _CodeRule;
+ private EntitySet _Doc_DocManage;
+
#region 可扩展性方法定义
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -21108,6 +21118,7 @@ namespace Model
public Base_DocType()
{
+ this._Doc_DocManage = new EntitySet(new Action(this.attach_Doc_DocManage), new Action(this.detach_Doc_DocManage));
OnCreated();
}
@@ -21191,6 +21202,19 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Doc_DocManage_Base_DocType", Storage="_Doc_DocManage", ThisKey="DocTypeId", OtherKey="DocTypeId", DeleteRule="NO ACTION")]
+ public EntitySet Doc_DocManage
+ {
+ get
+ {
+ return this._Doc_DocManage;
+ }
+ set
+ {
+ this._Doc_DocManage.Assign(value);
+ }
+ }
+
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -21210,6 +21234,18 @@ namespace Model
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
+
+ private void attach_Doc_DocManage(Doc_DocManage entity)
+ {
+ this.SendPropertyChanging();
+ entity.Base_DocType = this;
+ }
+
+ private void detach_Doc_DocManage(Doc_DocManage entity)
+ {
+ this.SendPropertyChanging();
+ entity.Base_DocType = null;
+ }
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Base_EmergencyType")]
@@ -117389,6 +117425,8 @@ namespace Model
private EntityRef _Base_CNProfessional;
+ private EntityRef _Base_DocType;
+
private EntityRef _Base_Project;
private EntityRef _Base_Unit;
@@ -117440,6 +117478,7 @@ namespace Model
public Doc_DocManage()
{
this._Base_CNProfessional = default(EntityRef);
+ this._Base_DocType = default(EntityRef);
this._Base_Project = default(EntityRef);
this._Base_Unit = default(EntityRef);
this._Sys_User = default(EntityRef);
@@ -117518,6 +117557,10 @@ namespace Model
{
if ((this._DocTypeId != value))
{
+ if (this._Base_DocType.HasLoadedOrAssignedValue)
+ {
+ throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
+ }
this.OnDocTypeIdChanging(value);
this.SendPropertyChanging();
this._DocTypeId = value;
@@ -117837,6 +117880,40 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Doc_DocManage_Base_DocType", Storage="_Base_DocType", ThisKey="DocTypeId", OtherKey="DocTypeId", IsForeignKey=true)]
+ public Base_DocType Base_DocType
+ {
+ get
+ {
+ return this._Base_DocType.Entity;
+ }
+ set
+ {
+ Base_DocType previousValue = this._Base_DocType.Entity;
+ if (((previousValue != value)
+ || (this._Base_DocType.HasLoadedOrAssignedValue == false)))
+ {
+ this.SendPropertyChanging();
+ if ((previousValue != null))
+ {
+ this._Base_DocType.Entity = null;
+ previousValue.Doc_DocManage.Remove(this);
+ }
+ this._Base_DocType.Entity = value;
+ if ((value != null))
+ {
+ value.Doc_DocManage.Add(this);
+ this._DocTypeId = value.DocTypeId;
+ }
+ else
+ {
+ this._DocTypeId = default(string);
+ }
+ this.SendPropertyChanged("Base_DocType");
+ }
+ }
+ }
+
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Doc_DocManage_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{
@@ -118007,6 +118084,8 @@ namespace Model
private EntityRef _Doc_DocManage;
+ private EntityRef _Sys_User;
+
#region 可扩展性方法定义
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -118030,6 +118109,7 @@ namespace Model
public Doc_DocManageApprove()
{
this._Doc_DocManage = default(EntityRef);
+ this._Sys_User = default(EntityRef);
OnCreated();
}
@@ -118077,7 +118157,7 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveMan", DbType="NVarChar(500)")]
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveMan", DbType="NVarChar(50)")]
public string ApproveMan
{
get
@@ -118088,6 +118168,10 @@ namespace Model
{
if ((this._ApproveMan != value))
{
+ if (this._Sys_User.HasLoadedOrAssignedValue)
+ {
+ throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
+ }
this.OnApproveManChanging(value);
this.SendPropertyChanging();
this._ApproveMan = value;
@@ -118211,6 +118295,40 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Doc_DocManageApprove_Sys_User", Storage="_Sys_User", ThisKey="ApproveMan", OtherKey="UserId", IsForeignKey=true)]
+ public Sys_User Sys_User
+ {
+ get
+ {
+ return this._Sys_User.Entity;
+ }
+ set
+ {
+ Sys_User previousValue = this._Sys_User.Entity;
+ if (((previousValue != value)
+ || (this._Sys_User.HasLoadedOrAssignedValue == false)))
+ {
+ this.SendPropertyChanging();
+ if ((previousValue != null))
+ {
+ this._Sys_User.Entity = null;
+ previousValue.Doc_DocManageApprove.Remove(this);
+ }
+ this._Sys_User.Entity = value;
+ if ((value != null))
+ {
+ value.Doc_DocManageApprove.Add(this);
+ this._ApproveMan = value.UserId;
+ }
+ else
+ {
+ this._ApproveMan = default(string);
+ }
+ this.SendPropertyChanged("Sys_User");
+ }
+ }
+ }
+
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -121859,6 +121977,8 @@ namespace Model
private string _Remark;
+ private string _UnitCode;
+
private EntityRef _Base_Project;
private EntityRef _Sys_User;
@@ -121889,6 +122009,8 @@ namespace Model
partial void OnAttachUrlChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
+ partial void OnUnitCodeChanging(string value);
+ partial void OnUnitCodeChanged();
#endregion
public DriverGoods_GoodsBuy()
@@ -122126,6 +122248,26 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitCode", DbType="NVarChar(50)")]
+ public string UnitCode
+ {
+ get
+ {
+ return this._UnitCode;
+ }
+ set
+ {
+ if ((this._UnitCode != value))
+ {
+ this.OnUnitCodeChanging(value);
+ this.SendPropertyChanging();
+ this._UnitCode = value;
+ this.SendPropertyChanged("UnitCode");
+ this.OnUnitCodeChanged();
+ }
+ }
+ }
+
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_DriverGoods_GoodsBuy_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{
@@ -122215,6 +122357,205 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.DriverGoods_GoodsBuyItem")]
+ public partial class DriverGoods_GoodsBuyItem : INotifyPropertyChanging, INotifyPropertyChanged
+ {
+
+ private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
+
+ private string _GoodsBuyItemId;
+
+ private string _GoodsBuyId;
+
+ private string _GoodsModelId;
+
+ private string _Quantity;
+
+ private System.Nullable _RequiredTime;
+
+ private EntityRef _DriverGoods_GoodsModel;
+
+ #region 可扩展性方法定义
+ partial void OnLoaded();
+ partial void OnValidate(System.Data.Linq.ChangeAction action);
+ partial void OnCreated();
+ partial void OnGoodsBuyItemIdChanging(string value);
+ partial void OnGoodsBuyItemIdChanged();
+ partial void OnGoodsBuyIdChanging(string value);
+ partial void OnGoodsBuyIdChanged();
+ partial void OnGoodsModelIdChanging(string value);
+ partial void OnGoodsModelIdChanged();
+ partial void OnQuantityChanging(string value);
+ partial void OnQuantityChanged();
+ partial void OnRequiredTimeChanging(System.Nullable value);
+ partial void OnRequiredTimeChanged();
+ #endregion
+
+ public DriverGoods_GoodsBuyItem()
+ {
+ this._DriverGoods_GoodsModel = default(EntityRef);
+ OnCreated();
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GoodsBuyItemId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
+ public string GoodsBuyItemId
+ {
+ get
+ {
+ return this._GoodsBuyItemId;
+ }
+ set
+ {
+ if ((this._GoodsBuyItemId != value))
+ {
+ this.OnGoodsBuyItemIdChanging(value);
+ this.SendPropertyChanging();
+ this._GoodsBuyItemId = value;
+ this.SendPropertyChanged("GoodsBuyItemId");
+ this.OnGoodsBuyItemIdChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GoodsBuyId", DbType="NVarChar(50)")]
+ public string GoodsBuyId
+ {
+ get
+ {
+ return this._GoodsBuyId;
+ }
+ set
+ {
+ if ((this._GoodsBuyId != value))
+ {
+ this.OnGoodsBuyIdChanging(value);
+ this.SendPropertyChanging();
+ this._GoodsBuyId = value;
+ this.SendPropertyChanged("GoodsBuyId");
+ this.OnGoodsBuyIdChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GoodsModelId", DbType="NVarChar(50)")]
+ public string GoodsModelId
+ {
+ get
+ {
+ return this._GoodsModelId;
+ }
+ set
+ {
+ if ((this._GoodsModelId != value))
+ {
+ if (this._DriverGoods_GoodsModel.HasLoadedOrAssignedValue)
+ {
+ throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
+ }
+ this.OnGoodsModelIdChanging(value);
+ this.SendPropertyChanging();
+ this._GoodsModelId = value;
+ this.SendPropertyChanged("GoodsModelId");
+ this.OnGoodsModelIdChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Quantity", DbType="NVarChar(50)")]
+ public string Quantity
+ {
+ get
+ {
+ return this._Quantity;
+ }
+ set
+ {
+ if ((this._Quantity != value))
+ {
+ this.OnQuantityChanging(value);
+ this.SendPropertyChanging();
+ this._Quantity = value;
+ this.SendPropertyChanged("Quantity");
+ this.OnQuantityChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RequiredTime", DbType="DateTime")]
+ public System.Nullable RequiredTime
+ {
+ get
+ {
+ return this._RequiredTime;
+ }
+ set
+ {
+ if ((this._RequiredTime != value))
+ {
+ this.OnRequiredTimeChanging(value);
+ this.SendPropertyChanging();
+ this._RequiredTime = value;
+ this.SendPropertyChanged("RequiredTime");
+ this.OnRequiredTimeChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_DriverGoods_GoodsBuyItem_DriverGoods_GoodsModel", Storage="_DriverGoods_GoodsModel", ThisKey="GoodsModelId", OtherKey="GoodsModelId", IsForeignKey=true)]
+ public DriverGoods_GoodsModel DriverGoods_GoodsModel
+ {
+ get
+ {
+ return this._DriverGoods_GoodsModel.Entity;
+ }
+ set
+ {
+ DriverGoods_GoodsModel previousValue = this._DriverGoods_GoodsModel.Entity;
+ if (((previousValue != value)
+ || (this._DriverGoods_GoodsModel.HasLoadedOrAssignedValue == false)))
+ {
+ this.SendPropertyChanging();
+ if ((previousValue != null))
+ {
+ this._DriverGoods_GoodsModel.Entity = null;
+ previousValue.DriverGoods_GoodsBuyItem.Remove(this);
+ }
+ this._DriverGoods_GoodsModel.Entity = value;
+ if ((value != null))
+ {
+ value.DriverGoods_GoodsBuyItem.Add(this);
+ this._GoodsModelId = value.GoodsModelId;
+ }
+ else
+ {
+ this._GoodsModelId = default(string);
+ }
+ this.SendPropertyChanged("DriverGoods_GoodsModel");
+ }
+ }
+ }
+
+ public event PropertyChangingEventHandler PropertyChanging;
+
+ public event PropertyChangedEventHandler PropertyChanged;
+
+ protected virtual void SendPropertyChanging()
+ {
+ if ((this.PropertyChanging != null))
+ {
+ this.PropertyChanging(this, emptyChangingEventArgs);
+ }
+ }
+
+ protected virtual void SendPropertyChanged(String propertyName)
+ {
+ if ((this.PropertyChanged != null))
+ {
+ this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
+ }
+ }
+ }
+
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.DriverGoods_GoodsModel")]
public partial class DriverGoods_GoodsModel : INotifyPropertyChanging, INotifyPropertyChanged
{
@@ -122237,6 +122578,8 @@ namespace Model
private string _Remark;
+ private EntitySet _DriverGoods_GoodsBuyItem;
+
private EntityRef _Base_Project;
#region 可扩展性方法定义
@@ -122263,6 +122606,7 @@ namespace Model
public DriverGoods_GoodsModel()
{
+ this._DriverGoods_GoodsBuyItem = new EntitySet(new Action(this.attach_DriverGoods_GoodsBuyItem), new Action(this.detach_DriverGoods_GoodsBuyItem));
this._Base_Project = default(EntityRef);
OnCreated();
}
@@ -122431,6 +122775,19 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_DriverGoods_GoodsBuyItem_DriverGoods_GoodsModel", Storage="_DriverGoods_GoodsBuyItem", ThisKey="GoodsModelId", OtherKey="GoodsModelId", DeleteRule="NO ACTION")]
+ public EntitySet DriverGoods_GoodsBuyItem
+ {
+ get
+ {
+ return this._DriverGoods_GoodsBuyItem;
+ }
+ set
+ {
+ this._DriverGoods_GoodsBuyItem.Assign(value);
+ }
+ }
+
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_DriverGoods_GoodsModel_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{
@@ -122484,6 +122841,18 @@ namespace Model
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
+
+ private void attach_DriverGoods_GoodsBuyItem(DriverGoods_GoodsBuyItem entity)
+ {
+ this.SendPropertyChanging();
+ entity.DriverGoods_GoodsModel = this;
+ }
+
+ private void detach_DriverGoods_GoodsBuyItem(DriverGoods_GoodsBuyItem entity)
+ {
+ this.SendPropertyChanging();
+ entity.DriverGoods_GoodsModel = null;
+ }
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.DriverGoods_GoodsPlan")]
@@ -228854,229 +229223,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Manager_Month_ComplianceObligations")]
- public partial class Manager_Month_ComplianceObligations : INotifyPropertyChanging, INotifyPropertyChanged
- {
-
- private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
-
- private string _ComplianceObligationsId;
-
- private string _MonthReportId;
-
- private string _InformationContent;
-
- private string _ResponseMeasures;
-
- private string _ImplementationStatus;
-
- private string _EvaluationConclusion;
-
- private EntityRef _Manager_MonthReportC;
-
- #region 可扩展性方法定义
- partial void OnLoaded();
- partial void OnValidate(System.Data.Linq.ChangeAction action);
- partial void OnCreated();
- partial void OnComplianceObligationsIdChanging(string value);
- partial void OnComplianceObligationsIdChanged();
- partial void OnMonthReportIdChanging(string value);
- partial void OnMonthReportIdChanged();
- partial void OnInformationContentChanging(string value);
- partial void OnInformationContentChanged();
- partial void OnResponseMeasuresChanging(string value);
- partial void OnResponseMeasuresChanged();
- partial void OnImplementationStatusChanging(string value);
- partial void OnImplementationStatusChanged();
- partial void OnEvaluationConclusionChanging(string value);
- partial void OnEvaluationConclusionChanged();
- #endregion
-
- public Manager_Month_ComplianceObligations()
- {
- this._Manager_MonthReportC = default(EntityRef);
- OnCreated();
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ComplianceObligationsId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
- public string ComplianceObligationsId
- {
- get
- {
- return this._ComplianceObligationsId;
- }
- set
- {
- if ((this._ComplianceObligationsId != value))
- {
- this.OnComplianceObligationsIdChanging(value);
- this.SendPropertyChanging();
- this._ComplianceObligationsId = value;
- this.SendPropertyChanged("ComplianceObligationsId");
- this.OnComplianceObligationsIdChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MonthReportId", DbType="NVarChar(50)")]
- public string MonthReportId
- {
- get
- {
- return this._MonthReportId;
- }
- set
- {
- if ((this._MonthReportId != value))
- {
- if (this._Manager_MonthReportC.HasLoadedOrAssignedValue)
- {
- throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
- }
- this.OnMonthReportIdChanging(value);
- this.SendPropertyChanging();
- this._MonthReportId = value;
- this.SendPropertyChanged("MonthReportId");
- this.OnMonthReportIdChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InformationContent", DbType="NVarChar(500)")]
- public string InformationContent
- {
- get
- {
- return this._InformationContent;
- }
- set
- {
- if ((this._InformationContent != value))
- {
- this.OnInformationContentChanging(value);
- this.SendPropertyChanging();
- this._InformationContent = value;
- this.SendPropertyChanged("InformationContent");
- this.OnInformationContentChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponseMeasures", DbType="NVarChar(500)")]
- public string ResponseMeasures
- {
- get
- {
- return this._ResponseMeasures;
- }
- set
- {
- if ((this._ResponseMeasures != value))
- {
- this.OnResponseMeasuresChanging(value);
- this.SendPropertyChanging();
- this._ResponseMeasures = value;
- this.SendPropertyChanged("ResponseMeasures");
- this.OnResponseMeasuresChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ImplementationStatus", DbType="NVarChar(500)")]
- public string ImplementationStatus
- {
- get
- {
- return this._ImplementationStatus;
- }
- set
- {
- if ((this._ImplementationStatus != value))
- {
- this.OnImplementationStatusChanging(value);
- this.SendPropertyChanging();
- this._ImplementationStatus = value;
- this.SendPropertyChanged("ImplementationStatus");
- this.OnImplementationStatusChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EvaluationConclusion", DbType="NVarChar(50)")]
- public string EvaluationConclusion
- {
- get
- {
- return this._EvaluationConclusion;
- }
- set
- {
- if ((this._EvaluationConclusion != value))
- {
- this.OnEvaluationConclusionChanging(value);
- this.SendPropertyChanging();
- this._EvaluationConclusion = value;
- this.SendPropertyChanged("EvaluationConclusion");
- this.OnEvaluationConclusionChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Manager_Month_ComplianceObligations_Manager_MonthReportC", Storage="_Manager_MonthReportC", ThisKey="MonthReportId", OtherKey="MonthReportId", IsForeignKey=true)]
- public Manager_MonthReportC Manager_MonthReportC
- {
- get
- {
- return this._Manager_MonthReportC.Entity;
- }
- set
- {
- Manager_MonthReportC previousValue = this._Manager_MonthReportC.Entity;
- if (((previousValue != value)
- || (this._Manager_MonthReportC.HasLoadedOrAssignedValue == false)))
- {
- this.SendPropertyChanging();
- if ((previousValue != null))
- {
- this._Manager_MonthReportC.Entity = null;
- previousValue.Manager_Month_ComplianceObligations.Remove(this);
- }
- this._Manager_MonthReportC.Entity = value;
- if ((value != null))
- {
- value.Manager_Month_ComplianceObligations.Add(this);
- this._MonthReportId = value.MonthReportId;
- }
- else
- {
- this._MonthReportId = default(string);
- }
- this.SendPropertyChanged("Manager_MonthReportC");
- }
- }
- }
-
- public event PropertyChangingEventHandler PropertyChanging;
-
- public event PropertyChangedEventHandler PropertyChanged;
-
- protected virtual void SendPropertyChanging()
- {
- if ((this.PropertyChanging != null))
- {
- this.PropertyChanging(this, emptyChangingEventArgs);
- }
- }
-
- protected virtual void SendPropertyChanged(String propertyName)
- {
- if ((this.PropertyChanged != null))
- {
- this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
- }
- }
- }
-
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Manager_Month_ComplianceObligationsC")]
public partial class Manager_Month_ComplianceObligationsC : INotifyPropertyChanging, INotifyPropertyChanged
{
@@ -235276,8 +235422,6 @@ namespace Model
private EntitySet _Manager_Month_CheckC;
- private EntitySet _Manager_Month_ComplianceObligations;
-
private EntitySet _Manager_Month_ComplianceObligationsC;
private EntitySet _Manager_Month_CostInvestmentPlanC;
@@ -235550,7 +235694,6 @@ namespace Model
this._Manager_Month_ActivitiesC = new EntitySet(new Action(this.attach_Manager_Month_ActivitiesC), new Action(this.detach_Manager_Month_ActivitiesC));
this._Manager_Month_ActivityDesC = new EntitySet(new Action(this.attach_Manager_Month_ActivityDesC), new Action(this.detach_Manager_Month_ActivityDesC));
this._Manager_Month_CheckC = new EntitySet(new Action(this.attach_Manager_Month_CheckC), new Action(this.detach_Manager_Month_CheckC));
- this._Manager_Month_ComplianceObligations = new EntitySet(new Action(this.attach_Manager_Month_ComplianceObligations), new Action(this.detach_Manager_Month_ComplianceObligations));
this._Manager_Month_ComplianceObligationsC = new EntitySet(new Action(this.attach_Manager_Month_ComplianceObligationsC), new Action(this.detach_Manager_Month_ComplianceObligationsC));
this._Manager_Month_CostInvestmentPlanC = new EntitySet(new Action(this.attach_Manager_Month_CostInvestmentPlanC), new Action(this.detach_Manager_Month_CostInvestmentPlanC));
this._Manager_Month_EmergencyExercisesC = new EntitySet(new Action(this.attach_Manager_Month_EmergencyExercisesC), new Action(this.detach_Manager_Month_EmergencyExercisesC));
@@ -237731,19 +237874,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Manager_Month_ComplianceObligations_Manager_MonthReportC", Storage="_Manager_Month_ComplianceObligations", ThisKey="MonthReportId", OtherKey="MonthReportId", DeleteRule="NO ACTION")]
- public EntitySet Manager_Month_ComplianceObligations
- {
- get
- {
- return this._Manager_Month_ComplianceObligations;
- }
- set
- {
- this._Manager_Month_ComplianceObligations.Assign(value);
- }
- }
-
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Manager_Month_ComplianceObligationsC_Manager_MonthReportC", Storage="_Manager_Month_ComplianceObligationsC", ThisKey="MonthReportId", OtherKey="MonthReportId", DeleteRule="NO ACTION")]
public EntitySet Manager_Month_ComplianceObligationsC
{
@@ -238325,18 +238455,6 @@ namespace Model
entity.Manager_MonthReportC = null;
}
- private void attach_Manager_Month_ComplianceObligations(Manager_Month_ComplianceObligations entity)
- {
- this.SendPropertyChanging();
- entity.Manager_MonthReportC = this;
- }
-
- private void detach_Manager_Month_ComplianceObligations(Manager_Month_ComplianceObligations entity)
- {
- this.SendPropertyChanging();
- entity.Manager_MonthReportC = null;
- }
-
private void attach_Manager_Month_ComplianceObligationsC(Manager_Month_ComplianceObligationsC entity)
{
this.SendPropertyChanging();
@@ -265851,7 +265969,7 @@ namespace Model
private System.Nullable _ProblemType;
- private string _QuestionTechnologyId;
+ private string _SubInspectId;
private string _TermItemId;
@@ -265865,20 +265983,18 @@ namespace Model
private string _InspectUser;
+ private string _HandleUser;
+
private string _ApproveUser;
+ private System.Nullable _AdjustCompleteTime;
+
private System.Nullable _ApproveState;
private string _AddUser;
private System.Nullable _AddTime;
- private string _HandleUser;
-
- private System.Nullable _AdjustCompleteTime;
-
- private string _SubInspectId;
-
#region 可扩展性方法定义
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -265895,8 +266011,8 @@ namespace Model
partial void OnConstructionUnitChanged();
partial void OnProblemTypeChanging(System.Nullable value);
partial void OnProblemTypeChanged();
- partial void OnQuestionTechnologyIdChanging(string value);
- partial void OnQuestionTechnologyIdChanged();
+ partial void OnSubInspectIdChanging(string value);
+ partial void OnSubInspectIdChanged();
partial void OnTermItemIdChanging(string value);
partial void OnTermItemIdChanged();
partial void OnWorkPackIdChanging(string value);
@@ -265909,20 +266025,18 @@ namespace Model
partial void OnRectifyTimeChanged();
partial void OnInspectUserChanging(string value);
partial void OnInspectUserChanged();
+ partial void OnHandleUserChanging(string value);
+ partial void OnHandleUserChanged();
partial void OnApproveUserChanging(string value);
partial void OnApproveUserChanged();
+ partial void OnAdjustCompleteTimeChanging(System.Nullable value);
+ partial void OnAdjustCompleteTimeChanged();
partial void OnApproveStateChanging(System.Nullable value);
partial void OnApproveStateChanged();
partial void OnAddUserChanging(string value);
partial void OnAddUserChanged();
partial void OnAddTimeChanging(System.Nullable value);
partial void OnAddTimeChanged();
- partial void OnHandleUserChanging(string value);
- partial void OnHandleUserChanged();
- partial void OnAdjustCompleteTimeChanging(System.Nullable value);
- partial void OnAdjustCompleteTimeChanged();
- partial void OnSubInspectIdChanging(string value);
- partial void OnSubInspectIdChanged();
#endregion
public PreRun_InspectTailTerm()
@@ -266050,22 +266164,22 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_QuestionTechnologyId", DbType="VarChar(50)")]
- public string QuestionTechnologyId
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubInspectId", DbType="VarChar(50)")]
+ public string SubInspectId
{
get
{
- return this._QuestionTechnologyId;
+ return this._SubInspectId;
}
set
{
- if ((this._QuestionTechnologyId != value))
+ if ((this._SubInspectId != value))
{
- this.OnQuestionTechnologyIdChanging(value);
+ this.OnSubInspectIdChanging(value);
this.SendPropertyChanging();
- this._QuestionTechnologyId = value;
- this.SendPropertyChanged("QuestionTechnologyId");
- this.OnQuestionTechnologyIdChanged();
+ this._SubInspectId = value;
+ this.SendPropertyChanged("SubInspectId");
+ this.OnSubInspectIdChanged();
}
}
}
@@ -266190,6 +266304,26 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HandleUser", DbType="VarChar(50)")]
+ public string HandleUser
+ {
+ get
+ {
+ return this._HandleUser;
+ }
+ set
+ {
+ if ((this._HandleUser != value))
+ {
+ this.OnHandleUserChanging(value);
+ this.SendPropertyChanging();
+ this._HandleUser = value;
+ this.SendPropertyChanged("HandleUser");
+ this.OnHandleUserChanged();
+ }
+ }
+ }
+
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveUser", DbType="VarChar(50)")]
public string ApproveUser
{
@@ -266210,6 +266344,26 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AdjustCompleteTime", DbType="DateTime")]
+ public System.Nullable AdjustCompleteTime
+ {
+ get
+ {
+ return this._AdjustCompleteTime;
+ }
+ set
+ {
+ if ((this._AdjustCompleteTime != value))
+ {
+ this.OnAdjustCompleteTimeChanging(value);
+ this.SendPropertyChanging();
+ this._AdjustCompleteTime = value;
+ this.SendPropertyChanged("AdjustCompleteTime");
+ this.OnAdjustCompleteTimeChanged();
+ }
+ }
+ }
+
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveState", DbType="Int")]
public System.Nullable ApproveState
{
@@ -266270,66 +266424,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HandleUser", DbType="VarChar(50)")]
- public string HandleUser
- {
- get
- {
- return this._HandleUser;
- }
- set
- {
- if ((this._HandleUser != value))
- {
- this.OnHandleUserChanging(value);
- this.SendPropertyChanging();
- this._HandleUser = value;
- this.SendPropertyChanged("HandleUser");
- this.OnHandleUserChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AdjustCompleteTime", DbType="DateTime")]
- public System.Nullable AdjustCompleteTime
- {
- get
- {
- return this._AdjustCompleteTime;
- }
- set
- {
- if ((this._AdjustCompleteTime != value))
- {
- this.OnAdjustCompleteTimeChanging(value);
- this.SendPropertyChanging();
- this._AdjustCompleteTime = value;
- this.SendPropertyChanged("AdjustCompleteTime");
- this.OnAdjustCompleteTimeChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubInspectId", DbType="NVarChar(50)")]
- public string SubInspectId
- {
- get
- {
- return this._SubInspectId;
- }
- set
- {
- if ((this._SubInspectId != value))
- {
- this.OnSubInspectIdChanging(value);
- this.SendPropertyChanging();
- this._SubInspectId = value;
- this.SendPropertyChanged("SubInspectId");
- this.OnSubInspectIdChanged();
- }
- }
- }
-
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -266371,14 +266465,14 @@ namespace Model
private string _ApproveUser;
+ private System.Nullable _ApproveType;
+
private System.Nullable _ApproveState;
private string _AddUser;
private System.Nullable _AddTime;
- private System.Nullable _ApproveType;
-
#region 可扩展性方法定义
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -266397,14 +266491,14 @@ namespace Model
partial void OnApproveTimeChanged();
partial void OnApproveUserChanging(string value);
partial void OnApproveUserChanged();
+ partial void OnApproveTypeChanging(System.Nullable value);
+ partial void OnApproveTypeChanged();
partial void OnApproveStateChanging(System.Nullable value);
partial void OnApproveStateChanged();
partial void OnAddUserChanging(string value);
partial void OnAddUserChanged();
partial void OnAddTimeChanging(System.Nullable value);
partial void OnAddTimeChanged();
- partial void OnApproveTypeChanging(System.Nullable value);
- partial void OnApproveTypeChanged();
#endregion
public PreRun_InspectTermApproveRecords()
@@ -266552,6 +266646,26 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveType", DbType="Int")]
+ public System.Nullable ApproveType
+ {
+ get
+ {
+ return this._ApproveType;
+ }
+ set
+ {
+ if ((this._ApproveType != value))
+ {
+ this.OnApproveTypeChanging(value);
+ this.SendPropertyChanging();
+ this._ApproveType = value;
+ this.SendPropertyChanged("ApproveType");
+ this.OnApproveTypeChanged();
+ }
+ }
+ }
+
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveState", DbType="Int")]
public System.Nullable ApproveState
{
@@ -266612,26 +266726,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveType", DbType="Int")]
- public System.Nullable ApproveType
- {
- get
- {
- return this._ApproveType;
- }
- set
- {
- if ((this._ApproveType != value))
- {
- this.OnApproveTypeChanging(value);
- this.SendPropertyChanging();
- this._ApproveType = value;
- this.SendPropertyChanged("ApproveType");
- this.OnApproveTypeChanged();
- }
- }
- }
-
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -267564,7 +267658,7 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string Remark
{
get
@@ -267687,12 +267781,6 @@ namespace Model
private string _InspectResult;
- private System.Nullable _InspectTime;
-
- private string _AddUser;
-
- private System.Nullable _AddTime;
-
private string _Subcontractor;
private string _Contractor;
@@ -267701,12 +267789,6 @@ namespace Model
private string _Owner;
- private System.Nullable _IsUnifyWanderAbout;
-
- private System.Nullable _UnifyWanderAboutData;
-
- private string _UnifyWanderAboutOpinion;
-
private System.Nullable _InspectionIsAllPass;
private System.Nullable _SubcontractorIsAllPass;
@@ -267717,7 +267799,9 @@ namespace Model
private System.Nullable _OwnerIsAllPass;
- private System.Nullable _WanderIsComplete;
+ private System.Nullable _WorkPackType;
+
+ private string _PropertyTechnologyId;
private System.Nullable _SubcontractorAllPassData;
@@ -267727,25 +267811,35 @@ namespace Model
private System.Nullable _OwnerAllPassData;
- private System.Nullable _WanderCompleteData;
+ private System.Nullable _WanderIsComplete;
- private System.Nullable _WorkPackType;
+ private System.Nullable _WanderCompleteData;
private System.Nullable _IsSiteImplement;
- private System.Nullable _InspectIsClose;
-
- private System.Nullable _InspectCloseData;
-
- private string _InspectIsCloseUser;
-
- private string _PropertyTechnologyId;
-
- private System.Nullable _RecordUploadData;
+ private string _SiteImplementUser;
private System.Nullable _SiteImplementConfirmData;
- private string _SiteImplementUser;
+ private System.Nullable _RecordUploadData;
+
+ private System.Nullable _InspectIsClose;
+
+ private string _InspectIsCloseUser;
+
+ private System.Nullable _InspectCloseData;
+
+ private System.Nullable _IsUnifyWanderAbout;
+
+ private System.Nullable _UnifyWanderAboutData;
+
+ private string _UnifyWanderAboutOpinion;
+
+ private System.Nullable _InspectTime;
+
+ private string _AddUser;
+
+ private System.Nullable _AddTime;
#region 可扩展性方法定义
partial void OnLoaded();
@@ -267767,12 +267861,6 @@ namespace Model
partial void OnWorkPackIdChanged();
partial void OnInspectResultChanging(string value);
partial void OnInspectResultChanged();
- partial void OnInspectTimeChanging(System.Nullable value);
- partial void OnInspectTimeChanged();
- partial void OnAddUserChanging(string value);
- partial void OnAddUserChanged();
- partial void OnAddTimeChanging(System.Nullable value);
- partial void OnAddTimeChanged();
partial void OnSubcontractorChanging(string value);
partial void OnSubcontractorChanged();
partial void OnContractorChanging(string value);
@@ -267781,12 +267869,6 @@ namespace Model
partial void OnSupervisionChanged();
partial void OnOwnerChanging(string value);
partial void OnOwnerChanged();
- partial void OnIsUnifyWanderAboutChanging(System.Nullable value);
- partial void OnIsUnifyWanderAboutChanged();
- partial void OnUnifyWanderAboutDataChanging(System.Nullable value);
- partial void OnUnifyWanderAboutDataChanged();
- partial void OnUnifyWanderAboutOpinionChanging(string value);
- partial void OnUnifyWanderAboutOpinionChanged();
partial void OnInspectionIsAllPassChanging(System.Nullable value);
partial void OnInspectionIsAllPassChanged();
partial void OnSubcontractorIsAllPassChanging(System.Nullable value);
@@ -267797,8 +267879,10 @@ namespace Model
partial void OnSupervisionIsAllPassChanged();
partial void OnOwnerIsAllPassChanging(System.Nullable value);
partial void OnOwnerIsAllPassChanged();
- partial void OnWanderIsCompleteChanging(System.Nullable value);
- partial void OnWanderIsCompleteChanged();
+ partial void OnWorkPackTypeChanging(System.Nullable value);
+ partial void OnWorkPackTypeChanged();
+ partial void OnPropertyTechnologyIdChanging(string value);
+ partial void OnPropertyTechnologyIdChanged();
partial void OnSubcontractorAllPassDataChanging(System.Nullable value);
partial void OnSubcontractorAllPassDataChanged();
partial void OnContractorAllPassDataChanging(System.Nullable value);
@@ -267807,26 +267891,36 @@ namespace Model
partial void OnSupervisionAllPassDataChanged();
partial void OnOwnerAllPassDataChanging(System.Nullable value);
partial void OnOwnerAllPassDataChanged();
+ partial void OnWanderIsCompleteChanging(System.Nullable value);
+ partial void OnWanderIsCompleteChanged();
partial void OnWanderCompleteDataChanging(System.Nullable value);
partial void OnWanderCompleteDataChanged();
- partial void OnWorkPackTypeChanging(System.Nullable value);
- partial void OnWorkPackTypeChanged();
partial void OnIsSiteImplementChanging(System.Nullable value);
partial void OnIsSiteImplementChanged();
- partial void OnInspectIsCloseChanging(System.Nullable value);
- partial void OnInspectIsCloseChanged();
- partial void OnInspectCloseDataChanging(System.Nullable value);
- partial void OnInspectCloseDataChanged();
- partial void OnInspectIsCloseUserChanging(string value);
- partial void OnInspectIsCloseUserChanged();
- partial void OnPropertyTechnologyIdChanging(string value);
- partial void OnPropertyTechnologyIdChanged();
- partial void OnRecordUploadDataChanging(System.Nullable value);
- partial void OnRecordUploadDataChanged();
- partial void OnSiteImplementConfirmDataChanging(System.Nullable value);
- partial void OnSiteImplementConfirmDataChanged();
partial void OnSiteImplementUserChanging(string value);
partial void OnSiteImplementUserChanged();
+ partial void OnSiteImplementConfirmDataChanging(System.Nullable value);
+ partial void OnSiteImplementConfirmDataChanged();
+ partial void OnRecordUploadDataChanging(System.Nullable value);
+ partial void OnRecordUploadDataChanged();
+ partial void OnInspectIsCloseChanging(System.Nullable value);
+ partial void OnInspectIsCloseChanged();
+ partial void OnInspectIsCloseUserChanging(string value);
+ partial void OnInspectIsCloseUserChanged();
+ partial void OnInspectCloseDataChanging(System.Nullable value);
+ partial void OnInspectCloseDataChanged();
+ partial void OnIsUnifyWanderAboutChanging(System.Nullable value);
+ partial void OnIsUnifyWanderAboutChanged();
+ partial void OnUnifyWanderAboutDataChanging(System.Nullable value);
+ partial void OnUnifyWanderAboutDataChanged();
+ partial void OnUnifyWanderAboutOpinionChanging(string value);
+ partial void OnUnifyWanderAboutOpinionChanged();
+ partial void OnInspectTimeChanging(System.Nullable value);
+ partial void OnInspectTimeChanged();
+ partial void OnAddUserChanging(string value);
+ partial void OnAddUserChanged();
+ partial void OnAddTimeChanging(System.Nullable value);
+ partial void OnAddTimeChanged();
#endregion
public PreRun_SubInspectTerm()
@@ -267994,66 +268088,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectTime", DbType="DateTime")]
- public System.Nullable InspectTime
- {
- get
- {
- return this._InspectTime;
- }
- set
- {
- if ((this._InspectTime != value))
- {
- this.OnInspectTimeChanging(value);
- this.SendPropertyChanging();
- this._InspectTime = value;
- this.SendPropertyChanged("InspectTime");
- this.OnInspectTimeChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddUser", DbType="VarChar(50)")]
- public string AddUser
- {
- get
- {
- return this._AddUser;
- }
- set
- {
- if ((this._AddUser != value))
- {
- this.OnAddUserChanging(value);
- this.SendPropertyChanging();
- this._AddUser = value;
- this.SendPropertyChanged("AddUser");
- this.OnAddUserChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddTime", DbType="DateTime")]
- public System.Nullable AddTime
- {
- get
- {
- return this._AddTime;
- }
- set
- {
- if ((this._AddTime != value))
- {
- this.OnAddTimeChanging(value);
- this.SendPropertyChanging();
- this._AddTime = value;
- this.SendPropertyChanged("AddTime");
- this.OnAddTimeChanged();
- }
- }
- }
-
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Subcontractor", DbType="VarChar(50)")]
public string Subcontractor
{
@@ -268134,66 +268168,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUnifyWanderAbout", DbType="Int")]
- public System.Nullable IsUnifyWanderAbout
- {
- get
- {
- return this._IsUnifyWanderAbout;
- }
- set
- {
- if ((this._IsUnifyWanderAbout != value))
- {
- this.OnIsUnifyWanderAboutChanging(value);
- this.SendPropertyChanging();
- this._IsUnifyWanderAbout = value;
- this.SendPropertyChanged("IsUnifyWanderAbout");
- this.OnIsUnifyWanderAboutChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnifyWanderAboutData", DbType="DateTime")]
- public System.Nullable UnifyWanderAboutData
- {
- get
- {
- return this._UnifyWanderAboutData;
- }
- set
- {
- if ((this._UnifyWanderAboutData != value))
- {
- this.OnUnifyWanderAboutDataChanging(value);
- this.SendPropertyChanging();
- this._UnifyWanderAboutData = value;
- this.SendPropertyChanged("UnifyWanderAboutData");
- this.OnUnifyWanderAboutDataChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnifyWanderAboutOpinion", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
- public string UnifyWanderAboutOpinion
- {
- get
- {
- return this._UnifyWanderAboutOpinion;
- }
- set
- {
- if ((this._UnifyWanderAboutOpinion != value))
- {
- this.OnUnifyWanderAboutOpinionChanging(value);
- this.SendPropertyChanging();
- this._UnifyWanderAboutOpinion = value;
- this.SendPropertyChanged("UnifyWanderAboutOpinion");
- this.OnUnifyWanderAboutOpinionChanged();
- }
- }
- }
-
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectionIsAllPass", DbType="Int")]
public System.Nullable InspectionIsAllPass
{
@@ -268294,22 +268268,42 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WanderIsComplete", DbType="Int")]
- public System.Nullable WanderIsComplete
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackType", DbType="Int")]
+ public System.Nullable WorkPackType
{
get
{
- return this._WanderIsComplete;
+ return this._WorkPackType;
}
set
{
- if ((this._WanderIsComplete != value))
+ if ((this._WorkPackType != value))
{
- this.OnWanderIsCompleteChanging(value);
+ this.OnWorkPackTypeChanging(value);
this.SendPropertyChanging();
- this._WanderIsComplete = value;
- this.SendPropertyChanged("WanderIsComplete");
- this.OnWanderIsCompleteChanged();
+ this._WorkPackType = value;
+ this.SendPropertyChanged("WorkPackType");
+ this.OnWorkPackTypeChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PropertyTechnologyId", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
+ public string PropertyTechnologyId
+ {
+ get
+ {
+ return this._PropertyTechnologyId;
+ }
+ set
+ {
+ if ((this._PropertyTechnologyId != value))
+ {
+ this.OnPropertyTechnologyIdChanging(value);
+ this.SendPropertyChanging();
+ this._PropertyTechnologyId = value;
+ this.SendPropertyChanged("PropertyTechnologyId");
+ this.OnPropertyTechnologyIdChanged();
}
}
}
@@ -268394,6 +268388,26 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WanderIsComplete", DbType="Int")]
+ public System.Nullable WanderIsComplete
+ {
+ get
+ {
+ return this._WanderIsComplete;
+ }
+ set
+ {
+ if ((this._WanderIsComplete != value))
+ {
+ this.OnWanderIsCompleteChanging(value);
+ this.SendPropertyChanging();
+ this._WanderIsComplete = value;
+ this.SendPropertyChanged("WanderIsComplete");
+ this.OnWanderIsCompleteChanged();
+ }
+ }
+ }
+
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WanderCompleteData", DbType="DateTime")]
public System.Nullable WanderCompleteData
{
@@ -268414,26 +268428,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackType", DbType="Int")]
- public System.Nullable WorkPackType
- {
- get
- {
- return this._WorkPackType;
- }
- set
- {
- if ((this._WorkPackType != value))
- {
- this.OnWorkPackTypeChanging(value);
- this.SendPropertyChanging();
- this._WorkPackType = value;
- this.SendPropertyChanged("WorkPackType");
- this.OnWorkPackTypeChanged();
- }
- }
- }
-
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsSiteImplement", DbType="Int")]
public System.Nullable IsSiteImplement
{
@@ -268454,102 +268448,22 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsClose", DbType="Int")]
- public System.Nullable InspectIsClose
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SiteImplementUser", DbType="VarChar(50)")]
+ public string SiteImplementUser
{
get
{
- return this._InspectIsClose;
+ return this._SiteImplementUser;
}
set
{
- if ((this._InspectIsClose != value))
+ if ((this._SiteImplementUser != value))
{
- this.OnInspectIsCloseChanging(value);
+ this.OnSiteImplementUserChanging(value);
this.SendPropertyChanging();
- this._InspectIsClose = value;
- this.SendPropertyChanged("InspectIsClose");
- this.OnInspectIsCloseChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectCloseData", DbType="DateTime")]
- public System.Nullable InspectCloseData
- {
- get
- {
- return this._InspectCloseData;
- }
- set
- {
- if ((this._InspectCloseData != value))
- {
- this.OnInspectCloseDataChanging(value);
- this.SendPropertyChanging();
- this._InspectCloseData = value;
- this.SendPropertyChanged("InspectCloseData");
- this.OnInspectCloseDataChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsCloseUser", DbType="NVarChar(50)")]
- public string InspectIsCloseUser
- {
- get
- {
- return this._InspectIsCloseUser;
- }
- set
- {
- if ((this._InspectIsCloseUser != value))
- {
- this.OnInspectIsCloseUserChanging(value);
- this.SendPropertyChanging();
- this._InspectIsCloseUser = value;
- this.SendPropertyChanged("InspectIsCloseUser");
- this.OnInspectIsCloseUserChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PropertyTechnologyId", DbType="NVarChar(500)")]
- public string PropertyTechnologyId
- {
- get
- {
- return this._PropertyTechnologyId;
- }
- set
- {
- if ((this._PropertyTechnologyId != value))
- {
- this.OnPropertyTechnologyIdChanging(value);
- this.SendPropertyChanging();
- this._PropertyTechnologyId = value;
- this.SendPropertyChanged("PropertyTechnologyId");
- this.OnPropertyTechnologyIdChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordUploadData", DbType="DateTime")]
- public System.Nullable RecordUploadData
- {
- get
- {
- return this._RecordUploadData;
- }
- set
- {
- if ((this._RecordUploadData != value))
- {
- this.OnRecordUploadDataChanging(value);
- this.SendPropertyChanging();
- this._RecordUploadData = value;
- this.SendPropertyChanged("RecordUploadData");
- this.OnRecordUploadDataChanged();
+ this._SiteImplementUser = value;
+ this.SendPropertyChanged("SiteImplementUser");
+ this.OnSiteImplementUserChanged();
}
}
}
@@ -268574,22 +268488,202 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SiteImplementUser", DbType="NVarChar(50)")]
- public string SiteImplementUser
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordUploadData", DbType="DateTime")]
+ public System.Nullable RecordUploadData
{
get
{
- return this._SiteImplementUser;
+ return this._RecordUploadData;
}
set
{
- if ((this._SiteImplementUser != value))
+ if ((this._RecordUploadData != value))
{
- this.OnSiteImplementUserChanging(value);
+ this.OnRecordUploadDataChanging(value);
this.SendPropertyChanging();
- this._SiteImplementUser = value;
- this.SendPropertyChanged("SiteImplementUser");
- this.OnSiteImplementUserChanged();
+ this._RecordUploadData = value;
+ this.SendPropertyChanged("RecordUploadData");
+ this.OnRecordUploadDataChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsClose", DbType="Int")]
+ public System.Nullable InspectIsClose
+ {
+ get
+ {
+ return this._InspectIsClose;
+ }
+ set
+ {
+ if ((this._InspectIsClose != value))
+ {
+ this.OnInspectIsCloseChanging(value);
+ this.SendPropertyChanging();
+ this._InspectIsClose = value;
+ this.SendPropertyChanged("InspectIsClose");
+ this.OnInspectIsCloseChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsCloseUser", DbType="VarChar(50)")]
+ public string InspectIsCloseUser
+ {
+ get
+ {
+ return this._InspectIsCloseUser;
+ }
+ set
+ {
+ if ((this._InspectIsCloseUser != value))
+ {
+ this.OnInspectIsCloseUserChanging(value);
+ this.SendPropertyChanging();
+ this._InspectIsCloseUser = value;
+ this.SendPropertyChanged("InspectIsCloseUser");
+ this.OnInspectIsCloseUserChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectCloseData", DbType="DateTime")]
+ public System.Nullable InspectCloseData
+ {
+ get
+ {
+ return this._InspectCloseData;
+ }
+ set
+ {
+ if ((this._InspectCloseData != value))
+ {
+ this.OnInspectCloseDataChanging(value);
+ this.SendPropertyChanging();
+ this._InspectCloseData = value;
+ this.SendPropertyChanged("InspectCloseData");
+ this.OnInspectCloseDataChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUnifyWanderAbout", DbType="Int")]
+ public System.Nullable IsUnifyWanderAbout
+ {
+ get
+ {
+ return this._IsUnifyWanderAbout;
+ }
+ set
+ {
+ if ((this._IsUnifyWanderAbout != value))
+ {
+ this.OnIsUnifyWanderAboutChanging(value);
+ this.SendPropertyChanging();
+ this._IsUnifyWanderAbout = value;
+ this.SendPropertyChanged("IsUnifyWanderAbout");
+ this.OnIsUnifyWanderAboutChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnifyWanderAboutData", DbType="DateTime")]
+ public System.Nullable UnifyWanderAboutData
+ {
+ get
+ {
+ return this._UnifyWanderAboutData;
+ }
+ set
+ {
+ if ((this._UnifyWanderAboutData != value))
+ {
+ this.OnUnifyWanderAboutDataChanging(value);
+ this.SendPropertyChanging();
+ this._UnifyWanderAboutData = value;
+ this.SendPropertyChanged("UnifyWanderAboutData");
+ this.OnUnifyWanderAboutDataChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnifyWanderAboutOpinion", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
+ public string UnifyWanderAboutOpinion
+ {
+ get
+ {
+ return this._UnifyWanderAboutOpinion;
+ }
+ set
+ {
+ if ((this._UnifyWanderAboutOpinion != value))
+ {
+ this.OnUnifyWanderAboutOpinionChanging(value);
+ this.SendPropertyChanging();
+ this._UnifyWanderAboutOpinion = value;
+ this.SendPropertyChanged("UnifyWanderAboutOpinion");
+ this.OnUnifyWanderAboutOpinionChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectTime", DbType="DateTime")]
+ public System.Nullable InspectTime
+ {
+ get
+ {
+ return this._InspectTime;
+ }
+ set
+ {
+ if ((this._InspectTime != value))
+ {
+ this.OnInspectTimeChanging(value);
+ this.SendPropertyChanging();
+ this._InspectTime = value;
+ this.SendPropertyChanged("InspectTime");
+ this.OnInspectTimeChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddUser", DbType="VarChar(50)")]
+ public string AddUser
+ {
+ get
+ {
+ return this._AddUser;
+ }
+ set
+ {
+ if ((this._AddUser != value))
+ {
+ this.OnAddUserChanging(value);
+ this.SendPropertyChanging();
+ this._AddUser = value;
+ this.SendPropertyChanged("AddUser");
+ this.OnAddUserChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddTime", DbType="DateTime")]
+ public System.Nullable AddTime
+ {
+ get
+ {
+ return this._AddTime;
+ }
+ set
+ {
+ if ((this._AddTime != value))
+ {
+ this.OnAddTimeChanging(value);
+ this.SendPropertyChanging();
+ this._AddTime = value;
+ this.SendPropertyChanged("AddTime");
+ this.OnAddTimeChanged();
}
}
}
@@ -268657,6 +268751,22 @@ namespace Model
private string _Owner;
+ private System.Nullable _SubcontractorIsPass;
+
+ private System.Nullable _ContractorIsPass;
+
+ private System.Nullable _SupervisionIsPass;
+
+ private System.Nullable _OwnerIsPass;
+
+ private string _SubcontractorRemark;
+
+ private string _ContractorRemark;
+
+ private string _SupervisionRemark;
+
+ private string _OwnerRemark;
+
private System.Nullable _WorkPackType;
private string _PropertyTechnologyId;
@@ -268669,22 +268779,6 @@ namespace Model
private System.Nullable _Sort;
- private string _SubcontractorRemark;
-
- private string _ContractorRemark;
-
- private string _SupervisionRemark;
-
- private string _OwnerRemark;
-
- private System.Nullable _SubcontractorIsPass;
-
- private System.Nullable _ContractorIsPass;
-
- private System.Nullable _SupervisionIsPass;
-
- private System.Nullable _OwnerIsPass;
-
#region 可扩展性方法定义
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -268725,6 +268819,22 @@ namespace Model
partial void OnSupervisionChanged();
partial void OnOwnerChanging(string value);
partial void OnOwnerChanged();
+ partial void OnSubcontractorIsPassChanging(System.Nullable value);
+ partial void OnSubcontractorIsPassChanged();
+ partial void OnContractorIsPassChanging(System.Nullable value);
+ partial void OnContractorIsPassChanged();
+ partial void OnSupervisionIsPassChanging(System.Nullable value);
+ partial void OnSupervisionIsPassChanged();
+ partial void OnOwnerIsPassChanging(System.Nullable value);
+ partial void OnOwnerIsPassChanged();
+ partial void OnSubcontractorRemarkChanging(string value);
+ partial void OnSubcontractorRemarkChanged();
+ partial void OnContractorRemarkChanging(string value);
+ partial void OnContractorRemarkChanged();
+ partial void OnSupervisionRemarkChanging(string value);
+ partial void OnSupervisionRemarkChanged();
+ partial void OnOwnerRemarkChanging(string value);
+ partial void OnOwnerRemarkChanged();
partial void OnWorkPackTypeChanging(System.Nullable value);
partial void OnWorkPackTypeChanged();
partial void OnPropertyTechnologyIdChanging(string value);
@@ -268737,22 +268847,6 @@ namespace Model
partial void OnAddTimeChanged();
partial void OnSortChanging(System.Nullable value);
partial void OnSortChanged();
- partial void OnSubcontractorRemarkChanging(string value);
- partial void OnSubcontractorRemarkChanged();
- partial void OnContractorRemarkChanging(string value);
- partial void OnContractorRemarkChanged();
- partial void OnSupervisionRemarkChanging(string value);
- partial void OnSupervisionRemarkChanged();
- partial void OnOwnerRemarkChanging(string value);
- partial void OnOwnerRemarkChanged();
- partial void OnSubcontractorIsPassChanging(System.Nullable value);
- partial void OnSubcontractorIsPassChanged();
- partial void OnContractorIsPassChanging(System.Nullable value);
- partial void OnContractorIsPassChanged();
- partial void OnSupervisionIsPassChanging(System.Nullable value);
- partial void OnSupervisionIsPassChanged();
- partial void OnOwnerIsPassChanging(System.Nullable value);
- partial void OnOwnerIsPassChanged();
#endregion
public PreRun_SubInspectTermItem()
@@ -269120,6 +269214,166 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubcontractorIsPass", DbType="Int")]
+ public System.Nullable SubcontractorIsPass
+ {
+ get
+ {
+ return this._SubcontractorIsPass;
+ }
+ set
+ {
+ if ((this._SubcontractorIsPass != value))
+ {
+ this.OnSubcontractorIsPassChanging(value);
+ this.SendPropertyChanging();
+ this._SubcontractorIsPass = value;
+ this.SendPropertyChanged("SubcontractorIsPass");
+ this.OnSubcontractorIsPassChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractorIsPass", DbType="Int")]
+ public System.Nullable ContractorIsPass
+ {
+ get
+ {
+ return this._ContractorIsPass;
+ }
+ set
+ {
+ if ((this._ContractorIsPass != value))
+ {
+ this.OnContractorIsPassChanging(value);
+ this.SendPropertyChanging();
+ this._ContractorIsPass = value;
+ this.SendPropertyChanged("ContractorIsPass");
+ this.OnContractorIsPassChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SupervisionIsPass", DbType="Int")]
+ public System.Nullable SupervisionIsPass
+ {
+ get
+ {
+ return this._SupervisionIsPass;
+ }
+ set
+ {
+ if ((this._SupervisionIsPass != value))
+ {
+ this.OnSupervisionIsPassChanging(value);
+ this.SendPropertyChanging();
+ this._SupervisionIsPass = value;
+ this.SendPropertyChanged("SupervisionIsPass");
+ this.OnSupervisionIsPassChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OwnerIsPass", DbType="Int")]
+ public System.Nullable OwnerIsPass
+ {
+ get
+ {
+ return this._OwnerIsPass;
+ }
+ set
+ {
+ if ((this._OwnerIsPass != value))
+ {
+ this.OnOwnerIsPassChanging(value);
+ this.SendPropertyChanging();
+ this._OwnerIsPass = value;
+ this.SendPropertyChanged("OwnerIsPass");
+ this.OnOwnerIsPassChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubcontractorRemark", DbType="VarChar(1000)")]
+ public string SubcontractorRemark
+ {
+ get
+ {
+ return this._SubcontractorRemark;
+ }
+ set
+ {
+ if ((this._SubcontractorRemark != value))
+ {
+ this.OnSubcontractorRemarkChanging(value);
+ this.SendPropertyChanging();
+ this._SubcontractorRemark = value;
+ this.SendPropertyChanged("SubcontractorRemark");
+ this.OnSubcontractorRemarkChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractorRemark", DbType="VarChar(1000)")]
+ public string ContractorRemark
+ {
+ get
+ {
+ return this._ContractorRemark;
+ }
+ set
+ {
+ if ((this._ContractorRemark != value))
+ {
+ this.OnContractorRemarkChanging(value);
+ this.SendPropertyChanging();
+ this._ContractorRemark = value;
+ this.SendPropertyChanged("ContractorRemark");
+ this.OnContractorRemarkChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SupervisionRemark", DbType="VarChar(1000)")]
+ public string SupervisionRemark
+ {
+ get
+ {
+ return this._SupervisionRemark;
+ }
+ set
+ {
+ if ((this._SupervisionRemark != value))
+ {
+ this.OnSupervisionRemarkChanging(value);
+ this.SendPropertyChanging();
+ this._SupervisionRemark = value;
+ this.SendPropertyChanged("SupervisionRemark");
+ this.OnSupervisionRemarkChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OwnerRemark", DbType="VarChar(1000)")]
+ public string OwnerRemark
+ {
+ get
+ {
+ return this._OwnerRemark;
+ }
+ set
+ {
+ if ((this._OwnerRemark != value))
+ {
+ this.OnOwnerRemarkChanging(value);
+ this.SendPropertyChanging();
+ this._OwnerRemark = value;
+ this.SendPropertyChanged("OwnerRemark");
+ this.OnOwnerRemarkChanged();
+ }
+ }
+ }
+
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackType", DbType="Int")]
public System.Nullable WorkPackType
{
@@ -269140,7 +269394,7 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PropertyTechnologyId", DbType="VarChar(50)")]
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PropertyTechnologyId", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string PropertyTechnologyId
{
get
@@ -269240,166 +269494,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubcontractorRemark", DbType="VarChar(1000)")]
- public string SubcontractorRemark
- {
- get
- {
- return this._SubcontractorRemark;
- }
- set
- {
- if ((this._SubcontractorRemark != value))
- {
- this.OnSubcontractorRemarkChanging(value);
- this.SendPropertyChanging();
- this._SubcontractorRemark = value;
- this.SendPropertyChanged("SubcontractorRemark");
- this.OnSubcontractorRemarkChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractorRemark", DbType="VarChar(1000)")]
- public string ContractorRemark
- {
- get
- {
- return this._ContractorRemark;
- }
- set
- {
- if ((this._ContractorRemark != value))
- {
- this.OnContractorRemarkChanging(value);
- this.SendPropertyChanging();
- this._ContractorRemark = value;
- this.SendPropertyChanged("ContractorRemark");
- this.OnContractorRemarkChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SupervisionRemark", DbType="VarChar(1000)")]
- public string SupervisionRemark
- {
- get
- {
- return this._SupervisionRemark;
- }
- set
- {
- if ((this._SupervisionRemark != value))
- {
- this.OnSupervisionRemarkChanging(value);
- this.SendPropertyChanging();
- this._SupervisionRemark = value;
- this.SendPropertyChanged("SupervisionRemark");
- this.OnSupervisionRemarkChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OwnerRemark", DbType="VarChar(1000)")]
- public string OwnerRemark
- {
- get
- {
- return this._OwnerRemark;
- }
- set
- {
- if ((this._OwnerRemark != value))
- {
- this.OnOwnerRemarkChanging(value);
- this.SendPropertyChanging();
- this._OwnerRemark = value;
- this.SendPropertyChanged("OwnerRemark");
- this.OnOwnerRemarkChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubcontractorIsPass", DbType="Int")]
- public System.Nullable SubcontractorIsPass
- {
- get
- {
- return this._SubcontractorIsPass;
- }
- set
- {
- if ((this._SubcontractorIsPass != value))
- {
- this.OnSubcontractorIsPassChanging(value);
- this.SendPropertyChanging();
- this._SubcontractorIsPass = value;
- this.SendPropertyChanged("SubcontractorIsPass");
- this.OnSubcontractorIsPassChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractorIsPass", DbType="Int")]
- public System.Nullable ContractorIsPass
- {
- get
- {
- return this._ContractorIsPass;
- }
- set
- {
- if ((this._ContractorIsPass != value))
- {
- this.OnContractorIsPassChanging(value);
- this.SendPropertyChanging();
- this._ContractorIsPass = value;
- this.SendPropertyChanged("ContractorIsPass");
- this.OnContractorIsPassChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SupervisionIsPass", DbType="Int")]
- public System.Nullable SupervisionIsPass
- {
- get
- {
- return this._SupervisionIsPass;
- }
- set
- {
- if ((this._SupervisionIsPass != value))
- {
- this.OnSupervisionIsPassChanging(value);
- this.SendPropertyChanging();
- this._SupervisionIsPass = value;
- this.SendPropertyChanged("SupervisionIsPass");
- this.OnSupervisionIsPassChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OwnerIsPass", DbType="Int")]
- public System.Nullable OwnerIsPass
- {
- get
- {
- return this._OwnerIsPass;
- }
- set
- {
- if ((this._OwnerIsPass != value))
- {
- this.OnOwnerIsPassChanging(value);
- this.SendPropertyChanging();
- this._OwnerIsPass = value;
- this.SendPropertyChanged("OwnerIsPass");
- this.OnOwnerIsPassChanged();
- }
- }
- }
-
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -270401,6 +270495,8 @@ namespace Model
private string _RestrictCondition;
+ private System.Nullable _ResponsibilityProposeSatate;
+
private System.Nullable _ResponsibilityConfirm;
private System.Nullable _ProposeConfirm;
@@ -270411,9 +270507,11 @@ namespace Model
private System.Nullable _OwnerConfirm;
+ private System.Nullable _ProposeConfirmData;
+
private System.Nullable _ResponsibilityConfirmData;
- private System.Nullable _ProposeConfirmData;
+ private System.Nullable _ProposeHandleData;
private System.Nullable _GeneraConfirmData;
@@ -270429,10 +270527,6 @@ namespace Model
private System.Nullable _Sort;
- private System.Nullable _ResponsibilityProposeSatate;
-
- private System.Nullable _ProposeHandleData;
-
private string _FourDecisionCode;
#region 可扩展性方法定义
@@ -270469,6 +270563,8 @@ namespace Model
partial void OnRealityDestructionTimeChanged();
partial void OnRestrictConditionChanging(string value);
partial void OnRestrictConditionChanged();
+ partial void OnResponsibilityProposeSatateChanging(System.Nullable value);
+ partial void OnResponsibilityProposeSatateChanged();
partial void OnResponsibilityConfirmChanging(System.Nullable value);
partial void OnResponsibilityConfirmChanged();
partial void OnProposeConfirmChanging(System.Nullable value);
@@ -270479,10 +270575,12 @@ namespace Model
partial void OnSupervisionConfirmChanged();
partial void OnOwnerConfirmChanging(System.Nullable value);
partial void OnOwnerConfirmChanged();
- partial void OnResponsibilityConfirmDataChanging(System.Nullable value);
- partial void OnResponsibilityConfirmDataChanged();
partial void OnProposeConfirmDataChanging(System.Nullable value);
partial void OnProposeConfirmDataChanged();
+ partial void OnResponsibilityConfirmDataChanging(System.Nullable value);
+ partial void OnResponsibilityConfirmDataChanged();
+ partial void OnProposeHandleDataChanging(System.Nullable value);
+ partial void OnProposeHandleDataChanged();
partial void OnGeneraConfirmDataChanging(System.Nullable value);
partial void OnGeneraConfirmDataChanged();
partial void OnSupervisionConfirmDataChanging(System.Nullable value);
@@ -270497,10 +270595,6 @@ namespace Model
partial void OnAddTimeChanged();
partial void OnSortChanging(System.Nullable value);
partial void OnSortChanged();
- partial void OnResponsibilityProposeSatateChanging(System.Nullable value);
- partial void OnResponsibilityProposeSatateChanged();
- partial void OnProposeHandleDataChanging(System.Nullable value);
- partial void OnProposeHandleDataChanged();
partial void OnFourDecisionCodeChanging(string value);
partial void OnFourDecisionCodeChanged();
#endregion
@@ -270810,6 +270904,26 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityProposeSatate", DbType="Int")]
+ public System.Nullable ResponsibilityProposeSatate
+ {
+ get
+ {
+ return this._ResponsibilityProposeSatate;
+ }
+ set
+ {
+ if ((this._ResponsibilityProposeSatate != value))
+ {
+ this.OnResponsibilityProposeSatateChanging(value);
+ this.SendPropertyChanging();
+ this._ResponsibilityProposeSatate = value;
+ this.SendPropertyChanged("ResponsibilityProposeSatate");
+ this.OnResponsibilityProposeSatateChanged();
+ }
+ }
+ }
+
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityConfirm", DbType="Int")]
public System.Nullable ResponsibilityConfirm
{
@@ -270910,6 +271024,26 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeConfirmData", DbType="DateTime")]
+ public System.Nullable ProposeConfirmData
+ {
+ get
+ {
+ return this._ProposeConfirmData;
+ }
+ set
+ {
+ if ((this._ProposeConfirmData != value))
+ {
+ this.OnProposeConfirmDataChanging(value);
+ this.SendPropertyChanging();
+ this._ProposeConfirmData = value;
+ this.SendPropertyChanged("ProposeConfirmData");
+ this.OnProposeConfirmDataChanged();
+ }
+ }
+ }
+
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityConfirmData", DbType="DateTime")]
public System.Nullable ResponsibilityConfirmData
{
@@ -270930,22 +271064,22 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeConfirmData", DbType="DateTime")]
- public System.Nullable ProposeConfirmData
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeHandleData", DbType="DateTime")]
+ public System.Nullable ProposeHandleData
{
get
{
- return this._ProposeConfirmData;
+ return this._ProposeHandleData;
}
set
{
- if ((this._ProposeConfirmData != value))
+ if ((this._ProposeHandleData != value))
{
- this.OnProposeConfirmDataChanging(value);
+ this.OnProposeHandleDataChanging(value);
this.SendPropertyChanging();
- this._ProposeConfirmData = value;
- this.SendPropertyChanged("ProposeConfirmData");
- this.OnProposeConfirmDataChanged();
+ this._ProposeHandleData = value;
+ this.SendPropertyChanged("ProposeHandleData");
+ this.OnProposeHandleDataChanged();
}
}
}
@@ -271090,46 +271224,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityProposeSatate", DbType="Int")]
- public System.Nullable ResponsibilityProposeSatate
- {
- get
- {
- return this._ResponsibilityProposeSatate;
- }
- set
- {
- if ((this._ResponsibilityProposeSatate != value))
- {
- this.OnResponsibilityProposeSatateChanging(value);
- this.SendPropertyChanging();
- this._ResponsibilityProposeSatate = value;
- this.SendPropertyChanged("ResponsibilityProposeSatate");
- this.OnResponsibilityProposeSatateChanged();
- }
- }
- }
-
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeHandleData", DbType="DateTime")]
- public System.Nullable ProposeHandleData
- {
- get
- {
- return this._ProposeHandleData;
- }
- set
- {
- if ((this._ProposeHandleData != value))
- {
- this.OnProposeHandleDataChanging(value);
- this.SendPropertyChanging();
- this._ProposeHandleData = value;
- this.SendPropertyChanged("ProposeHandleData");
- this.OnProposeHandleDataChanged();
- }
- }
- }
-
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FourDecisionCode", DbType="VarChar(20)")]
public string FourDecisionCode
{
@@ -271842,7 +271936,7 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string Remark
{
get
@@ -337318,6 +337412,8 @@ namespace Model
private EntitySet _Doc_DocManage;
+ private EntitySet _Doc_DocManageApprove;
+
private EntitySet _Driver_DriverProgress;
private EntitySet