This commit is contained in:
Kathy Ruffing 2013-01-23 14:09:49 +00:00
parent feaa8b0d2a
commit 58a3e79f3b
4 changed files with 5 additions and 1 deletions

View File

@ -2632,7 +2632,11 @@ namespace VEPROMS.CSLA.Library
private string AlphabeticalNumbering(int number) private string AlphabeticalNumbering(int number)
{ {
string retval = string.Empty; string retval = string.Empty;
if (number > 26) retval += Letter((number - 1) / 26); // originally the code would do double alpha as 'aa', 'ab', 'ac'. This was changed to do 'aa',
// 'bb', 'cc'. The Westinghouse work required this and 16bit was tested and it worked the
// same way as the Westinghouse requirement. The original code to do 'aa', 'ab' was left here,
// commented out, in case a future plant needs it and then should tie it to a format flag.
if (number > 26) retval += Letter(1 + ((number - 1) % 26)); // Letter((number - 1) / 26);
retval += Letter(1 + ((number - 1) % 26)); retval += Letter(1 + ((number - 1) % 26));
return retval; return retval;
} }

Binary file not shown.

Binary file not shown.

Binary file not shown.