Compare commits

...
7 Commits
Author SHA1 Message Date
jjenko 298dfaeece Merge pull request 'F2026-021 Fixed the inheritance of the new step type “Step with Section Num” to allow RNO and sub items. Removed the period between the section number and high level step number.' (#811) from F2026-021_Ginna_Appendex_Num_Step_Prefix into Development
Format only changes. Ready for testing.
2026-08-31 10:10:25 -04:00
jjenko ae94400fff F2026-021 Fixed the inheritance of the new step type “Step with Section Num” to allow RNO and sub items. Removed the period between the section number and high level step number. 2026-08-31 10:08:12 -04:00
mschill 8a33bcafe8 Merge pull request 'F2026-021 Ginna EOP/AOP Format, added a high level step type called “Step with Section Num”' (#810) from F2026-021_Ginna_Appendex_Num_Step_Prefix into Development
Looks Good. Ready for QA.
2026-08-28 14:35:58 -04:00
jjenko dcf9c03738 F2026-021 Ginna EOP/AOP Format, added a high level step type called “Step with Section Num” 2026-08-28 14:33:17 -04:00
jjenko 23f6a0febc Merge pull request 'F2026-022 In the Farley formats, adjusted the title box on the procedure pages to make room for large (long) procedure titles.' (#809) from F2026-022_Farley_Title_Box into Development
Format only changes.  Go for testing phase
2026-08-27 14:03:20 -04:00
jjenko e4c5ddad6d F2026-022 In the Farley formats, adjusted the title box on the procedure pages to make room for large (long) procedure titles. 2026-08-27 14:05:21 -04:00
jjenko 30e7c03ca6 Merge pull request 'Moved to Old Repo' (#808) from old_repo1 into Development
Developer showed PROMS and Referenced Objects build without error.
No testing needed for this update.
2026-08-26 10:29:52 -04:00
12 changed files with 4 additions and 1 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -5553,7 +5553,10 @@ namespace VEPROMS.CSLA.Library
// Before checking for anything, if the DisplayNumber starts with 'ATTACHMENT ', don't use that in the Section
// prefix for the tabstring.
// F2023-112 - added flag to use entire section number in the step tab - Vogtle 3&4 Background format (VEGPBckStp)
string attNum = (ActiveSection.DisplayNumber.ToUpper().StartsWith("ATTACHMENT ") && !FormatStepData.TabData.UseEntireSectionNum) ? ActiveSection.DisplayNumber.Substring(11) : ActiveSection.DisplayNumber;
// F2026-021 - made the parsing of the section number generic instead of only parsing if the section number properties
// value started with the word "Attachment ". We now look for the first space to determine the section number/letter
int numidx = ActiveSection.DisplayNumber.IndexOf(" ");
string attNum = (numidx > -1 && (ActiveSection.DisplayNumber.Length > numidx + 1) && !FormatStepData.TabData.UseEntireSectionNum) ? ActiveSection.DisplayNumber.Substring(numidx + 1) : ActiveSection.DisplayNumber;
Match m = Regex.Match(attNum, @"[a-zA-Z]"); // for alpha, use non-touched displaynumber
int indx = -1;
if (m.Success)