#3279 Completion export fracture header. Add table header

This commit is contained in:
Bjørn Erik Jensen 2018-09-03 12:57:51 +02:00
parent 12e252209a
commit 116c61eaf8

View File

@ -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<RifEclipseOutputTableColumn> header = {
RifEclipseOutputTableColumn("Well"),
floatNumberColumn("#con")
floatNumberColumn("ConnCount")
};
formatter.header(header);