Compare commits

..

No commits in common. "2cf45527a1270a27906aace5497cfb4fd886adec" and "1dde5b74dc13c411b8bf814201f2bbdeabf3abb2" have entirely different histories.

33 changed files with 1712 additions and 1985 deletions

File diff suppressed because one or more lines are too long

View File

@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BLL</RootNamespace>
<AssemblyName>BLL</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>
</SccProjectName>
@ -587,6 +587,7 @@
<Compile Include="JDGL\Check\QuantityListService.cs" />
<Compile Include="JDGL\Check\SteelStructureCompletionService.cs" />
<Compile Include="JDGL\Check\UndergroundPipeCompletionService.cs" />
<Compile Include="JDGL\Check\WeekPlanService.cs" />
<Compile Include="JDGL\WBSCompleteAndReal\WBSReportService.cs" />
<Compile Include="JDGL\WBS\CnProfessionInitService.cs" />
<Compile Include="JDGL\WBS\CnProfessionService.cs" />

View File

@ -81,6 +81,19 @@ namespace BLL
Funs.FineUIPleaseSelect(dropName);
}
}
public static void InitCNProfessionalDocDownList(FineUIPro.DropDownList dropName, bool isShowPlease)
{
dropName.DataValueField = "Value";
dropName.DataTextField = "Text";
dropName.DataSource = GetCNProfessionalDocItem();
dropName.DataBind();
if (isShowPlease)
{
Funs.FineUIPleaseSelect(dropName);
}
}
/// <summary>
/// 专业下拉框
/// </summary>
@ -104,7 +117,29 @@ namespace BLL
/// <returns></returns>
public static ListItem[] GetCNProfessionalItem()
{
var q = (from x in Funs.DB.Base_CNProfessional where x.CNProfessionalId != BLL.Const.CNProfessionalConstructId orderby x.SortIndex select x).ToList();
var q = (from x in Funs.DB.Base_CNProfessional
where x.CNProfessionalId != BLL.Const.CNProfessionalConstructId
&& x.CNProfessionalId != BLL.Const.CNProfessionalHSEId
orderby x.SortIndex
select x).ToList();
ListItem[] list = new ListItem[q.Count()];
for (int i = 0; i < q.Count(); i++)
{
list[i] = new ListItem(q[i].ProfessionalName ?? "", q[i].CNProfessionalId);
}
return list;
}
/// <summary>
/// 资料收发文专用
/// </summary>
/// <returns></returns>
public static ListItem[] GetCNProfessionalDocItem()
{
var q = (from x in Funs.DB.Base_CNProfessional
where x.CNProfessionalId != BLL.Const.CNProfessionalConstructId
orderby x.SortIndex
select x).ToList();
ListItem[] list = new ListItem[q.Count()];
for (int i = 0; i < q.Count(); i++)
{

View File

@ -47,7 +47,7 @@ namespace BLL
{
try
{
var getDataList = (from x in Funs.DB.Sys_DataExchange where x.IsUpdate == false select x).Take(100).ToList();
var getDataList = (from x in Funs.DB.Sys_DataExchange where x.IsUpdate == false select x).Take(500).ToList();
if (getDataList.Count() > 0)
{
var getDataList0 = getDataList.Where(x => x.MessageText.Contains("\"Type\":0")).ToList();

View File

@ -339,10 +339,10 @@ namespace BLL
{
InspectionMangementList = (from x in InspectionMangementList where x.CNProfessionalId==cNProfessionalId select x).ToList();
}
if (isOnceQualified == true)
{
//if (isOnceQualified == true)
//{
InspectionMangementList = (from x in InspectionMangementList where x.IsOnceQualified == isOnceQualified select x).ToList();
}
//}
if (startDate != null && SoptDate != null)
{
InspectionMangementList = (from x in InspectionMangementList where x.InspectionDate >= startDate && x.InspectionDate <= SoptDate select x).ToList();
@ -357,10 +357,10 @@ namespace BLL
{
InspectionMangementList = (from x in InspectionMangementList where x.UnitId == unitId select x).ToList();
}
if (isOnceQualified == true)
{
//if (isOnceQualified == true)
//{
InspectionMangementList = (from x in InspectionMangementList where x.IsOnceQualified == isOnceQualified select x).ToList();
}
//}
if (startDate != null && SoptDate != null)
{
InspectionMangementList = (from x in InspectionMangementList where x.InspectionDate >= startDate && x.InspectionDate <= SoptDate select x).ToList();
@ -369,6 +369,20 @@ namespace BLL
return InspectionMangementList;
}
public static List<Model.View_CQMS_InspectionManagementDetail> getInspectionManagementDetailListByDate(string projectId, DateTime startDate, DateTime SoptDate, bool isOnceQualified)
{
List<Model.View_CQMS_InspectionManagementDetail> InspectionMangementList = (from x in Funs.DB.View_CQMS_InspectionManagementDetail where x.ProjectId == projectId select x).ToList();
//if (isOnceQualified == true)
//{
InspectionMangementList = (from x in InspectionMangementList where x.IsOnceQualified == isOnceQualified select x).ToList();
//}
if (startDate != null && SoptDate != null)
{
InspectionMangementList = (from x in InspectionMangementList where x.InspectionDate >= startDate && x.InspectionDate <= SoptDate select x).ToList();
}
return InspectionMangementList;
}
/// <summary>
/// 根据主键获取视图信息
/// </summary>

View File

@ -3148,6 +3148,14 @@ namespace BLL
/// </summary>
public const string QuantityCompletionTemplateUrl = "File\\Excel\\DataIn\\项目进度完成情况导入模板.xls";
/// <summary>
/// 月度计划情况导入模版文件原始的虚拟路径
/// </summary>
public const string MonthPlanTemplateUrl = "File\\Excel\\DataIn\\月度计划情况导入模板.xls";
/// <summary>
/// 周进度计划导入模版文件原始的虚拟路径
/// </summary>
public const string WeekPlanTemplateUrl = "File\\Excel\\DataIn\\周进度计划导入模板.xls";
/// <summary>
/// 仪表索引
/// </summary>
public const string InstrumentUrl = "File\\Excel\\TestRun\\仪表索引模板.xlsx";
@ -3891,6 +3899,11 @@ namespace BLL
/// </summary>
public const string CNProfessionalConstructId = "96EE9000-CAB3-46F0-9392-74BC6AD5D57B";
/// <summary>
/// 安全专业ID
/// </summary>
public const string CNProfessionalHSEId = "BD344C54-66CC-4547-89AF-04C297D60CD7";
/// <summary>
/// 设备材料报验
/// </summary>
@ -5758,10 +5771,15 @@ namespace BLL
public const string RectificationMeasureMenuId = "0629BAB1-DB1C-42CE-A333-49F3813617D7";
/// <summary>
/// 工程量完成情况
/// 月度计划情况
/// </summary>
public const string MonthPlanMenuId = "94287B92-7E96-4B90-BC6F-DAF30AE3B314";
/// <summary>
/// 周进度计划
/// </summary>
public const string WeekPlanMenuId = "56A54B4B-BBA3-4249-9FFC-3A60DAC79059";
/// <summary>
/// 进度完成情况
/// </summary>

View File

@ -22,6 +22,16 @@ namespace BLL
return Funs.DB.JDGL_MonthPlan.FirstOrDefault(e => e.MonthPlanId == MonthPlanId);
}
/// <summary>
/// 根据主键获取月度计划情况
/// </summary>
/// <param name="MonthPlanId"></param>
/// <returns></returns>
public static List<Model.JDGL_MonthPlan> GetMonthPlansByMonths(string projectId, DateTime months)
{
return (from x in Funs.DB.JDGL_MonthPlan where x.ProjectId == projectId && x.Months == months select x).ToList();
}
/// <summary>
/// 添加月度计划情况
/// </summary>
@ -42,6 +52,7 @@ namespace BLL
Remark = MonthPlan.Remark,
CompileMan = MonthPlan.CompileMan,
CompileDate = MonthPlan.CompileDate,
SortIndex = MonthPlan.SortIndex,
};
db.JDGL_MonthPlan.InsertOnSubmit(newMonthPlan);
db.SubmitChanges();
@ -65,7 +76,8 @@ namespace BLL
newMonthPlan.Remark = MonthPlan.Remark;
newMonthPlan.CompileMan = MonthPlan.CompileMan;
newMonthPlan.CompileDate = MonthPlan.CompileDate;
newMonthPlan.SortIndex = MonthPlan.SortIndex;
db.SubmitChanges();
}
}
@ -84,5 +96,20 @@ namespace BLL
db.SubmitChanges();
}
}
/// <summary>
/// 根据主键删除月度计划情况
/// </summary>
/// <param name="MonthPlanId"></param>
public static void DeleteAllMonthPlan(string projectId, DateTime months)
{
Model.SGGLDB db = Funs.DB;
var q = from x in db.JDGL_MonthPlan where x.ProjectId == projectId && x.Months == months select x;
if (q != null)
{
db.JDGL_MonthPlan.DeleteAllOnSubmit(q);
db.SubmitChanges();
}
}
}
}

View File

@ -0,0 +1,122 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BLL
{
/// <summary>
/// 周计划情况
/// </summary>
public class WeekPlanService
{
public static Model.SGGLDB db = Funs.DB;
/// <summary>
/// 根据主键获取周计划情况
/// </summary>
/// <param name="WeekPlanId"></param>
/// <returns></returns>
public static Model.JDGL_WeekPlan GetWeekPlanById(string WeekPlanId)
{
return Funs.DB.JDGL_WeekPlan.FirstOrDefault(e => e.WeekPlanId == WeekPlanId);
}
/// <summary>
/// 根据主键获取周计划情况
/// </summary>
/// <param name="WeekPlanId"></param>
/// <returns></returns>
public static List<Model.JDGL_WeekPlan> GetWeekPlansByWeeks(string projectId, string weekNo)
{
return (from x in Funs.DB.JDGL_WeekPlan where x.ProjectId == projectId && x.WeekNo == weekNo select x).ToList();
}
/// <summary>
/// 添加周计划情况
/// </summary>
/// <param name="WeekPlan"></param>
public static void AddWeekPlan(Model.JDGL_WeekPlan WeekPlan)
{
Model.SGGLDB db = Funs.DB;
Model.JDGL_WeekPlan newWeekPlan = new Model.JDGL_WeekPlan
{
WeekPlanId = WeekPlan.WeekPlanId,
ProjectId = WeekPlan.ProjectId,
WeekNo = WeekPlan.WeekNo,
StartDate = WeekPlan.StartDate,
EndDate = WeekPlan.EndDate,
UnitWork = WeekPlan.UnitWork,
Major = WeekPlan.Major,
WorkContent = WeekPlan.WorkContent,
UnitId = WeekPlan.UnitId,
DutyPerson = WeekPlan.DutyPerson,
PlanDate = WeekPlan.PlanDate,
IsOK = WeekPlan.IsOK,
Remark = WeekPlan.Remark,
CompileMan = WeekPlan.CompileMan,
CompileDate = WeekPlan.CompileDate,
SortIndex = WeekPlan.SortIndex,
};
db.JDGL_WeekPlan.InsertOnSubmit(newWeekPlan);
db.SubmitChanges();
}
/// <summary>
/// 修改周计划情况
/// </summary>
/// <param name="WeekPlan"></param>
public static void UpdateWeekPlan(Model.JDGL_WeekPlan WeekPlan)
{
Model.SGGLDB db = Funs.DB;
Model.JDGL_WeekPlan newWeekPlan = db.JDGL_WeekPlan.FirstOrDefault(e => e.WeekPlanId == WeekPlan.WeekPlanId);
if (newWeekPlan != null)
{
newWeekPlan.UnitWork = WeekPlan.UnitWork;
newWeekPlan.Major = WeekPlan.Major;
newWeekPlan.WorkContent = WeekPlan.WorkContent;
newWeekPlan.UnitId = WeekPlan.UnitId;
newWeekPlan.DutyPerson = WeekPlan.DutyPerson;
newWeekPlan.PlanDate = WeekPlan.PlanDate;
newWeekPlan.IsOK = WeekPlan.IsOK;
newWeekPlan.Remark = WeekPlan.Remark;
newWeekPlan.CompileMan = WeekPlan.CompileMan;
newWeekPlan.CompileDate = WeekPlan.CompileDate;
newWeekPlan.SortIndex = WeekPlan.SortIndex;
db.SubmitChanges();
}
}
/// <summary>
/// 根据主键删除周计划情况
/// </summary>
/// <param name="WeekPlanId"></param>
public static void DeleteWeekPlanByWeekPlanId(string WeekPlanId)
{
Model.SGGLDB db = Funs.DB;
var q = (from x in db.JDGL_WeekPlan where x.WeekPlanId == WeekPlanId select x).FirstOrDefault();
if (q != null)
{
db.JDGL_WeekPlan.DeleteOnSubmit(q);
db.SubmitChanges();
}
}
/// <summary>
/// 根据主键删除周计划情况
/// </summary>
/// <param name="WeekPlanId"></param>
public static void DeleteAllWeekPlan(string projectId, string weekNo)
{
Model.SGGLDB db = Funs.DB;
var q = from x in db.JDGL_WeekPlan where x.ProjectId == projectId && x.WeekNo == weekNo select x;
if (q != null)
{
db.JDGL_WeekPlan.DeleteAllOnSubmit(q);
db.SubmitChanges();
}
}
}
}

View File

@ -169,6 +169,32 @@
}
}
}
/// <summary>
/// 项目类型单位表下拉框
/// </summary>
/// <param name="dropName">下拉框名字</param>
/// <param name="isShowPlease">是否显示请选择</param>
public static void InitUnitDropDownList2(FineUIPro.DropDownList dropName, string projectId, string unitType, bool isShowPlease)
{
using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
{
var pUnit = (from x in db.Project_ProjectUnit
join y in db.Base_Unit on x.UnitId equals y.UnitId
where x.ProjectId == projectId && x.UnitType == unitType
orderby y.UnitCode
select y).ToList();
dropName.DataValueField = "UnitName";
dropName.DataTextField = "UnitName";
dropName.DataSource = pUnit;
dropName.DataBind();
if (isShowPlease)
{
Funs.FineUIPleaseSelect(dropName);
}
}
}
#endregion
/// <summary>

View File

@ -10998,223 +10998,600 @@ namespace BLL.CNCECHSSEService {
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute(Name="Information_MillionsMonthlyReport", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")]
[System.SerializableAttribute()]
public partial class Information_MillionsMonthlyReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
public partial class Information_MillionsMonthlyReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
{
[System.NonSerializedAttribute()]
private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<decimal> AccidentMortalityField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<decimal> DeathAccidentFrequencyField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string DutyPersonField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<System.DateTime> FillingDateField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string FillingManField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<decimal> LostTimeInjuryRateField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<decimal> LostTimeRateField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string MillionsMonthlyReportIdField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> MonthField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<decimal> RecordableIncidentRateField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string UnitIdField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> YearField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<decimal> InputCostsField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> TrainNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> GeneralHazardNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> MajorHazardNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> NotProofLargeProjectNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> ProofLargeProjectNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> FireLicenseNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> LimitLicenseNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> HighLicenseNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> HoistingLicenseNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> BreakGroundLicenseNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> ElectricityLicenseNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> RTLicenseNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> NightLicenseNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> CommissionerNumField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable<int> SoleDutyNumField;
[global::System.ComponentModel.BrowsableAttribute(false)]
public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
get {
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> SoleDutyNum
{
get
{
return this.SoleDutyNumField;
}
set
{
if ((this.SoleDutyNumField.Equals(value) != true))
{
this.SoleDutyNumField = value;
this.RaisePropertyChanged("SoleDutyNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> CommissionerNum
{
get
{
return this.CommissionerNumField;
}
set
{
if ((this.CommissionerNumField.Equals(value) != true))
{
this.CommissionerNumField = value;
this.RaisePropertyChanged("CommissionerNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> NightLicenseNum
{
get
{
return this.NightLicenseNumField;
}
set
{
if ((this.NightLicenseNumField.Equals(value) != true))
{
this.NightLicenseNumField = value;
this.RaisePropertyChanged("NightLicenseNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> RTLicenseNum
{
get
{
return this.RTLicenseNumField;
}
set
{
if ((this.RTLicenseNumField.Equals(value) != true))
{
this.RTLicenseNumField = value;
this.RaisePropertyChanged("RTLicenseNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> ElectricityLicenseNum
{
get
{
return this.ElectricityLicenseNumField;
}
set
{
if ((this.ElectricityLicenseNumField.Equals(value) != true))
{
this.ElectricityLicenseNumField = value;
this.RaisePropertyChanged("ElectricityLicenseNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> BreakGroundLicenseNum
{
get
{
return this.BreakGroundLicenseNumField;
}
set
{
if ((this.BreakGroundLicenseNumField.Equals(value) != true))
{
this.BreakGroundLicenseNumField = value;
this.RaisePropertyChanged("BreakGroundLicenseNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> HoistingLicenseNum
{
get
{
return this.HoistingLicenseNumField;
}
set
{
if ((this.HoistingLicenseNumField.Equals(value) != true))
{
this.HoistingLicenseNumField = value;
this.RaisePropertyChanged("HoistingLicenseNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> HighLicenseNum
{
get
{
return this.HighLicenseNumField;
}
set
{
if ((this.HighLicenseNumField.Equals(value) != true))
{
this.HighLicenseNumField = value;
this.RaisePropertyChanged("HighLicenseNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> LimitLicenseNum
{
get
{
return this.LimitLicenseNumField;
}
set
{
if ((this.LimitLicenseNumField.Equals(value) != true))
{
this.LimitLicenseNumField = value;
this.RaisePropertyChanged("LimitLicenseNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> FireLicenseNum
{
get
{
return this.FireLicenseNumField;
}
set
{
if ((this.FireLicenseNumField.Equals(value) != true))
{
this.FireLicenseNumField = value;
this.RaisePropertyChanged("FireLicenseNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> ProofLargeProjectNum
{
get
{
return this.ProofLargeProjectNumField;
}
set
{
if ((this.ProofLargeProjectNumField.Equals(value) != true))
{
this.ProofLargeProjectNumField = value;
this.RaisePropertyChanged("ProofLargeProjectNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> NotProofLargeProjectNum
{
get
{
return this.NotProofLargeProjectNumField;
}
set
{
if ((this.NotProofLargeProjectNumField.Equals(value) != true))
{
this.NotProofLargeProjectNumField = value;
this.RaisePropertyChanged("NotProofLargeProjectNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> MajorHazardNum
{
get
{
return this.MajorHazardNumField;
}
set
{
if ((this.MajorHazardNumField.Equals(value) != true))
{
this.MajorHazardNumField = value;
this.RaisePropertyChanged("MajorHazardNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> GeneralHazardNum
{
get
{
return this.GeneralHazardNumField;
}
set
{
if ((this.GeneralHazardNumField.Equals(value) != true))
{
this.GeneralHazardNumField = value;
this.RaisePropertyChanged("GeneralHazardNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> TrainNum
{
get
{
return this.TrainNumField;
}
set
{
if ((this.TrainNumField.Equals(value) != true))
{
this.TrainNumField = value;
this.RaisePropertyChanged("TrainNum");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<decimal> InputCosts
{
get
{
return this.InputCostsField;
}
set
{
if ((this.InputCostsField.Equals(value) != true))
{
this.InputCostsField = value;
this.RaisePropertyChanged("InputCosts");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Runtime.Serialization.ExtensionDataObject ExtensionData
{
get
{
return this.extensionDataField;
}
set {
set
{
this.extensionDataField = value;
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<decimal> AccidentMortality {
get {
public System.Nullable<decimal> AccidentMortality
{
get
{
return this.AccidentMortalityField;
}
set {
if ((this.AccidentMortalityField.Equals(value) != true)) {
set
{
if ((this.AccidentMortalityField.Equals(value) != true))
{
this.AccidentMortalityField = value;
this.RaisePropertyChanged("AccidentMortality");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<decimal> DeathAccidentFrequency {
get {
public System.Nullable<decimal> DeathAccidentFrequency
{
get
{
return this.DeathAccidentFrequencyField;
}
set {
if ((this.DeathAccidentFrequencyField.Equals(value) != true)) {
set
{
if ((this.DeathAccidentFrequencyField.Equals(value) != true))
{
this.DeathAccidentFrequencyField = value;
this.RaisePropertyChanged("DeathAccidentFrequency");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string DutyPerson {
get {
public string DutyPerson
{
get
{
return this.DutyPersonField;
}
set {
if ((object.ReferenceEquals(this.DutyPersonField, value) != true)) {
set
{
if ((object.ReferenceEquals(this.DutyPersonField, value) != true))
{
this.DutyPersonField = value;
this.RaisePropertyChanged("DutyPerson");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<System.DateTime> FillingDate {
get {
public System.Nullable<System.DateTime> FillingDate
{
get
{
return this.FillingDateField;
}
set {
if ((this.FillingDateField.Equals(value) != true)) {
set
{
if ((this.FillingDateField.Equals(value) != true))
{
this.FillingDateField = value;
this.RaisePropertyChanged("FillingDate");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string FillingMan {
get {
public string FillingMan
{
get
{
return this.FillingManField;
}
set {
if ((object.ReferenceEquals(this.FillingManField, value) != true)) {
set
{
if ((object.ReferenceEquals(this.FillingManField, value) != true))
{
this.FillingManField = value;
this.RaisePropertyChanged("FillingMan");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<decimal> LostTimeInjuryRate {
get {
public System.Nullable<decimal> LostTimeInjuryRate
{
get
{
return this.LostTimeInjuryRateField;
}
set {
if ((this.LostTimeInjuryRateField.Equals(value) != true)) {
set
{
if ((this.LostTimeInjuryRateField.Equals(value) != true))
{
this.LostTimeInjuryRateField = value;
this.RaisePropertyChanged("LostTimeInjuryRate");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<decimal> LostTimeRate {
get {
public System.Nullable<decimal> LostTimeRate
{
get
{
return this.LostTimeRateField;
}
set {
if ((this.LostTimeRateField.Equals(value) != true)) {
set
{
if ((this.LostTimeRateField.Equals(value) != true))
{
this.LostTimeRateField = value;
this.RaisePropertyChanged("LostTimeRate");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string MillionsMonthlyReportId {
get {
public string MillionsMonthlyReportId
{
get
{
return this.MillionsMonthlyReportIdField;
}
set {
if ((object.ReferenceEquals(this.MillionsMonthlyReportIdField, value) != true)) {
set
{
if ((object.ReferenceEquals(this.MillionsMonthlyReportIdField, value) != true))
{
this.MillionsMonthlyReportIdField = value;
this.RaisePropertyChanged("MillionsMonthlyReportId");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> Month {
get {
public System.Nullable<int> Month
{
get
{
return this.MonthField;
}
set {
if ((this.MonthField.Equals(value) != true)) {
set
{
if ((this.MonthField.Equals(value) != true))
{
this.MonthField = value;
this.RaisePropertyChanged("Month");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<decimal> RecordableIncidentRate {
get {
public System.Nullable<decimal> RecordableIncidentRate
{
get
{
return this.RecordableIncidentRateField;
}
set {
if ((this.RecordableIncidentRateField.Equals(value) != true)) {
set
{
if ((this.RecordableIncidentRateField.Equals(value) != true))
{
this.RecordableIncidentRateField = value;
this.RaisePropertyChanged("RecordableIncidentRate");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string UnitId {
get {
public string UnitId
{
get
{
return this.UnitIdField;
}
set {
if ((object.ReferenceEquals(this.UnitIdField, value) != true)) {
set
{
if ((object.ReferenceEquals(this.UnitIdField, value) != true))
{
this.UnitIdField = value;
this.RaisePropertyChanged("UnitId");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Nullable<int> Year {
get {
public System.Nullable<int> Year
{
get
{
return this.YearField;
}
set {
if ((this.YearField.Equals(value) != true)) {
set
{
if ((this.YearField.Equals(value) != true))
{
this.YearField = value;
this.RaisePropertyChanged("Year");
}
}
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
protected void RaisePropertyChanged(string propertyName)
{
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
if ((propertyChanged != null))
{
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute(Name="Information_MillionsMonthlyReportItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")]

View File

@ -1293,6 +1293,19 @@ namespace BLL
Funs.FineUIPleaseSelect(dropName);
}
}
public static void InitUserNameProjectIdUnitTypeDropDownList(FineUIPro.DropDownList dropName, string projectId, string unitType, bool isShowPlease)
{
dropName.DataValueField = "UserName";
dropName.DataTextField = "UserName";
dropName.DataSource = BLL.UserService.GetUserListByProjectIdAndUnitType(projectId, unitType);
dropName.DataBind();
if (isShowPlease)
{
Funs.FineUIPleaseSelect(dropName);
}
}
/// <summary>
/// 根据项目号和单位类型获取用户下拉选项
/// </summary>

View File

@ -109,22 +109,22 @@
LostTimeInjuryRate = x.LostTimeInjuryRate,
DeathAccidentFrequency = x.DeathAccidentFrequency,
AccidentMortality = x.AccidentMortality,
//InputCosts = x.InputCosts,
//TrainNum = x.TrainNum,
//GeneralHazardNum = x.GeneralHazardNum,
//MajorHazardNum = x.MajorHazardNum,
//NotProofLargeProjectNum = x.NotProofLargeProjectNum,
//ProofLargeProjectNum = x.ProofLargeProjectNum,
//FireLicenseNum = x.FireLicenseNum,
//LimitLicenseNum = x.LimitLicenseNum,
//HighLicenseNum = x.HighLicenseNum,
//HoistingLicenseNum = x.HoistingLicenseNum,
//BreakGroundLicenseNum = x.BreakGroundLicenseNum,
//ElectricityLicenseNum = x.ElectricityLicenseNum,
//RTLicenseNum = x.RTLicenseNum,
//NightLicenseNum = x.NightLicenseNum,
//CommissionerNum = x.CommissionerNum,
//SoleDutyNum = x.SoleDutyNum,
InputCosts = x.InputCosts,
TrainNum = x.TrainNum,
GeneralHazardNum = x.GeneralHazardNum,
MajorHazardNum = x.MajorHazardNum,
NotProofLargeProjectNum = x.NotProofLargeProjectNum,
ProofLargeProjectNum = x.ProofLargeProjectNum,
FireLicenseNum = x.FireLicenseNum,
LimitLicenseNum = x.LimitLicenseNum,
HighLicenseNum = x.HighLicenseNum,
HoistingLicenseNum = x.HoistingLicenseNum,
BreakGroundLicenseNum = x.BreakGroundLicenseNum,
ElectricityLicenseNum = x.ElectricityLicenseNum,
RTLicenseNum = x.RTLicenseNum,
NightLicenseNum = x.NightLicenseNum,
CommissionerNum = x.CommissionerNum,
SoleDutyNum = x.SoleDutyNum,
};
var upReportItem = from x in db.Information_MillionsMonthlyReportItem

View File

@ -1,64 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1"/>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Configuration.ConfigurationManager" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.1" newVersion="6.0.0.1"/>
<assemblyIdentity name="System.Configuration.ConfigurationManager" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.1" newVersion="6.0.0.1" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.serviceModel>
<client>
<endpoint address="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc" binding="wsHttpBinding" bindingConfiguration="HSSEServiceEndpoint" contract="CNCECHSSEService.HSSEService" name="HSSEServiceEndpoint"/>
<endpoint address="https://mat.cwcec.com/LocWebServices/WebService1.asmx" binding="basicHttpBinding" bindingConfiguration="WebService1Soap" contract="MCSService.WebService1Soap" name="WebService1Soap"/>
<endpoint address="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc" binding="wsHttpBinding" bindingConfiguration="HSSEServiceEndpoint" contract="CNCECHSSEService.HSSEService" name="HSSEServiceEndpoint" />
<endpoint address="https://mat.cwcec.com/LocWebServices/WebService1.asmx" binding="basicHttpBinding" bindingConfiguration="WebService1Soap" contract="MCSService.WebService1Soap" name="WebService1Soap" />
</client>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
<services>
<service name="BLL.OpenService.HSSEService" behaviorConfiguration="BLL.HSSEServiceBehavior">
<endpoint address="" binding="wsHttpBinding" bindingConfiguration="BLL.HSSEServiceBinding" name="BLL.HSSEServiceEndpoint" contract="BLL.OpenService.IHSSEService"/>
<endpoint address="" binding="wsHttpBinding" bindingConfiguration="BLL.HSSEServiceBinding" name="BLL.HSSEServiceEndpoint" contract="BLL.OpenService.IHSSEService" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="BLL.HSSEServiceBehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
<serviceThrottling maxConcurrentCalls="2147483647" maxConcurrentInstances="2147483647" maxConcurrentSessions="2147483647"/>
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
<dataContractSerializer maxItemsInObjectGraph="2147483647" />
<serviceThrottling maxConcurrentCalls="2147483647" maxConcurrentInstances="2147483647" maxConcurrentSessions="2147483647" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<basicHttpBinding>
<binding name="WebService1Soap">
<security mode="Transport"/>
<security mode="Transport" />
</binding>
<binding name="WebService1Soap1"/>
<binding name="WebService1Soap1" />
</basicHttpBinding>
<customBinding>
<binding name="WebService1Soap12">
<textMessageEncoding messageVersion="Soap12"/>
<httpsTransport/>
<textMessageEncoding messageVersion="Soap12" />
<httpsTransport />
</binding>
</customBinding>
<wsHttpBinding>
<binding name="BLL.HSSEServiceBinding" closeTimeout="00:05:00" openTimeout="00:05:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="5242880000" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192000" maxArrayLength="16384000" maxBytesPerRead="4096000" maxNameTableCharCount="16384000"/>
<security mode="None"/>
<readerQuotas maxDepth="32" maxStringContentLength="8192000" maxArrayLength="16384000" maxBytesPerRead="4096000" maxNameTableCharCount="16384000" />
<security mode="None" />
</binding>
<binding name="HSSEServiceEndpoint">
<security mode="None"/>
<security mode="None" />
</binding>
</wsHttpBinding>
</bindings>
</system.serviceModel>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" /></startup></configuration>

File diff suppressed because one or more lines are too long

View File

@ -1,78 +0,0 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PointCropping.aspx.cs" Inherits="FineUIPro.Web.CQMS.WBS.Control.PointCropping" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="Panel1" runat="server" />
<f:Panel ID="Panel1" runat="server" Margin="5px" BodyPadding="5px" ShowBorder="false" ShowHeader="false" Layout="VBox" AutoScroll="true" BoxConfigAlign="Stretch">
<Items>
<f:Grid ID="Grid1" IsFluid="true" ShowBorder="true" ShowHeader="true" Title="现场控制点裁剪"
runat="server" EnableCollapse="true" DataKeyNames="ControlId,ParentId,ControlLevel" EnableTree="true"
TreeColumn="DetectionItems" DataIDField="ControlId" AllowPaging="false" DataParentIDField="ParentId" OnRowDataBound="Grid1_RowDataBound"
AllowCellEditing="false" ClicksToEdit="1" OnRowCommand="Grid1_RowCommand"
EnableMultiSelect="false">
<Toolbars>
<f:Toolbar ID="Toolbar1" runat="server">
<Items>
<f:TextBox runat="server" ID="sDetectionItems"></f:TextBox>
<f:Button ID="btnSearch" Icon="SystemSearch" ToolTip="搜索" EnablePostBack="true" runat="server" OnClick="btnSearch_Click"></f:Button>
<f:ToolbarFill runat="server"></f:ToolbarFill>
<f:Button ID="btnAdd" Icon="Add" ToolTip="新增" Text="新增" runat="server" OnClick="btnAdd_Click"></f:Button>
<f:Button ID="btnParentAdd" Icon="Add" ToolTip="新增子级别" Text="新增子级别" runat="server" OnClick="btnParentAdd_Click"></f:Button>
<f:Button ID="btnEdit" Icon="BulletEdit" ToolTip="编辑" Text="编辑" runat="server" OnClick="btnEdit_Click"></f:Button>
<f:Button ID="btnDelete" Text="删除" Icon="Delete" OnClick="btnDelete_Click" ConfirmText="删除当前选中数据和所有子节点数据?" runat="server"></f:Button>
</Items>
</f:Toolbar>
</Toolbars>
<Columns>
<f:RowNumberField />
<f:RenderField ColumnID="DetectionItems" ExpandUnusedSpace="true" Width="120px" DataField="DetectionItems" HeaderText="质量控制点检查、检测项">
</f:RenderField>
<f:RenderField ColumnID="BasedCriterion" Width="200px" DataField="BasedCriterion" HeaderText="执行依据或准则">
</f:RenderField>
<f:RenderField Width="200px" ColumnID="QualityRecordName" DataField="QualityRecordName" HeaderText="质量记录名称">
</f:RenderField>
<f:RenderField Width="200px" ColumnID="RecordNumber" DataField="RecordNumber" HeaderText="记录格式文本号">
</f:RenderField>
<f:RenderField ColumnID="ControlCode" Width="100px" DataField="ControlCode" HeaderText="编码">
</f:RenderField>
<f:LinkButtonField Width="100px" ConfirmText="删除当前选中数据和所有子节点数据?" HeaderText="操作" ConfirmTarget="Top"
CommandName="Delete" Icon="Delete" />
</Columns>
<Listeners>
<f:Listener Event="beforerowcontextmenu" Handler="onRowContextMenu" />
</Listeners>
</f:Grid>
</Items>
</f:Panel>
<f:Window ID="Window1" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Parent" EnableResize="true" runat="server" IsModal="true" OnClose="Window1_Close" CloseAction="HidePostBack"
Width="800px" Height="600px">
</f:Window>
<f:Menu ID="Menu1" runat="server">
<Items>
<f:MenuButton ID="btnMenuModify" EnablePostBack="true" runat="server" Text="修改" Icon="Pencil"
OnClick="btnMenuModify_Click">
</f:MenuButton>
<f:MenuButton ID="btnMenuParentAdd" EnablePostBack="true" runat="server" Text="新增子级别" Icon="ApplicationViewIcons"
OnClick="btnMenuParentAdd_Click">
</f:MenuButton>
</Items>
</f:Menu>
</form>
<script type="text/javascript">
var menuID = '<%= Menu1.ClientID %>';
// 返回false来阻止浏览器右键菜单
function onRowContextMenu(event, rowId) {
F(menuID).show(); //showAt(event.pageX, event.pageY);
return false;
}
</script>
</body>
</html>

View File

@ -1,209 +0,0 @@
using BLL;
using Model;
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Data;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.CQMS.WBS.Control
{
public partial class PointCropping : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DataBrid();
}
}
#region
/// <summary>
/// 数据绑定
/// </summary>
public void DataBrid()
{
string strSql = @"select a.ControlId,a.ProjectId,a.ParentId,a.ControlCode,a.ControlLevel,a.PlanId,a.PlanTypeId,a.SubItemsId,a.DetectionItems,a.BasedCriterion,a.QualityRecordName,a.RecordNumber,a.Subcontractors,a.OperateTime,a.Sort from Control_PointCropping as a order by a.ControlLevel,a.Sort asc";
List<SqlParameter> listStr = new List<SqlParameter>();
listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));
if (!string.IsNullOrEmpty(sDetectionItems.Text.Trim()))
{
strSql += " and a.DetectionItems like '%@DetectionItems%'";
listStr.Add(new SqlParameter("@DetectionItems", this.sDetectionItems.Text.Trim()));
}
SqlParameter[] parameter = listStr.ToArray();
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
Grid1.DataSource = tb;
Grid1.DataBind();
}
/// <summary>
/// 行点击 事件
/// </summary>
protected void Grid1_RowCommand(object sender, GridCommandEventArgs e)
{
if (e.CommandName == "Delete")
{
string rowID = e.RowID;
DeleteRowByIDInternal(rowID);
DataBrid();
ShowNotify("删除成功!");
}
}
/// <summary>
/// 行加载事件
/// </summary>
protected void Grid1_RowDataBound(object sender, GridRowEventArgs e)
{
int controlLevel = Grid1.DataKeys[e.RowIndex][2] != null ? int.Parse(Grid1.DataKeys[e.RowIndex][2].ToString()) : 2;
if (controlLevel < 2)
{
e.TreeNodeExpanded = true;
}
}
#endregion
#region
/// <summary>
/// 搜索
/// </summary>
protected void btnSearch_Click(object sender, EventArgs e)
{
DataBrid();
}
/// <summary>
/// 删除
/// </summary>
protected void btnDelete_Click(object sender, EventArgs e)
{
if (Grid1.SelectedRowIndexArray.Length == 0)
{
ShowNotify("至少选择一条数据!");
return;
}
foreach (int rowIndex in Grid1.SelectedRowIndexArray)
{
string rowID = Grid1.DataKeys[rowIndex][0].ToString();
DeleteRowByIDInternal(rowID);
}
DataBrid();
ShowNotify("删除成功!");
}
/// <summary>
/// 新增
/// </summary>
protected void btnAdd_Click(object sender, EventArgs e)
{
PageContext.RegisterStartupScript(Window1.GetShowReference($"PointCroppingEdit.aspx?ControlId=&ParentId=", "新增"));
}
/// <summary>
/// 添加子级
/// </summary>
protected void btnParentAdd_Click(object sender, EventArgs e)
{
if (Grid1.SelectedRowIndexArray.Length == 0)
{
ShowNotify("请选择一条数据!", MessageBoxIcon.Warning);
return;
}
var rowIndex = Grid1.SelectedRowIndex;
var rowId = Grid1.DataKeys[rowIndex][0].ToString();
var controlLevel = Grid1.DataKeys[rowIndex][2] != null ? Convert.ToInt32(Grid1.DataKeys[rowIndex][2]) : 1;
if (controlLevel > 2)
{
ShowNotify("最小节点无子节点!", MessageBoxIcon.Warning);
return;
}
PageContext.RegisterStartupScript(Window1.GetShowReference($"PointCroppingEdit.aspx?ControlId=&ParentId={rowId}", "添加子级"));
}
/// <summary>
/// 编辑
/// </summary>
protected void btnEdit_Click(object sender, EventArgs e)
{
if (Grid1.SelectedRowIndexArray.Length == 0)
{
ShowNotify("请选择一条数据!", MessageBoxIcon.Warning);
return;
}
var rowIndex = Grid1.SelectedRowIndex;
var rowId = Grid1.DataKeys[rowIndex][0].ToString();
var parentId = Grid1.DataKeys[rowIndex][1] != null ? Grid1.DataKeys[rowIndex][1].ToString() : string.Empty;
PageContext.RegisterStartupScript(Window1.GetShowReference($"PointCroppingEdit.aspx?ControlId={rowId}&ParentId={parentId}", "编辑"));
}
/// <summary>
/// 关闭
/// </summary>
protected void Window1_Close(object sender, WindowCloseEventArgs e)
{
DataBrid();
}
/// <summary>
/// 右击修改
/// </summary>
protected void btnMenuModify_Click(object sender, EventArgs e)
{
btnEdit_Click(sender, e);
}
/// <summary>
/// 右击新增子级别
/// </summary>
protected void btnMenuParentAdd_Click(object sender, EventArgs e)
{
btnParentAdd_Click(sender, e);
}
#endregion
#region
/// <summary>
/// 根据行ID来删除行数据
/// </summary>
private void DeleteRowByIDInternal(string rowID)
{
var model = Funs.DB.Control_PointCropping.FirstOrDefault(p => p.ControlId == rowID);
if (model != null)
{
Funs.DB.Control_PointCropping.DeleteOnSubmit(model);
GetDevice(rowID);
}
Funs.DB.SubmitChanges();
}
/// <summary>
/// 删除
/// </summary>
private void GetDevice(string id)
{
var model = Funs.DB.Control_PointCropping.FirstOrDefault(p => p.ParentId == id);
if (model != null)
{
Funs.DB.Control_PointCropping.DeleteOnSubmit(model);
GetDevice(model.ControlId);
}
}
#endregion
}
}

View File

@ -1,152 +0,0 @@
//------------------------------------------------------------------------------
// <自动生成>
// 此代码由工具生成。
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// </自动生成>
//------------------------------------------------------------------------------
namespace FineUIPro.Web.CQMS.WBS.Control
{
public partial class PointCropping
{
/// <summary>
/// form1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// PageManager1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.PageManager PageManager1;
/// <summary>
/// Panel1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Panel Panel1;
/// <summary>
/// Grid1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Grid Grid1;
/// <summary>
/// Toolbar1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Toolbar Toolbar1;
/// <summary>
/// sDetectionItems 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox sDetectionItems;
/// <summary>
/// btnSearch 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnSearch;
/// <summary>
/// btnAdd 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnAdd;
/// <summary>
/// btnParentAdd 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnParentAdd;
/// <summary>
/// btnEdit 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnEdit;
/// <summary>
/// btnDelete 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnDelete;
/// <summary>
/// Window1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Window Window1;
/// <summary>
/// Menu1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Menu Menu1;
/// <summary>
/// btnMenuModify 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.MenuButton btnMenuModify;
/// <summary>
/// btnMenuParentAdd 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.MenuButton btnMenuParentAdd;
}
}

View File

@ -1,103 +0,0 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PointCroppingEdit.aspx.cs" Inherits="FineUIPro.Web.CQMS.WBS.Control.PointCroppingEdit" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>编辑</title>
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
<Toolbars>
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
<Items>
<f:ToolbarFill ID="ToolbarFill1" runat="server">
</f:ToolbarFill>
<f:Button ID="btnSave" OnClick="btnSave_Click" Icon="SystemSave" runat="server" ToolTip="保存" ValidateForms="SimpleForm1">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
<Rows>
<f:FormRow>
<Items>
<f:ContentPanel ID="ContentPanel2" ShowBorder="true"
BodyPadding="10px" EnableCollapse="true" ShowHeader="false" AutoScroll="true"
runat="server">
<f:Form ID="Form2" ShowBorder="false" ShowHeader="false" AutoScroll="true"
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
<Rows>
<f:FormRow runat="server" ID="one" Hidden="true">
<Items>
<f:Label ID="lblOneDetectionItems" runat="server" Label="一级质量控制点检查、检测项" LabelAlign="Right" LabelWidth="200px">
</f:Label>
</Items>
</f:FormRow>
<f:FormRow runat="server" ID="two" Hidden="true">
<Items>
<f:Label ID="lblTwoDetectionItems" runat="server" Label="二级质量控制点检查、检测项" LabelAlign="Right" LabelWidth="200px">
</f:Label>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtDetectionItems" runat="server" Label="质量控制点检查、检测项" LabelAlign="Right" Required="true" LabelWidth="200px">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtBasedCriterion" runat="server" Label="执行依据或准则" LabelAlign="Right" LabelWidth="200px">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtQualityRecordName" runat="server" Label="质量记录名称" LabelAlign="Right" LabelWidth="200px">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtRecordNumber" runat="server" Label="记录格式文本号" LabelAlign="Right" LabelWidth="200px">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtPartition" runat="server" Label="等级划分" LabelAlign="Right" LabelWidth="200px">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtControlCode" runat="server" Label="序号" LabelAlign="Right" LabelWidth="200px">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextArea runat="server" ID="txtRemark" Label="备注" LabelAlign="Right" LabelWidth="200px"></f:TextArea>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:NumberBox runat="server" Label="排序" ID="txtSort" LabelAlign="Right" Required="true" LabelWidth="150"></f:NumberBox>
</Items>
</f:FormRow>
</Rows>
</f:Form>
</f:ContentPanel>
</Items>
</f:FormRow>
</Rows>
</f:Form>
</form>
</body>
</html>

View File

@ -1,217 +0,0 @@
using BLL;
using Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.CQMS.WBS.Control
{
public partial class PointCroppingEdit : PageBase
{
/// <summary>
/// 上级主键
/// </summary>
public string ParentId
{
get { return (string)ViewState["ParentId"]; }
set { ViewState["ParentId"] = value; }
}
/// <summary>
/// 主键
/// </summary>
public string ControlId
{
get { return (string)ViewState["ControlId"]; }
set { ViewState["ControlId"] = value; }
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.ControlId = Request.Params["ControlId"];
this.ParentId = Request.Params["ParentId"];
//绑定数据
PageIn();
}
}
/// <summary>
/// 绑定数据
/// </summary>
/// <param name="runId">主键</param>
/// <param name="parentId">上级主键</param>
public void PageIn()
{
var num = 0;
if (!string.IsNullOrWhiteSpace(this.ParentId))
{
var parenLs = GetAllCropping(this.ParentId);
if (parenLs.Count > 0)
{
var itemModel = parenLs.FirstOrDefault(p => p.ControlId == this.ParentId);
if (itemModel != null)
{
if (itemModel.ControlLevel == 1)
{
one.Hidden = false;
var oneModel = parenLs.FirstOrDefault(p => p.ControlLevel == 1);
if (oneModel != null)
{
lblOneDetectionItems.Text = oneModel.DetectionItems;
if (string.IsNullOrWhiteSpace(this.ControlId))
{
num = Funs.DB.Control_PointCropping.Count() + 1;
txtSort.Text = num.ToString();
}
}
}
else if (itemModel.ControlLevel == 2)
{
one.Hidden = false;
two.Hidden = false;
var oneModel = parenLs.FirstOrDefault(p => p.ControlLevel == 1);
if (oneModel != null)
{
lblOneDetectionItems.Text = oneModel.DetectionItems;
}
var twoModel = parenLs.FirstOrDefault(p => p.ControlLevel == 2);
if (twoModel != null)
{
lblTwoDetectionItems.Text = twoModel.DetectionItems;
}
if (string.IsNullOrWhiteSpace(this.ControlId))
{
num = Funs.DB.Control_PointCropping.Count() + 1;
txtSort.Text = num.ToString();
}
}
}
}
}
else
{
if (string.IsNullOrWhiteSpace(this.ControlId))
{
num = Funs.DB.Control_PointCropping.Count() + 1;
txtSort.Text = num.ToString();
}
}
if (!string.IsNullOrWhiteSpace(this.ControlId))
{
var controModel = Funs.DB.Control_PointCropping.FirstOrDefault(p => p.ControlId == this.ControlId);
if (controModel != null)
{
txtRemark.Text = controModel.Remark;
txtSort.Text = controModel.Sort.ToString();
txtDetectionItems.Text = controModel.DetectionItems;
txtBasedCriterion.Text = controModel.BasedCriterion;
txtQualityRecordName.Text = controModel.QualityRecordName;
txtRecordNumber.Text = controModel.RecordNumber;
txtPartition.Text = controModel.Partition;
txtControlCode.Text = controModel.ControlCode;
txtRemark.Text = controModel.Remark;
}
}
}
/// <summary>
/// 保存
/// </summary>
protected void btnSave_Click(object sender, EventArgs e)
{
var model = new Control_PointCropping();
model.ControlId = Guid.NewGuid().ToString();
var oneControlId = string.Empty;
var twoControlId = string.Empty;
if (!string.IsNullOrWhiteSpace(this.ControlId))
{
model = Funs.DB.Control_PointCropping.FirstOrDefault(p => p.ControlId == this.ControlId);
}
if (model == null)
{
ShowNotify("传递参数错误!", MessageBoxIcon.Error);
return;
}
//model.ProjectId = CurrUser.LoginProjectId;
if (!string.IsNullOrWhiteSpace(this.ParentId))
{
var parenLs = GetAllCropping(this.ParentId);
if (parenLs.Count > 0)
{
var oneModel = parenLs.FirstOrDefault(p => p.ControlLevel == 1);
if (oneModel != null)
{
model.PlanId = oneModel.ControlId;
model.ParentId = oneModel.ControlId;
model.PlanTypeId = model.ControlId;
model.ControlLevel = 2;
}
var twoModel = parenLs.FirstOrDefault(p => p.ControlLevel == 2);
if (twoModel != null)
{
model.PlanId = twoModel.PlanId;
model.ParentId = twoModel.ControlId;
model.PlanTypeId = twoModel.ControlId;
model.SubItemsId = model.ControlId;
model.ControlLevel = 3;
}
}
}
else
{
model.ControlLevel = 1;
}
model.AddUser = this.CurrUser.UserId;
model.OperateTime = DateTime.Now;
model.Sort = !string.IsNullOrEmpty(txtSort.Text) ? int.Parse(txtSort.Text) : Funs.DB.Control_PointCropping.Count() + 1;
model.DetectionItems = txtDetectionItems.Text;
model.BasedCriterion = txtBasedCriterion.Text;
model.QualityRecordName = txtQualityRecordName.Text;
model.RecordNumber = txtRecordNumber.Text;
model.Partition = txtPartition.Text;
model.ControlCode = txtControlCode.Text;
model.Remark = txtRemark.Text;
if (string.IsNullOrWhiteSpace(this.ControlId)) Funs.DB.Control_PointCropping.InsertOnSubmit(model);
Funs.DB.SubmitChanges();
ShowNotify("保存成功!", MessageBoxIcon.Success);
PageContext.RegisterStartupScript(ActiveWindow.GetHideRefreshReference());
}
#region
/// <summary>
/// 根据主键获取所有节点
/// </summary>
/// <returns></returns>
public List<Control_PointCropping> GetAllCropping(string parentId)
{
var result = new List<Control_PointCropping>();
var ids = new List<string>();
var itemCropping = Funs.DB.Control_PointCropping.FirstOrDefault(p => p.ControlId == parentId);
if (itemCropping != null)
{
ids.Add(itemCropping.ControlId);
if (!string.IsNullOrWhiteSpace(itemCropping.PlanId))
{
ids.Add(itemCropping.PlanId);
}
if (!string.IsNullOrWhiteSpace(itemCropping.PlanTypeId))
{
ids.Add(itemCropping.PlanTypeId);
}
result = Funs.DB.Control_PointCropping.Where(p => ids.Contains(p.ControlId)).ToList();
}
return result;
}
#endregion
}
}

View File

@ -1,197 +0,0 @@
//------------------------------------------------------------------------------
// <自动生成>
// 此代码由工具生成。
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// </自动生成>
//------------------------------------------------------------------------------
namespace FineUIPro.Web.CQMS.WBS.Control
{
public partial class PointCroppingEdit
{
/// <summary>
/// form1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// PageManager1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.PageManager PageManager1;
/// <summary>
/// SimpleForm1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Form SimpleForm1;
/// <summary>
/// Toolbar1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Toolbar Toolbar1;
/// <summary>
/// ToolbarFill1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.ToolbarFill ToolbarFill1;
/// <summary>
/// btnSave 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnSave;
/// <summary>
/// ContentPanel2 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.ContentPanel ContentPanel2;
/// <summary>
/// Form2 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Form Form2;
/// <summary>
/// one 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.FormRow one;
/// <summary>
/// lblOneDetectionItems 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Label lblOneDetectionItems;
/// <summary>
/// two 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.FormRow two;
/// <summary>
/// lblTwoDetectionItems 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Label lblTwoDetectionItems;
/// <summary>
/// txtDetectionItems 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtDetectionItems;
/// <summary>
/// txtBasedCriterion 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtBasedCriterion;
/// <summary>
/// txtQualityRecordName 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtQualityRecordName;
/// <summary>
/// txtRecordNumber 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtRecordNumber;
/// <summary>
/// txtPartition 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtPartition;
/// <summary>
/// txtControlCode 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtControlCode;
/// <summary>
/// txtRemark 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextArea txtRemark;
/// <summary>
/// txtSort 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.NumberBox txtSort;
}
}

View File

@ -1,42 +0,0 @@
错误信息开始=====>
错误类型:HttpException
错误信息:文件“/CQMS/WBS/Control/PointCroppingEdit.aspx”不存在。
错误堆栈:
在 System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath)
在 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
在 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
在 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound)
在 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp)
在 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
在 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path)
在 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
出错时间:05/08/2024 01:15:14
出错文件:http://localhost:8579/CQMS/WBS/Control/PointCroppingEdit.aspx?ControlId=&ParentId=
IP地址:::1
出错时间:05/08/2024 01:15:14
错误信息开始=====>
错误类型:HttpException
错误信息:文件“/CQMS/WBS/Control/PointCroppingEdit.aspx”不存在。
错误堆栈:
在 System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath)
在 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
在 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
在 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound)
在 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp)
在 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
在 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path)
在 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
出错时间:05/08/2024 01:15:20
出错文件:http://localhost:8579/CQMS/WBS/Control/PointCroppingEdit.aspx?ControlId=&ParentId=A9CBACE9-59C6-40CF-B587-EB1367A16137
IP地址:::1
出错时间:05/08/2024 01:15:20

View File

@ -12,7 +12,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>FineUIPro.Web</RootNamespace>
<AssemblyName>FineUIPro.Web</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<UseIISExpress>true</UseIISExpress>
<SccProjectName>
</SccProjectName>
@ -581,8 +581,6 @@
<Content Include="CQMS\WBS\ControlItemInitSet.aspx" />
<Content Include="CQMS\WBS\ControlItemProjectEdit.aspx" />
<Content Include="CQMS\WBS\ControlPoint.aspx" />
<Content Include="CQMS\WBS\Control\PointCropping.aspx" />
<Content Include="CQMS\WBS\Control\PointCroppingEdit.aspx" />
<Content Include="CQMS\WBS\EditBreakdown.aspx" />
<Content Include="CQMS\WBS\EditBreakdownProject.aspx" />
<Content Include="CQMS\WBS\EditDivision.aspx" />
@ -8470,20 +8468,6 @@
<Compile Include="CQMS\WBS\ControlPoint.aspx.designer.cs">
<DependentUpon>ControlPoint.aspx</DependentUpon>
</Compile>
<Compile Include="CQMS\WBS\Control\PointCropping.aspx.cs">
<DependentUpon>PointCropping.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="CQMS\WBS\Control\PointCropping.aspx.designer.cs">
<DependentUpon>PointCropping.aspx</DependentUpon>
</Compile>
<Compile Include="CQMS\WBS\Control\PointCroppingEdit.aspx.cs">
<DependentUpon>PointCroppingEdit.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="CQMS\WBS\Control\PointCroppingEdit.aspx.designer.cs">
<DependentUpon>PointCroppingEdit.aspx</DependentUpon>
</Compile>
<Compile Include="CQMS\WBS\EditBreakdown.aspx.cs">
<DependentUpon>EditBreakdown.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
@ -18815,7 +18799,7 @@
<WCFMetadata Include="Service References\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v17.0\WebApplications\Microsoft.WebApplication.targets" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">

View File

@ -16,9 +16,8 @@
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<StartPageUrl>
</StartPageUrl>
<StartAction>CurrentPage</StartAction>
<StartPageUrl>Login.aspx</StartPageUrl>
<StartAction>SpecificPage</StartAction>
<AspNetDebugging>True</AspNetDebugging>
<SilverlightDebugging>False</SilverlightDebugging>
<NativeDebugging>False</NativeDebugging>

View File

@ -1,9 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Tree>
<TreeNode id="3B322232-38A1-4291-9832-CD4A01C2A975" Text="WBS数据" NavigateUrl="">
<TreeNode id="1025D812-2325-4FE9-A1E9-D53F2CAACDC6" Text="现场控制点裁剪(新)" NavigateUrl="CQMS/WBS/Control/PointCropping.aspx">
<TreeNode id="5AA08233-9E04-4808-AC43-DD411C5F9D31" Text="现场控制点裁剪" NavigateUrl="CQMS/WBS/ProjectControlPoint.aspx">
</TreeNode>
<TreeNode id="5AA08233-9E04-4808-AC43-DD411C5F9D31" Text="现场控制点裁剪" NavigateUrl="CQMS/WBS/ProjectControlPoint.aspx"></TreeNode>
<TreeNode id="88F115C3-D193-4455-8E8D-76F2EAF56291" Text="现场控制点资料柜" NavigateUrl="CQMS/WBS/ProjectControlPointFile.aspx"></TreeNode>
</TreeNode>
<TreeNode id="4a0e62cb-ee50-4a14-80b7-377602e9902c" Text="综合管理" NavigateUrl=""><TreeNode id="6c2c1e5e-1812-4e1c-a683-7125518e28c7" Text="设备材料报验" NavigateUrl="CQMS/Comprehensive/InspectionEquipment.aspx"></TreeNode>

View File

@ -72,7 +72,6 @@
<TreeNode id="AF2B0CAD-DE15-4F15-A5EE-C8FB558D00C8" Text="检查项分组信息" NavigateUrl="TestRun/TestRunManage/TemplateItemGroup.aspx"></TreeNode>
<TreeNode id="545AACE6-34BE-4BAA-A495-B73198F1BDE2" Text="检查表模板" NavigateUrl="TestRun/TestRunManage/InspectTemplate.aspx"></TreeNode>
<TreeNode id="086DBD12-5649-4330-807A-44ABB257495F" Text="联动试车管理" NavigateUrl="TestRun/TestRunManage/SubInspectTerm.aspx"></TreeNode>
<TreeNode id="A593B611-82C1-40D8-BB6A-DD025DB62F8C" Text="联动试车确认" NavigateUrl="TestRun/TestRunManage/SubWorkInspect.aspx"></TreeNode>
<TreeNode id="4041089F-5CC2-4070-9556-7DAB83CF6292" Text="检查表尾项管理" NavigateUrl="TestRun/TestRunManage/InspectTailTermList.aspx"></TreeNode>
<TreeNode id="A593B611-82C1-40D8-BB6A-DD025DB62F8C" Text="联动试车确认" NavigateUrl="TestRun/TestRunManage/SubWorkInspect.aspx"></TreeNode>
<TreeNode id="2232ED9A-EA3C-4CB5-A53C-D96D3F5E0527" Text="尾项处理" NavigateUrl="TestRun/TestRunManage/TailTermHandleList.aspx"></TreeNode>

File diff suppressed because it is too large Load Diff

View File

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

View File

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

View File

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>
</configuration>

File diff suppressed because one or more lines are too long

View File

@ -46,7 +46,7 @@
</system.Web>
-->
<system.web>
<compilation debug="true" targetFramework="4.8"/>
<compilation debug="true" targetFramework="4.6.1"/>
<httpRuntime/>
<pages controlRenderingCompatibilityVersion="4.0"/>
</system.web>

View File

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

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
<UseIISExpress>true</UseIISExpress>
<Use64BitIISExpress />
<IISExpressSSLPort />
@ -39,7 +39,7 @@
<StartWorkingDirectory>
</StartWorkingDirectory>
<EnableENC>True</EnableENC>
<AlwaysStartWebServerOnDebug>False</AlwaysStartWebServerOnDebug>
<AlwaysStartWebServerOnDebug>True</AlwaysStartWebServerOnDebug>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>