Added procedure set rev property to docversion properties dialog box

This commit is contained in:
Rich 2014-01-08 20:12:06 +00:00
parent 4f9a67464b
commit 1b09d64a7f
3 changed files with 1851 additions and 1799 deletions

File diff suppressed because it is too large Load Diff

View File

@ -343,6 +343,7 @@ namespace VEPROMS
}
ppTxtBxPDFLoc.TextChanged += new EventHandler(ppTxtBxPDFLoc_TextChanged);
//end add new applicability stuff
lblProcSetRev.Visible = ppRTxtProcSetRev.Visible = _DocVersionConfig.MyDocVersion.MyFormat.PlantFormat.FormatData.SectData.StepSectionData.StepSectionPrintData.UseXtraRevNumber;
_Initializing = false;
}
// The following code was added to fix Bug B2013-117

View File

@ -107,6 +107,21 @@ namespace VEPROMS.CSLA.Library
set { if (_DocVersion != null) _DocVersion.Name = value; }
}
[Category("General")]
[DisplayName("Procedure Set Revision")]
[Description("Westinghouse Owners Group Revision")]
public string ProcedureSetRev
{
get
{
return _Xp["ProcedureSet", "Revision"];
}
set
{
_Xp["ProcedureSet", "Revision"] = value;
OnPropertyChanged("ProcedureSet_Revision");
}
}
[Category("General")]
//PROPGRID: Hide Title
[Browsable(false)]
[DisplayName("Title")]