diff --git a/DataBase/版本日志/SGGLDB_V2022-09-23 lpf.sql b/DataBase/版本日志/SGGLDB_V2022-09-23 lpf.sql new file mode 100644 index 00000000..ded4c274 --- /dev/null +++ b/DataBase/版本日志/SGGLDB_V2022-09-23 lpf.sql @@ -0,0 +1,6 @@ +alter table HJGL_Pipeline_Component add DrawingName varchar(100) +GO +delete from Sys_Menu where MenuId='DB50A5AA-08DB-4915-9173-6DB133CA76F0' +GO +INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) +VALUES('DB50A5AA-08DB-4915-9173-6DB133CA76F0','Ϣ','HJGL/DataImport/MaterialStock.aspx',30,'43F92EA7-462F-41E6-8D8A-243C03A5317E','Menu_HJGL',0,1,1) diff --git a/DataBase/版本日志/SGGLDB_V2022-09-23 修改明细.txt b/DataBase/版本日志/SGGLDB_V2022-09-23 修改明细.txt new file mode 100644 index 00000000..2cd69f69 --- /dev/null +++ b/DataBase/版本日志/SGGLDB_V2022-09-23 修改明细.txt @@ -0,0 +1,7 @@ +--ADD BY lipengfei 2022-09-23 +1、预制组件管理二维码导入增加预制图纸名称。 +2、库存信息更名为《库存信息总览》,移动到《信息查询》。 +3、焊接终版测试问题修改。 +--END + + \ No newline at end of file diff --git a/DataBase/版本日志/SGGLDB_V2022-09-24 lpf.sql b/DataBase/版本日志/SGGLDB_V2022-09-24 lpf.sql deleted file mode 100644 index be7141eb..00000000 --- a/DataBase/版本日志/SGGLDB_V2022-09-24 lpf.sql +++ /dev/null @@ -1 +0,0 @@ -alter table HJGL_Pipeline_Component add DrawingName varchar(100) \ No newline at end of file diff --git a/DataBase/菜单初始化脚本/1-5焊接管理(Menu_HJGL).sql b/DataBase/菜单初始化脚本/1-5焊接管理(Menu_HJGL).sql index 8e476cc9..eea50c9a 100644 --- a/DataBase/菜单初始化脚本/1-5焊接管理(Menu_HJGL).sql +++ b/DataBase/菜单初始化脚本/1-5焊接管理(Menu_HJGL).sql @@ -80,9 +80,7 @@ VALUES('EF6B01AF-D038-4A38-BFAF-D89130D60DE6',' GO INSERT INTO Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) VALUES('9CCBEAD5-0425-47CB-B7FB-E91CA17BC6BF','EF6B01AF-D038-4A38-BFAF-D89130D60DE6','',1) GO -INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) -VALUES('DB50A5AA-08DB-4915-9173-6DB133CA76F0','Ϣ','HJGL/DataImport/MaterialStock.aspx',14,'0','Menu_HJGL',0,1,1) -GO + -- /* Ԥƹ*/ --INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) @@ -197,6 +195,10 @@ GO VALUES('F4275A19-A72E-448E-B0C1-07DB2FCEE224','̨','HJGL/InfoQuery/JointQuery.aspx',20,'43F92EA7-462F-41E6-8D8A-243C03A5317E','Menu_HJGL',0,1,1) GO INSERT INTO Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) VALUES('EA0A1B4B-502B-416E-948A-DFBD893E40F5','F4275A19-A72E-448E-B0C1-07DB2FCEE224','鿴',1) + GO + INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) + VALUES('DB50A5AA-08DB-4915-9173-6DB133CA76F0','Ϣ','HJGL/DataImport/MaterialStock.aspx',30,'43F92EA7-462F-41E6-8D8A-243C03A5317E','Menu_HJGL',0,1,1) +GO GO -------------------------------------------------------------------------------------------------------------------------------- INSERT Sys_Menu (MenuId,MenuName,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) diff --git a/SGGL/BLL/HJGL/WeldingManage/PipelineComponentService.cs b/SGGL/BLL/HJGL/WeldingManage/PipelineComponentService.cs index 8675e443..9a3bf529 100644 --- a/SGGL/BLL/HJGL/WeldingManage/PipelineComponentService.cs +++ b/SGGL/BLL/HJGL/WeldingManage/PipelineComponentService.cs @@ -130,6 +130,7 @@ namespace BLL newPipeline.PlanEndDate = pipeline.PlanEndDate; newPipeline.ActStartDate = pipeline.ActStartDate; newPipeline.ActEndDate = pipeline.ActEndDate; + newPipeline.DrawingName = pipeline.DrawingName; db.HJGL_Pipeline_Component.InsertOnSubmit(newPipeline); db.SubmitChanges(); } @@ -156,6 +157,7 @@ namespace BLL newPipeline.PlanEndDate = pipeline.PlanEndDate; newPipeline.ActStartDate = pipeline.ActStartDate; newPipeline.ActEndDate = pipeline.ActEndDate; + newPipeline.DrawingName = pipeline.DrawingName; db.SubmitChanges(); } } @@ -244,5 +246,16 @@ namespace BLL Funs.FineUIPleaseSelect(dropName); } } + public static void InitMainItemDownList(FineUIPro.DropDownList dropName, bool isShowPlease) + { + dropName.DataValueField = "Value"; + dropName.DataTextField = "Text"; + dropName.DataSource = GetState(); + dropName.DataBind(); + if (isShowPlease) + { + Funs.FineUIPleaseSelect(dropName); + } + } } } diff --git a/SGGL/FineUIPro.Web/HJGL/DataImport/DrawingImport.aspx b/SGGL/FineUIPro.Web/HJGL/DataImport/DrawingImport.aspx index ac4ee185..61e52182 100644 --- a/SGGL/FineUIPro.Web/HJGL/DataImport/DrawingImport.aspx +++ b/SGGL/FineUIPro.Web/HJGL/DataImport/DrawingImport.aspx @@ -41,7 +41,7 @@ Layout="VBox" ShowHeader="false" BodyPadding="5px" IconFont="PlusCircle" Title="数据" TitleToolTip="数据" AutoScroll="true"> - + TitleToolTip="历史记录" AutoScroll="true" > - - 焊口信息 + 材料信息 diff --git a/SGGL/FineUIPro.Web/HJGL/DataImport/TDMImport.aspx b/SGGL/FineUIPro.Web/HJGL/DataImport/TDMImport.aspx index ef3bb3b0..3ef430a0 100644 --- a/SGGL/FineUIPro.Web/HJGL/DataImport/TDMImport.aspx +++ b/SGGL/FineUIPro.Web/HJGL/DataImport/TDMImport.aspx @@ -41,7 +41,7 @@ Layout="VBox" ShowHeader="false" BodyPadding="5px" IconFont="PlusCircle" Title="数据" TitleToolTip="数据" AutoScroll="true"> - + TitleToolTip="历史记录" AutoScroll="true" > - - +