班前会添加装置单元

This commit is contained in:
杨家亮 2025-09-03 16:40:38 +08:00
parent 47c8a5d415
commit f6b2bdfb81
19 changed files with 409 additions and 147 deletions

View File

@ -87,6 +87,26 @@ namespace BLL
} }
#endregion #endregion
#region
public static List<Model.BaseInfoItem> getProjectInstallations(string projectId)
{
using(Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
{
var list = (from x in db.Project_Installation
where x.ProjectId == projectId
select new Model.BaseInfoItem
{
BaseInfoId = x.InstallationId,
BaseInfoCode = x.InstallationCode,
BaseInfoName = x.InstallationName
}
).ToList();
return list;
}
}
#endregion
#region #region
/// <summary> /// <summary>
/// 根据项目号获取项目信息 /// 根据项目号获取项目信息

View File

@ -47,6 +47,8 @@ namespace BLL
MeetingHostManName = db.SitePerson_Person.First(y => y.PersonId == x.MeetingHostMan).PersonName, MeetingHostManName = db.SitePerson_Person.First(y => y.PersonId == x.MeetingHostMan).PersonName,
AttentPerson = x.AttentPerson, AttentPerson = x.AttentPerson,
AttentPersonNum = x.AttentPersonNum ?? 0, AttentPersonNum = x.AttentPersonNum ?? 0,
InstallationId = x.InstallationId,
InstallationName = x.InstallationName,
CompileDate = string.Format("{0:yyyy-MM-dd HH:mm}", x.CompileDate), CompileDate = string.Format("{0:yyyy-MM-dd HH:mm}", x.CompileDate),
CompileManId = x.CompileMan, CompileManId = x.CompileMan,
MeetingHostManOther = x.MeetingHostManOther, MeetingHostManOther = x.MeetingHostManOther,
@ -228,6 +230,8 @@ namespace BLL
MeetingType = meetingType, MeetingType = meetingType,
MeetingHours = x.MeetingHours ?? 0, MeetingHours = x.MeetingHours ?? 0,
MeetingHostMan = x.MeetingHostMan, MeetingHostMan = x.MeetingHostMan,
InstallationId = x.InstallationId,
InstallationName = x.InstallationName,
AttentPerson = x.AttentPerson, AttentPerson = x.AttentPerson,
CompileDate = string.Format("{0:yyyy-MM-dd HH:mm}", x.CompileDate), CompileDate = string.Format("{0:yyyy-MM-dd HH:mm}", x.CompileDate),
MeetingHostManOther=x.MeetingHostManOther, MeetingHostManOther=x.MeetingHostManOther,
@ -400,8 +404,11 @@ namespace BLL
AttentPersonNum=meeting.AttentPersonNum, AttentPersonNum=meeting.AttentPersonNum,
MeetingHostManOther=meeting.MeetingHostManOther, MeetingHostManOther=meeting.MeetingHostManOther,
States = Const.State_2, States = Const.State_2,
ManagePersonNum = m_personum ManagePersonNum = m_personum,
}; InstallationId = meeting.InstallationId,
InstallationName = meeting.InstallationName,
}
;
if (meeting.States != "1") if (meeting.States != "1")
{ {

View File

@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BLL</RootNamespace> <RootNamespace>BLL</RootNamespace>
<AssemblyName>BLL</AssemblyName> <AssemblyName>BLL</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<SccProjectName> <SccProjectName>
</SccProjectName> </SccProjectName>

View File

@ -45,7 +45,9 @@ namespace BLL
AttentPerson = classMeeting.AttentPerson, AttentPerson = classMeeting.AttentPerson,
AttentPersonNum=classMeeting.AttentPersonNum, AttentPersonNum=classMeeting.AttentPersonNum,
MeetingHostManOther=classMeeting.MeetingHostManOther, MeetingHostManOther=classMeeting.MeetingHostManOther,
ManagePersonNum = classMeeting.ManagePersonNum ManagePersonNum = classMeeting.ManagePersonNum,
InstallationId = classMeeting.InstallationId,
InstallationName = classMeeting.InstallationName
}; };
db.Meeting_ClassMeeting.InsertOnSubmit(newClassMeeting); db.Meeting_ClassMeeting.InsertOnSubmit(newClassMeeting);
db.SubmitChanges(); db.SubmitChanges();

View File

@ -82,13 +82,23 @@ namespace BLL
/// <param name="teamGroupId"></param> /// <param name="teamGroupId"></param>
public static void DeleteTeamGroupById(string teamGroupId) public static void DeleteTeamGroupById(string teamGroupId)
{ {
Model.SGGLDB db = Funs.DB; try
Model.ProjectData_TeamGroup teamGroup = db.ProjectData_TeamGroup.FirstOrDefault(e => e.TeamGroupId == teamGroupId);
if (teamGroup != null)
{ {
db.ProjectData_TeamGroup.DeleteOnSubmit(teamGroup); using (var db = new Model.SGGLDB(Funs.ConnString))
db.SubmitChanges(); {
Model.ProjectData_TeamGroup teamGroup = db.ProjectData_TeamGroup.FirstOrDefault(e => e.TeamGroupId == teamGroupId);
if (teamGroup != null)
{
db.ProjectData_TeamGroup.DeleteOnSubmit(teamGroup);
db.SubmitChanges();
}
}
}catch(System.Exception ex)
{
} }
} }
/// <summary> /// <summary>

View File

@ -13,13 +13,13 @@ namespace Resources {
/// <summary> /// <summary>
/// 强类型资源类,用于查找本地化字符串等。 /// 一个强类型资源类,用于查找本地化字符串等。
/// </summary> /// </summary>
// 此类是由 StronglyTypedResourceBuilder // 此类是由 StronglyTypedResourceBuilder
// 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
// 若要添加或除成员,请编辑 .ResX 文件,然后重新运行 ResGen // 若要添加或除成员,请编辑 .ResX 文件,然后重新运行 ResGen
// (以 /str 作为命令选项),或重新生成 Visual Studio 项目。 // (以 /str 作为命令选项),或重新生成 Visual Studio 项目。
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Web.Application.StronglyTypedResourceProxyBuilder", "15.0.0.0")] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Web.Application.StronglyTypedResourceProxyBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Lan { internal class Lan {
@ -33,7 +33,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 返回此类使用的缓存 ResourceManager 实例。 /// 返回此类使用的缓存 ResourceManager 实例。
/// </summary> /// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager { internal static global::System.Resources.ResourceManager ResourceManager {
@ -47,8 +47,8 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 覆盖当前线程的 CurrentUICulture 属性 /// 重写当前线程的 CurrentUICulture 属性,对
/// 使用此强类型资源类的资源查找。 /// 使用此强类型资源类的所有资源查找执行重写
/// </summary> /// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture { internal static global::System.Globalization.CultureInfo Culture {
@ -61,7 +61,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 大数据中心 的本地化字符串。 /// 查找类似 大数据中心 的本地化字符串。
/// </summary> /// </summary>
internal static string BigDataCenter { internal static string BigDataCenter {
get { get {
@ -70,7 +70,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 证书预警 的本地化字符串。 /// 查找类似 证书预警 的本地化字符串。
/// </summary> /// </summary>
internal static string CertificateWarning { internal static string CertificateWarning {
get { get {
@ -79,7 +79,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 中国 的本地化字符串。 /// 查找类似 中国 的本地化字符串。
/// </summary> /// </summary>
internal static string China { internal static string China {
get { get {
@ -88,7 +88,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 中文 的本地化字符串。 /// 查找类似 中文 的本地化字符串。
/// </summary> /// </summary>
internal static string Chinese { internal static string Chinese {
get { get {
@ -97,7 +97,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 土建基础交安 的本地化字符串。 /// 查找类似 土建基础交安 的本地化字符串。
/// </summary> /// </summary>
internal static string CivilInfrastructure { internal static string CivilInfrastructure {
get { get {
@ -106,7 +106,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 已完成 的本地化字符串。 /// 查找类似 已完成 的本地化字符串。
/// </summary> /// </summary>
internal static string completed { internal static string completed {
get { get {
@ -115,7 +115,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 参建人数 的本地化字符串。 /// 查找类似 参建人数 的本地化字符串。
/// </summary> /// </summary>
internal static string ConPersonCount { internal static string ConPersonCount {
get { get {
@ -124,7 +124,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 施工单位 的本地化字符串。 /// 查找类似 施工单位 的本地化字符串。
/// </summary> /// </summary>
internal static string ConstructionUnit { internal static string ConstructionUnit {
get { get {
@ -133,7 +133,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 合同到期时间 的本地化字符串。 /// 查找类似 合同到期时间 的本地化字符串。
/// </summary> /// </summary>
internal static string ContractExpirationTime { internal static string ContractExpirationTime {
get { get {
@ -142,7 +142,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 当前现场人数 的本地化字符串。 /// 查找类似 当前现场人数 的本地化字符串。
/// </summary> /// </summary>
internal static string CurrentPersonnel { internal static string CurrentPersonnel {
get { get {
@ -151,7 +151,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 隐患总数 的本地化字符串。 /// 查找类似 隐患总数 的本地化字符串。
/// </summary> /// </summary>
internal static string DangersCount { internal static string DangersCount {
get { get {
@ -160,7 +160,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 员工管理 的本地化字符串。 /// 查找类似 员工管理 的本地化字符串。
/// </summary> /// </summary>
internal static string EmployeeManage { internal static string EmployeeManage {
get { get {
@ -169,7 +169,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 英文 的本地化字符串。 /// 查找类似 英文 的本地化字符串。
/// </summary> /// </summary>
internal static string English { internal static string English {
get { get {
@ -178,7 +178,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 现场动态 的本地化字符串。 /// 查找类似 现场动态 的本地化字符串。
/// </summary> /// </summary>
internal static string FieldDynamics { internal static string FieldDynamics {
get { get {
@ -187,7 +187,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 首台设备到货 的本地化字符串。 /// 查找类似 首台设备到货 的本地化字符串。
/// </summary> /// </summary>
internal static string FirstEquipmentArrived { internal static string FirstEquipmentArrived {
get { get {
@ -196,7 +196,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 焊接一次合格率 的本地化字符串。 /// 查找类似 焊接一次合格率 的本地化字符串。
/// </summary> /// </summary>
internal static string FistPassRateWelding { internal static string FistPassRateWelding {
get { get {
@ -205,7 +205,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 全屏 的本地化字符串。 /// 查找类似 全屏 的本地化字符串。
/// </summary> /// </summary>
internal static string FullScreen { internal static string FullScreen {
get { get {
@ -214,7 +214,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 总承包商施工计划 的本地化字符串。 /// 查找类似 总承包商施工计划 的本地化字符串。
/// </summary> /// </summary>
internal static string GeneralConPlan { internal static string GeneralConPlan {
get { get {
@ -223,7 +223,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 一般风险 的本地化字符串。 /// 查找类似 一般风险 的本地化字符串。
/// </summary> /// </summary>
internal static string GeneralRisk { internal static string GeneralRisk {
get { get {
@ -232,7 +232,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 较大风险 的本地化字符串。 /// 查找类似 较大风险 的本地化字符串。
/// </summary> /// </summary>
internal static string GreaterRisk { internal static string GreaterRisk {
get { get {
@ -241,7 +241,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 总部检查 的本地化字符串。 /// 查找类似 总部检查 的本地化字符串。
/// </summary> /// </summary>
internal static string HeadquartersInspection { internal static string HeadquartersInspection {
get { get {
@ -250,7 +250,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 首页 的本地化字符串。 /// 查找类似 首页 的本地化字符串。
/// </summary> /// </summary>
internal static string HomePage { internal static string HomePage {
get { get {
@ -259,7 +259,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 安全管理 的本地化字符串。 /// 查找类似 安全管理 的本地化字符串。
/// </summary> /// </summary>
internal static string HSEManage { internal static string HSEManage {
get { get {
@ -268,7 +268,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 湿度 的本地化字符串。 /// 查找类似 湿度 的本地化字符串。
/// </summary> /// </summary>
internal static string humidness { internal static string humidness {
get { get {
@ -277,7 +277,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 综合管理 的本地化字符串。 /// 查找类似 综合管理 的本地化字符串。
/// </summary> /// </summary>
internal static string IntegratedManage { internal static string IntegratedManage {
get { get {
@ -286,7 +286,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 在施危大工程数 的本地化字符串。 /// 查找类似 在施危大工程数 的本地化字符串。
/// </summary> /// </summary>
internal static string LargeRisk { internal static string LargeRisk {
get { get {
@ -295,7 +295,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 级 的本地化字符串。 /// 查找类似 级 的本地化字符串。
/// </summary> /// </summary>
internal static string Level { internal static string Level {
get { get {
@ -304,7 +304,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 现场视频 的本地化字符串。 /// 查找类似 现场视频 的本地化字符串。
/// </summary> /// </summary>
internal static string LiveVideo { internal static string LiveVideo {
get { get {
@ -313,7 +313,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 现场相册 的本地化字符串。 /// 查找类似 现场相册 的本地化字符串。
/// </summary> /// </summary>
internal static string Live_photo_album { internal static string Live_photo_album {
get { get {
@ -322,7 +322,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 低风险 的本地化字符串。 /// 查找类似 低风险 的本地化字符串。
/// </summary> /// </summary>
internal static string LowRisk { internal static string LowRisk {
get { get {
@ -331,7 +331,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 重大风险 的本地化字符串。 /// 查找类似 重大风险 的本地化字符串。
/// </summary> /// </summary>
internal static string MajorRisk { internal static string MajorRisk {
get { get {
@ -340,7 +340,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 管理人员总数 的本地化字符串。 /// 查找类似 管理人员总数 的本地化字符串。
/// </summary> /// </summary>
internal static string managersCount { internal static string managersCount {
get { get {
@ -349,7 +349,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 最大化 的本地化字符串。 /// 查找类似 最大化 的本地化字符串。
/// </summary> /// </summary>
internal static string maximize { internal static string maximize {
get { get {
@ -358,7 +358,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 机械竣工 的本地化字符串。 /// 查找类似 机械竣工 的本地化字符串。
/// </summary> /// </summary>
internal static string MechanicalCompletion { internal static string MechanicalCompletion {
get { get {
@ -367,7 +367,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 机械预警 的本地化字符串。 /// 查找类似 机械预警 的本地化字符串。
/// </summary> /// </summary>
internal static string MechanicalWarning { internal static string MechanicalWarning {
get { get {
@ -376,7 +376,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 消息 的本地化字符串。 /// 查找类似 消息 的本地化字符串。
/// </summary> /// </summary>
internal static string message { internal static string message {
get { get {
@ -385,7 +385,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 更多 的本地化字符串。 /// 查找类似 更多 的本地化字符串。
/// </summary> /// </summary>
internal static string more { internal static string more {
get { get {
@ -394,7 +394,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 您没有此模块操作权限,请联系管理员授权! 的本地化字符串。 /// 查找类似 您没有此模块操作权限,请联系管理员授权! 的本地化字符串。
/// </summary> /// </summary>
internal static string NoAuthorize { internal static string NoAuthorize {
get { get {
@ -403,7 +403,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 噪音 的本地化字符串。 /// 查找类似 噪音 的本地化字符串。
/// </summary> /// </summary>
internal static string noise { internal static string noise {
get { get {
@ -412,7 +412,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 您没有权限进入项目管理模块! 的本地化字符串。 /// 查找类似 您没有权限进入项目管理模块! 的本地化字符串。
/// </summary> /// </summary>
internal static string NoPermission { internal static string NoPermission {
get { get {
@ -421,7 +421,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 通知管理 的本地化字符串。 /// 查找类似 通知管理 的本地化字符串。
/// </summary> /// </summary>
internal static string NoticeManage { internal static string NoticeManage {
get { get {
@ -430,7 +430,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 现场考勤 的本地化字符串。 /// 查找类似 现场考勤 的本地化字符串。
/// </summary> /// </summary>
internal static string OnSiteAttendance { internal static string OnSiteAttendance {
get { get {
@ -439,7 +439,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 在新标签页中打开 的本地化字符串。 /// 查找类似 在新标签页中打开 的本地化字符串。
/// </summary> /// </summary>
internal static string OpensNewTab { internal static string OpensNewTab {
get { get {
@ -448,7 +448,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 合格率 的本地化字符串。 /// 查找类似 合格率 的本地化字符串。
/// </summary> /// </summary>
internal static string PassRate { internal static string PassRate {
get { get {
@ -457,7 +457,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 桩基施工 的本地化字符串。 /// 查找类似 桩基施工 的本地化字符串。
/// </summary> /// </summary>
internal static string Pilefoundationconstruction { internal static string Pilefoundationconstruction {
get { get {
@ -466,7 +466,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 管道安装开始 的本地化字符串。 /// 查找类似 管道安装开始 的本地化字符串。
/// </summary> /// </summary>
internal static string PipeInstallationStarts { internal static string PipeInstallationStarts {
get { get {
@ -475,7 +475,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 变电所受电 的本地化字符串。 /// 查找类似 变电所受电 的本地化字符串。
/// </summary> /// </summary>
internal static string PowerReceived { internal static string PowerReceived {
get { get {
@ -484,7 +484,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 问题总数 的本地化字符串。 /// 查找类似 问题总数 的本地化字符串。
/// </summary> /// </summary>
internal static string ProblemTotal { internal static string ProblemTotal {
get { get {
@ -493,7 +493,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 项目地址 的本地化字符串。 /// 查找类似 项目地址 的本地化字符串。
/// </summary> /// </summary>
internal static string ProjectAddress { internal static string ProjectAddress {
get { get {
@ -502,7 +502,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 项目清单 的本地化字符串。 /// 查找类似 项目清单 的本地化字符串。
/// </summary> /// </summary>
internal static string ProjectList { internal static string ProjectList {
get { get {
@ -511,7 +511,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 项目名称 的本地化字符串。 /// 查找类似 项目名称 的本地化字符串。
/// </summary> /// </summary>
internal static string ProjectName { internal static string ProjectName {
get { get {
@ -520,7 +520,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 项目进度计划 的本地化字符串。 /// 查找类似 项目进度计划 的本地化字符串。
/// </summary> /// </summary>
internal static string ProjectSchedule { internal static string ProjectSchedule {
get { get {
@ -529,7 +529,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 项目统计 的本地化字符串。 /// 查找类似 项目统计 的本地化字符串。
/// </summary> /// </summary>
internal static string ProjectStatistics { internal static string ProjectStatistics {
get { get {
@ -538,7 +538,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 在建项目 的本地化字符串。 /// 查找类似 在建项目 的本地化字符串。
/// </summary> /// </summary>
internal static string ProjectUnderConstruction { internal static string ProjectUnderConstruction {
get { get {
@ -547,7 +547,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 质量管理 的本地化字符串。 /// 查找类似 质量管理 的本地化字符串。
/// </summary> /// </summary>
internal static string QualityManage { internal static string QualityManage {
get { get {
@ -556,7 +556,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 质量统计 的本地化字符串。 /// 查找类似 质量统计 的本地化字符串。
/// </summary> /// </summary>
internal static string QualityStatistics { internal static string QualityStatistics {
get { get {
@ -565,7 +565,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 质量预警 的本地化字符串。 /// 查找类似 质量预警 的本地化字符串。
/// </summary> /// </summary>
internal static string QualityWarning { internal static string QualityWarning {
get { get {
@ -574,7 +574,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 质量问题统计 的本地化字符串。 /// 查找类似 质量问题统计 的本地化字符串。
/// </summary> /// </summary>
internal static string Quality_problem_statistics { internal static string Quality_problem_statistics {
get { get {
@ -583,7 +583,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 资质预警 的本地化字符串。 /// 查找类似 资质预警 的本地化字符串。
/// </summary> /// </summary>
internal static string Quawarning { internal static string Quawarning {
get { get {
@ -592,7 +592,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 退出 的本地化字符串。 /// 查找类似 退出 的本地化字符串。
/// </summary> /// </summary>
internal static string quit { internal static string quit {
get { get {
@ -601,7 +601,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 实时视频 的本地化字符串。 /// 查找类似 实时视频 的本地化字符串。
/// </summary> /// </summary>
internal static string RealTimeVideo { internal static string RealTimeVideo {
get { get {
@ -610,7 +610,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 整改率 的本地化字符串。 /// 查找类似 整改率 的本地化字符串。
/// </summary> /// </summary>
internal static string RectificationRate { internal static string RectificationRate {
get { get {
@ -619,7 +619,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 刷新 的本地化字符串。 /// 查找类似 刷新 的本地化字符串。
/// </summary> /// </summary>
internal static string Refresh { internal static string Refresh {
get { get {
@ -628,7 +628,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 刷新本页 的本地化字符串。 /// 查找类似 刷新本页 的本地化字符串。
/// </summary> /// </summary>
internal static string RefreshPage { internal static string RefreshPage {
get { get {
@ -637,7 +637,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 距竣工剩余 的本地化字符串。 /// 查找类似 距竣工剩余 的本地化字符串。
/// </summary> /// </summary>
internal static string RemainingTimeCompletion { internal static string RemainingTimeCompletion {
get { get {
@ -646,7 +646,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 风险管控 的本地化字符串。 /// 查找类似 风险管控 的本地化字符串。
/// </summary> /// </summary>
internal static string RiskControl { internal static string RiskControl {
get { get {
@ -655,7 +655,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 安全人工时 的本地化字符串。 /// 查找类似 安全人工时 的本地化字符串。
/// </summary> /// </summary>
internal static string SafeLaborHours { internal static string SafeLaborHours {
get { get {
@ -664,7 +664,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 安全问题统计 的本地化字符串。 /// 查找类似 安全问题统计 的本地化字符串。
/// </summary> /// </summary>
internal static string SafeProStat { internal static string SafeProStat {
get { get {
@ -673,7 +673,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 累计安全人工时 的本地化字符串。 /// 查找类似 累计安全人工时 的本地化字符串。
/// </summary> /// </summary>
internal static string SafetyLaborHours { internal static string SafetyLaborHours {
get { get {
@ -682,7 +682,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 安全统计 的本地化字符串。 /// 查找类似 安全统计 的本地化字符串。
/// </summary> /// </summary>
internal static string SafetyStatistics { internal static string SafetyStatistics {
get { get {
@ -691,7 +691,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 工程管理 的本地化字符串。 /// 查找类似 工程管理 的本地化字符串。
/// </summary> /// </summary>
internal static string ScheduleManage { internal static string ScheduleManage {
get { get {
@ -700,7 +700,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 选择语言 的本地化字符串。 /// 查找类似 选择语言 的本地化字符串。
/// </summary> /// </summary>
internal static string SelectLanguage { internal static string SelectLanguage {
get { get {
@ -709,7 +709,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 劳务数据 的本地化字符串。 /// 查找类似 劳务数据 的本地化字符串。
/// </summary> /// </summary>
internal static string ServiceData { internal static string ServiceData {
get { get {
@ -718,7 +718,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 设置 的本地化字符串。 /// 查找类似 设置 的本地化字符串。
/// </summary> /// </summary>
internal static string Settings { internal static string Settings {
get { get {
@ -727,7 +727,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 注销 的本地化字符串。 /// 查找类似 注销 的本地化字符串。
/// </summary> /// </summary>
internal static string SignOUT { internal static string SignOUT {
get { get {
@ -736,7 +736,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 开工时间 的本地化字符串。 /// 查找类似 开工时间 的本地化字符串。
/// </summary> /// </summary>
internal static string Start_time { internal static string Start_time {
get { get {
@ -745,7 +745,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 分包管理 的本地化字符串。 /// 查找类似 分包管理 的本地化字符串。
/// </summary> /// </summary>
internal static string SubManagement { internal static string SubManagement {
get { get {
@ -754,7 +754,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 监理单位 的本地化字符串。 /// 查找类似 监理单位 的本地化字符串。
/// </summary> /// </summary>
internal static string SupervisionUnit { internal static string SupervisionUnit {
get { get {
@ -763,7 +763,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 切换首页 的本地化字符串。 /// 查找类似 切换首页 的本地化字符串。
/// </summary> /// </summary>
internal static string SwitchHomePage { internal static string SwitchHomePage {
get { get {
@ -772,7 +772,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 系统菜单 的本地化字符串。 /// 查找类似 系统菜单 的本地化字符串。
/// </summary> /// </summary>
internal static string SystemMenu { internal static string SystemMenu {
get { get {
@ -781,7 +781,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 智慧施工管理信息系统 的本地化字符串。 /// 查找类似 智慧施工管理信息系统 的本地化字符串。
/// </summary> /// </summary>
internal static string SystemName { internal static string SystemName {
get { get {
@ -790,7 +790,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 温度 的本地化字符串。 /// 查找类似 温度 的本地化字符串。
/// </summary> /// </summary>
internal static string temperature { internal static string temperature {
get { get {
@ -799,7 +799,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 竣工时间 的本地化字符串。 /// 查找类似 竣工时间 的本地化字符串。
/// </summary> /// </summary>
internal static string TimeCompletion { internal static string TimeCompletion {
get { get {
@ -808,7 +808,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 待办事项 的本地化字符串。 /// 查找类似 待办事项 的本地化字符串。
/// </summary> /// </summary>
internal static string TodoList { internal static string TodoList {
get { get {
@ -817,7 +817,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 合同总工期 的本地化字符串。 /// 查找类似 合同总工期 的本地化字符串。
/// </summary> /// </summary>
internal static string TotalContractDuration { internal static string TotalContractDuration {
get { get {
@ -826,7 +826,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 未完成 的本地化字符串。 /// 查找类似 未完成 的本地化字符串。
/// </summary> /// </summary>
internal static string uncompleted { internal static string uncompleted {
get { get {
@ -835,7 +835,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 用户 的本地化字符串。 /// 查找类似 用户 的本地化字符串。
/// </summary> /// </summary>
internal static string user { internal static string user {
get { get {
@ -844,7 +844,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 视频监控 的本地化字符串。 /// 查找类似 视频监控 的本地化字符串。
/// </summary> /// </summary>
internal static string VideoSurveillance { internal static string VideoSurveillance {
get { get {
@ -853,7 +853,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 焊接管理 的本地化字符串。 /// 查找类似 焊接管理 的本地化字符串。
/// </summary> /// </summary>
internal static string WeldingManage { internal static string WeldingManage {
get { get {
@ -862,7 +862,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 风速 的本地化字符串。 /// 查找类似 风速 的本地化字符串。
/// </summary> /// </summary>
internal static string WindSpeed { internal static string WindSpeed {
get { get {
@ -871,7 +871,7 @@ namespace Resources {
} }
/// <summary> /// <summary>
/// 查找类似 作业人员总数 的本地化字符串。 /// 查找类似 作业人员总数 的本地化字符串。
/// </summary> /// </summary>
internal static string WorkPersonnel { internal static string WorkPersonnel {
get { get {

View File

@ -7423,3 +7423,125 @@ IP地址:::1
出错时间:06/05/2025 14:16:02 出错时间:06/05/2025 14:16:02
错误信息开始=====>
错误类型:NullReferenceException
错误信息:未将对象引用设置到对象的实例。
错误堆栈:
在 FineUIPro.Web.common.mainProject.get_VideoUserName() 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 800
在 ASP.common_mainproject_aspx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) 位置 e:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx:行号 1023
在 System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)
在 System.Web.UI.Control.RenderChildren(HtmlTextWriter writer)
在 System.Web.UI.Page.Render(HtmlTextWriter writer)
在 System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)
在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter)
在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
出错时间:08/12/2025 14:50:09
出错文件:http://localhost:4528/common/mainProject.aspx
IP地址:::1
操作人员:JT
出错时间:08/12/2025 14:50:09
错误信息开始=====>
错误类型:SqlException
错误信息:DELETE 语句与 REFERENCE 约束"FK_Meeting_ClassMeeting_ProjectData_TeamGroup"冲突。该冲突发生于数据库"SGGLDB_HBAZ",表"dbo.Meeting_ClassMeeting", column 'TeamGroupId'。
语句已终止。
错误堆栈:
在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
在 System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
在 System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
在 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
在 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
在 System.Data.Linq.ChangeDirector.StandardChangeDirector.DynamicDelete(TrackedObject item)
在 System.Data.Linq.ChangeDirector.StandardChangeDirector.Delete(TrackedObject item)
在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
在 System.Data.Linq.DataContext.SubmitChanges()
在 BLL.TeamGroupService.DeleteTeamGroupById(String teamGroupId) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\BLL\ProjectData\TeamGroupService.cs:行号 90
在 FineUIPro.Web.ProjectData.TeamGroup.btnMenuDelete_Click(Object sender, EventArgs e) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\TeamGroup.aspx.cs:行号 197
在 FineUIPro.MenuButton.OnClick(EventArgs e)
在 (MenuButton , EventArgs )
在 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
出错时间:08/27/2025 15:49:42
出错文件:http://localhost:4528/ProjectData/TeamGroup.aspx
IP地址:::1
操作人员:徐月
出错时间:08/27/2025 15:49:42
错误信息开始=====>
错误类型:ChangeConflictException
错误信息:找不到行或行已更改。
错误堆栈:
在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
在 System.Data.Linq.DataContext.SubmitChanges()
在 BLL.TeamGroupService.DeleteTeamGroupById(String teamGroupId) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\BLL\ProjectData\TeamGroupService.cs:行号 90
在 FineUIPro.Web.ProjectData.TeamGroup.btnMenuDelete_Click(Object sender, EventArgs e) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\TeamGroup.aspx.cs:行号 197
在 FineUIPro.MenuButton.OnClick(EventArgs e)
在 (MenuButton , EventArgs )
在 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
出错时间:08/27/2025 15:50:16
出错文件:http://localhost:4528/ProjectData/TeamGroup.aspx
IP地址:::1
操作人员:徐月
出错时间:08/27/2025 15:50:16
错误信息开始=====>
错误类型:ChangeConflictException
错误信息:找不到行或行已更改。
错误堆栈:
在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
在 System.Data.Linq.DataContext.SubmitChanges()
在 BLL.TeamGroupService.DeleteTeamGroupById(String teamGroupId) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\BLL\ProjectData\TeamGroupService.cs:行号 90
在 FineUIPro.Web.ProjectData.TeamGroup.btnMenuDelete_Click(Object sender, EventArgs e) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\TeamGroup.aspx.cs:行号 197
在 FineUIPro.MenuButton.OnClick(EventArgs e)
在 (MenuButton , EventArgs )
在 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
出错时间:08/27/2025 15:53:16
出错文件:http://localhost:4528/ProjectData/TeamGroup.aspx
IP地址:::1
操作人员:徐月
出错时间:08/27/2025 15:53:16
错误信息开始=====>
错误类型:NullReferenceException
错误信息:未将对象引用设置到对象的实例。
错误堆栈:
在 FineUIPro.Web.HSSE.Meeting.ClassMeetingView.Page_Load(Object sender, EventArgs e)
在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
在 System.Web.UI.Control.OnLoad(EventArgs e)
在 System.Web.UI.Control.LoadRecursive()
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
出错时间:09/03/2025 16:30:19
出错文件:http://localhost:4528/HSSE/Meeting/ClassMeetingView.aspx?ClassMeetingId=506fa08f-8e66-4db5-a4d8-090c83214816
IP地址:::1
操作人员:徐月
出错时间:09/03/2025 16:30:19

View File

@ -12,7 +12,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>FineUIPro.Web</RootNamespace> <RootNamespace>FineUIPro.Web</RootNamespace>
<AssemblyName>FineUIPro.Web</AssemblyName> <AssemblyName>FineUIPro.Web</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<UseIISExpress>true</UseIISExpress> <UseIISExpress>true</UseIISExpress>
<SccProjectName> <SccProjectName>
</SccProjectName> </SccProjectName>
@ -19738,7 +19738,6 @@
</FlavorProperties> </FlavorProperties>
</VisualStudio> </VisualStudio>
</ProjectExtensions> </ProjectExtensions>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v15.0\WebApplications\Microsoft.WebApplication.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets. Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild"> <Target Name="BeforeBuild">

View File

@ -59,6 +59,10 @@
SortField="TeamGroupName" FieldType="String" HeaderText="班组" HeaderTextAlign="Center" SortField="TeamGroupName" FieldType="String" HeaderText="班组" HeaderTextAlign="Center"
TextAlign="Left"> TextAlign="Left">
</f:RenderField> </f:RenderField>
<f:RenderField ColumnID="InstallationName" DataField="InstallationName"
SortField="InstallationName" FieldType="String" HeaderText="装置/单位" HeaderTextAlign="Center"
TextAlign="Left">
</f:RenderField>
<f:RenderField ColumnID="AttentPersonNum" DataField="AttentPersonNum" <f:RenderField ColumnID="AttentPersonNum" DataField="AttentPersonNum"
SortField="AttentPersonNum" FieldType="String" HeaderText="人数" HeaderTextAlign="Center" SortField="AttentPersonNum" FieldType="String" HeaderText="人数" HeaderTextAlign="Center"
TextAlign="Left"> TextAlign="Left">

View File

@ -67,7 +67,7 @@ namespace FineUIPro.Web.HSSE.Meeting
/// </summary> /// </summary>
private void BindGrid() private void BindGrid()
{ {
string strSql = "SELECT ClassMeeting.AttentPersonNum, ClassMeeting.ClassMeetingId,ClassMeeting.ProjectId,CodeRecords.Code AS ClassMeetingCode,Unit.UnitId,Unit.UnitName, g.TeamGroupId as TeamGroupId, g.TeamGroupName as TeamGroupName, ClassMeeting.ClassMeetingName,ClassMeeting.ClassMeetingDate,ClassMeeting.CompileMan,ClassMeeting.ClassMeetingContents,ClassMeeting.CompileDate,ClassMeeting.States " string strSql = "SELECT ClassMeeting.AttentPersonNum,ClassMeeting.InstallationId,ClassMeeting.InstallationName, ClassMeeting.ClassMeetingId,ClassMeeting.ProjectId,CodeRecords.Code AS ClassMeetingCode,Unit.UnitId,Unit.UnitName, g.TeamGroupId as TeamGroupId, g.TeamGroupName as TeamGroupName, ClassMeeting.ClassMeetingName,ClassMeeting.ClassMeetingDate,ClassMeeting.CompileMan,ClassMeeting.ClassMeetingContents,ClassMeeting.CompileDate,ClassMeeting.States "
+ @" ,(CASE WHEN ClassMeeting.States = " + BLL.Const.State_0 + " OR ClassMeeting.States IS NULL THEN '待['+ISNULL(OperateUser.UserName,Users.UserName)+']提交' WHEN ClassMeeting.States = " + BLL.Const.State_2 + " THEN '审核/审批完成' ELSE '待['+OperateUser.UserName+']办理' END) AS FlowOperateName" + @" ,(CASE WHEN ClassMeeting.States = " + BLL.Const.State_0 + " OR ClassMeeting.States IS NULL THEN '待['+ISNULL(OperateUser.UserName,Users.UserName)+']提交' WHEN ClassMeeting.States = " + BLL.Const.State_2 + " THEN '审核/审批完成' ELSE '待['+OperateUser.UserName+']办理' END) AS FlowOperateName"
+ @" FROM Meeting_ClassMeeting AS ClassMeeting " + @" FROM Meeting_ClassMeeting AS ClassMeeting "
+ @" LEFT JOIN Sys_CodeRecords AS CodeRecords ON ClassMeeting.ClassMeetingId = CodeRecords.DataId " + @" LEFT JOIN Sys_CodeRecords AS CodeRecords ON ClassMeeting.ClassMeetingId = CodeRecords.DataId "

View File

@ -45,8 +45,11 @@
</f:FormRow> </f:FormRow>
<f:FormRow> <f:FormRow>
<Items> <Items>
<f:TextBox runat="server" ID="textInstallationName" Label="装置/单位" LabelAlign="Right" Readonly="true"></f:TextBox>
<f:Label runat="server" ID="Label1"></f:Label>
<f:TextBox runat="server" ID="txtAttentPersonNum" Label="人数" LabelAlign="Right" Readonly="true"></f:TextBox> <f:TextBox runat="server" ID="txtAttentPersonNum" Label="人数" LabelAlign="Right" Readonly="true"></f:TextBox>
<f:Label runat="server" ID="lb1"></f:Label> <f:Label runat="server" ID="lb1"></f:Label>
</Items> </Items>
</f:FormRow> </f:FormRow>
<f:FormRow> <f:FormRow>

View File

@ -59,6 +59,7 @@ namespace FineUIPro.Web.HSSE.Meeting
this.drpUnit.Text = UnitService.GetUnitNameByUnitId(classMeeting.UnitId); this.drpUnit.Text = UnitService.GetUnitNameByUnitId(classMeeting.UnitId);
this.drpTeamGroup.Text = TeamGroupService.GetTeamGroupNameByTeamGroupId(classMeeting.TeamGroupId); this.drpTeamGroup.Text = TeamGroupService.GetTeamGroupNameByTeamGroupId(classMeeting.TeamGroupId);
this.txtAttentPersonNum.Text = classMeeting.AttentPersonNum.ToString(); this.txtAttentPersonNum.Text = classMeeting.AttentPersonNum.ToString();
this.textInstallationName.Text = classMeeting.InstallationName.ToString();
} }
} }

View File

@ -7,11 +7,13 @@
// </自动生成> // </自动生成>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace FineUIPro.Web.HSSE.Meeting { namespace FineUIPro.Web.HSSE.Meeting
{
public partial class ClassMeetingView {
public partial class ClassMeetingView
{
/// <summary> /// <summary>
/// form1 控件。 /// form1 控件。
/// </summary> /// </summary>
@ -20,7 +22,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1; protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary> /// <summary>
/// PageManager1 控件。 /// PageManager1 控件。
/// </summary> /// </summary>
@ -29,7 +31,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.PageManager PageManager1; protected global::FineUIPro.PageManager PageManager1;
/// <summary> /// <summary>
/// SimpleForm1 控件。 /// SimpleForm1 控件。
/// </summary> /// </summary>
@ -38,7 +40,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.Form SimpleForm1; protected global::FineUIPro.Form SimpleForm1;
/// <summary> /// <summary>
/// txtClassMeetingCode 控件。 /// txtClassMeetingCode 控件。
/// </summary> /// </summary>
@ -47,7 +49,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.TextBox txtClassMeetingCode; protected global::FineUIPro.TextBox txtClassMeetingCode;
/// <summary> /// <summary>
/// txtClassMeetingName 控件。 /// txtClassMeetingName 控件。
/// </summary> /// </summary>
@ -56,7 +58,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.TextBox txtClassMeetingName; protected global::FineUIPro.TextBox txtClassMeetingName;
/// <summary> /// <summary>
/// txtClassMeetingDate 控件。 /// txtClassMeetingDate 控件。
/// </summary> /// </summary>
@ -65,7 +67,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.TextBox txtClassMeetingDate; protected global::FineUIPro.TextBox txtClassMeetingDate;
/// <summary> /// <summary>
/// txtCompileManName 控件。 /// txtCompileManName 控件。
/// </summary> /// </summary>
@ -74,7 +76,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.TextBox txtCompileManName; protected global::FineUIPro.TextBox txtCompileManName;
/// <summary> /// <summary>
/// drpUnit 控件。 /// drpUnit 控件。
/// </summary> /// </summary>
@ -83,7 +85,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.TextBox drpUnit; protected global::FineUIPro.TextBox drpUnit;
/// <summary> /// <summary>
/// drpTeamGroup 控件。 /// drpTeamGroup 控件。
/// </summary> /// </summary>
@ -92,7 +94,25 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.TextBox drpTeamGroup; protected global::FineUIPro.TextBox drpTeamGroup;
/// <summary>
/// textInstallationName 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox textInstallationName;
/// <summary>
/// Label1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Label Label1;
/// <summary> /// <summary>
/// txtAttentPersonNum 控件。 /// txtAttentPersonNum 控件。
/// </summary> /// </summary>
@ -101,7 +121,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.TextBox txtAttentPersonNum; protected global::FineUIPro.TextBox txtAttentPersonNum;
/// <summary> /// <summary>
/// lb1 控件。 /// lb1 控件。
/// </summary> /// </summary>
@ -110,7 +130,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.Label lb1; protected global::FineUIPro.Label lb1;
/// <summary> /// <summary>
/// txtClassMeetingContents 控件。 /// txtClassMeetingContents 控件。
/// </summary> /// </summary>
@ -119,7 +139,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.HtmlEditor txtClassMeetingContents; protected global::FineUIPro.HtmlEditor txtClassMeetingContents;
/// <summary> /// <summary>
/// ContentPanel1 控件。 /// ContentPanel1 控件。
/// </summary> /// </summary>
@ -128,7 +148,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.ContentPanel ContentPanel1; protected global::FineUIPro.ContentPanel ContentPanel1;
/// <summary> /// <summary>
/// ctlAuditFlow 控件。 /// ctlAuditFlow 控件。
/// </summary> /// </summary>
@ -137,7 +157,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.Web.Controls.FlowOperateControl ctlAuditFlow; protected global::FineUIPro.Web.Controls.FlowOperateControl ctlAuditFlow;
/// <summary> /// <summary>
/// Toolbar1 控件。 /// Toolbar1 控件。
/// </summary> /// </summary>
@ -146,7 +166,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.Toolbar Toolbar1; protected global::FineUIPro.Toolbar Toolbar1;
/// <summary> /// <summary>
/// lbTemp 控件。 /// lbTemp 控件。
/// </summary> /// </summary>
@ -155,7 +175,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.Label lbTemp; protected global::FineUIPro.Label lbTemp;
/// <summary> /// <summary>
/// btnAttachUrl 控件。 /// btnAttachUrl 控件。
/// </summary> /// </summary>
@ -164,7 +184,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.Button btnAttachUrl; protected global::FineUIPro.Button btnAttachUrl;
/// <summary> /// <summary>
/// btnAttachUrl1 控件。 /// btnAttachUrl1 控件。
/// </summary> /// </summary>
@ -173,7 +193,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.Button btnAttachUrl1; protected global::FineUIPro.Button btnAttachUrl1;
/// <summary> /// <summary>
/// btnAttachUrl2 控件。 /// btnAttachUrl2 控件。
/// </summary> /// </summary>
@ -182,7 +202,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.Button btnAttachUrl2; protected global::FineUIPro.Button btnAttachUrl2;
/// <summary> /// <summary>
/// ToolbarFill1 控件。 /// ToolbarFill1 控件。
/// </summary> /// </summary>
@ -191,7 +211,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.ToolbarFill ToolbarFill1; protected global::FineUIPro.ToolbarFill ToolbarFill1;
/// <summary> /// <summary>
/// btnClose 控件。 /// btnClose 控件。
/// </summary> /// </summary>
@ -200,7 +220,7 @@ namespace FineUIPro.Web.HSSE.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.Button btnClose; protected global::FineUIPro.Button btnClose;
/// <summary> /// <summary>
/// WindowAtt 控件。 /// WindowAtt 控件。
/// </summary> /// </summary>

View File

@ -241,5 +241,15 @@ namespace Model
get; get;
set; set;
} }
public string InstallationId
{
get; set;
}
public string InstallationName
{
get; set;
}
} }
} }

View File

@ -299228,6 +299228,10 @@ namespace Model
private System.Nullable<int> _ManagePersonNum; private System.Nullable<int> _ManagePersonNum;
private string _InstallationId;
private string _InstallationName;
private EntityRef<Base_Project> _Base_Project; private EntityRef<Base_Project> _Base_Project;
private EntityRef<Base_Unit> _Base_Unit; private EntityRef<Base_Unit> _Base_Unit;
@ -299276,6 +299280,10 @@ namespace Model
partial void OnMeetingHostManOtherChanged(); partial void OnMeetingHostManOtherChanged();
partial void OnManagePersonNumChanging(System.Nullable<int> value); partial void OnManagePersonNumChanging(System.Nullable<int> value);
partial void OnManagePersonNumChanged(); partial void OnManagePersonNumChanged();
partial void OnInstallationIdChanging(string value);
partial void OnInstallationIdChanged();
partial void OnInstallationNameChanging(string value);
partial void OnInstallationNameChanged();
#endregion #endregion
public Meeting_ClassMeeting() public Meeting_ClassMeeting()
@ -299663,6 +299671,46 @@ namespace Model
} }
} }
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InstallationId", DbType="NVarChar(255)")]
public string InstallationId
{
get
{
return this._InstallationId;
}
set
{
if ((this._InstallationId != value))
{
this.OnInstallationIdChanging(value);
this.SendPropertyChanging();
this._InstallationId = value;
this.SendPropertyChanged("InstallationId");
this.OnInstallationIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InstallationName", DbType="NVarChar(255)")]
public string InstallationName
{
get
{
return this._InstallationName;
}
set
{
if ((this._InstallationName != value))
{
this.OnInstallationNameChanging(value);
this.SendPropertyChanging();
this._InstallationName = value;
this.SendPropertyChanged("InstallationName");
this.OnInstallationNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Meeting_ClassMeeting_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)] [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Meeting_ClassMeeting_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project public Base_Project Base_Project
{ {

View File

@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Model</RootNamespace> <RootNamespace>Model</RootNamespace>
<AssemblyName>Model</AssemblyName> <AssemblyName>Model</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<SccProjectName> <SccProjectName>
</SccProjectName> </SccProjectName>

View File

@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SgManager.AI</RootNamespace> <RootNamespace>SgManager.AI</RootNamespace>
<AssemblyName>SgManager.AI</AssemblyName> <AssemblyName>SgManager.AI</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<TargetFrameworkProfile /> <TargetFrameworkProfile />
</PropertyGroup> </PropertyGroup>

View File

@ -1248,16 +1248,32 @@ namespace WebAPI.Controllers
} }
return responeData; return responeData;
} }
#endregion #endregion
#region
public Model.ResponeData getProjectInstallation(string projectId)
{
var responeData = new Model.ResponeData();
try
{
responeData.data = APIBaseInfoService.getProjectInstallations(projectId);
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.Message;
}
return responeData;
}
#endregion
/// <summary> /// <summary>
/// 获取安全人工时 /// 获取安全人工时
/// </summary> /// </summary>
/// <param name="dateA"></param> /// <param name="dateA"></param>
/// <param name="dateZ"></param> /// <param name="dateZ"></param>
/// <returns></returns> /// <returns></returns>
public Model.ResponeData getProjectPersonAndSafeHour( string dateA, string dateZ) public Model.ResponeData getProjectPersonAndSafeHour( string dateA, string dateZ)
{ {
var responeData = new Model.ResponeData(); var responeData = new Model.ResponeData();
try try

View File

@ -14,7 +14,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>WebAPI</RootNamespace> <RootNamespace>WebAPI</RootNamespace>
<AssemblyName>WebAPI</AssemblyName> <AssemblyName>WebAPI</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<MvcBuildViews>false</MvcBuildViews> <MvcBuildViews>false</MvcBuildViews>
<UseIISExpress>true</UseIISExpress> <UseIISExpress>true</UseIISExpress>
<Use64BitIISExpress /> <Use64BitIISExpress />