From 116c61eaf834fc7d10a852594c0452fe7bba4b99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Jensen?= Date: Mon, 3 Sep 2018 12:57:51 +0200 Subject: [PATCH] #3279 Completion export fracture header. Add table header --- .../RicWellPathFractureTextReportFeatureImpl.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ApplicationCode/Commands/CompletionExportCommands/RicWellPathFractureTextReportFeatureImpl.cpp b/ApplicationCode/Commands/CompletionExportCommands/RicWellPathFractureTextReportFeatureImpl.cpp index 50e4ab341d..627a3f94c1 100644 --- a/ApplicationCode/Commands/CompletionExportCommands/RicWellPathFractureTextReportFeatureImpl.cpp +++ b/ApplicationCode/Commands/CompletionExportCommands/RicWellPathFractureTextReportFeatureImpl.cpp @@ -167,6 +167,9 @@ QString RicWellPathFractureTextReportFeatureImpl::wellPathFractureReport( } { + textStream << lineStart << " Maximum number of connections per well\n"; + textStream << lineStart << "\n"; + QString tableText = createConnectionsPerWellText(wellPathFractureReportItems); textStream << tableText; textStream << lineStart << "\n"; @@ -667,7 +670,7 @@ QString RicWellPathFractureTextReportFeatureImpl::createConnectionsPerWellText(c std::vector header = { RifEclipseOutputTableColumn("Well"), - floatNumberColumn("#con") + floatNumberColumn("ConnCount") }; formatter.header(header);