This commit is contained in:
@@ -2632,7 +2632,11 @@ namespace VEPROMS.CSLA.Library
|
||||
private string AlphabeticalNumbering(int number)
|
||||
{
|
||||
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));
|
||||
return retval;
|
||||
}
|
||||
|
Reference in New Issue
Block a user