Skip to content

Commit

Permalink
Merge bdea20c into f4a225f
Browse files Browse the repository at this point in the history
  • Loading branch information
defectiveAi authored Oct 2, 2024
2 parents f4a225f + bdea20c commit 5747457
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,12 @@ public SettlementReportTotalMonthlyAmountRowMap(SettlementReportRequestedByActor
.Name("CHARGEID")
.Index(10);

if (actorInfo.MarketRole is not MarketRole.SystemOperator)
{
Map(r => r.ChargeOwnerId)
.Name("CHARGEOWNER")
.Index(11);
}
Map(r => r.ChargeOwnerId)
.Name("CHARGEOWNER")
.Index(11)
.Convert(row => actorInfo.MarketRole is not MarketRole.SystemOperator
? row.Value.ChargeOwnerId
: string.Empty);
}
}
}

0 comments on commit 5747457

Please sign in to comment.