diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-01-23 14:34:55 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-01-23 14:34:55 +0200 |
| commit | 60a2692fd4acadfdf8724bb198e38a2689a866fd (patch) | |
| tree | e0924aa7d75c61875419dca7c31b338addd8661e /Software/Visual_Studio/Utilities/Tango.PMRGenerator.CLI | |
| parent | 73433f297a3361511ba8ff99e2ff852e376987c5 (diff) | |
| download | Tango-60a2692fd4acadfdf8724bb198e38a2689a866fd.tar.gz Tango-60a2692fd4acadfdf8724bb198e38a2689a866fd.zip | |
Added new staple spun process parameters to database, BL and PMR.
Implemented process params index via db.
Added new process params in MS.
Added JOB_RUN => Upload time, Heating Time, IsGradient...
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.PMRGenerator.CLI')
| -rw-r--r-- | Software/Visual_Studio/Utilities/Tango.PMRGenerator.CLI/Program.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.PMRGenerator.CLI/Program.cs b/Software/Visual_Studio/Utilities/Tango.PMRGenerator.CLI/Program.cs index 1b33e13d2..c4c16b416 100644 --- a/Software/Visual_Studio/Utilities/Tango.PMRGenerator.CLI/Program.cs +++ b/Software/Visual_Studio/Utilities/Tango.PMRGenerator.CLI/Program.cs @@ -756,11 +756,7 @@ namespace Tango.PMRGenerator.CLI } catch { } - if (rangeDescription != null && rangeDescription.Description != null) - { - return rangeDescription.Description.ToLines().Take(1).Concat(rangeDescription.Description.ToLines().Skip(1).Select(x => "//" + x)).Join(Environment.NewLine); - } - else + if (rangeDescription == null) { return db_des.ColumnDescription.ToLines().Take(1).Concat(db_des.ColumnDescription.ToLines().Skip(1).Select(x => "//" + x)).Join(Environment.NewLine); } |
