#2998 Fix order of headings in export of WPMULTL

This commit is contained in:
Magne Sjaastad 2018-06-19 13:58:27 +02:00
parent d13a52a8b4
commit 16725b2376

View File

@ -806,13 +806,14 @@ void RicWellPathExportCompletionDataFeatureImpl::exportWpimultTableUsingFormatte
} }
formatter.add(completion.wellName()); formatter.add(completion.wellName());
formatter.add(completion.wpimult());
if (!gridName.isEmpty()) if (!gridName.isEmpty())
{ {
formatter.add(gridName); formatter.add(gridName);
} }
formatter.add(completion.wpimult());
formatter.addZeroBasedCellIndex(completion.completionDataGridCell().localCellIndexI()) formatter.addZeroBasedCellIndex(completion.completionDataGridCell().localCellIndexI())
.addZeroBasedCellIndex(completion.completionDataGridCell().localCellIndexJ()) .addZeroBasedCellIndex(completion.completionDataGridCell().localCellIndexJ())
.addZeroBasedCellIndex(completion.completionDataGridCell().localCellIndexK()); .addZeroBasedCellIndex(completion.completionDataGridCell().localCellIndexK());