diff --git a/PROMS/DataLoader/Steps.cs b/PROMS/DataLoader/Steps.cs index 21bf44ef..828626ce 100644 --- a/PROMS/DataLoader/Steps.cs +++ b/PROMS/DataLoader/Steps.cs @@ -89,7 +89,7 @@ namespace DataLoader stptext = MigrateRos(cn, stptext, seqRoTran, content, docver, conv_caret, ref rotype); stptext = stptext.TrimEnd(" ".ToCharArray()); // if this is a table RO, then save a flag in the config - isROTable = (rotype == 2); + isROTable = (rotype == 2 || rotype == 3); } tokrt = Textm.IndexOf('\x3a6'); if (tokrt > -1) @@ -117,6 +117,8 @@ namespace DataLoader string fixStpText = ""; if (IsATable(content.Type)) { + //if (ProcNumber == "EOP-ES-1.2") + // Console.WriteLine("here"); bool hasBorder = !WithoutBorder(content.Type); fixStpText = ConvertTableToGrid(stptext, content, fmt, isROTable, hasBorder ? GridLinePattern.Single : GridLinePattern.None ); int? typ = ConvertTableType(content, fmt);