Skip to content

Commit

Permalink
a merge conflict I'll never recover from
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljordan-caci committed Jan 22, 2025
1 parent f4b0189 commit c20bc41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func (p intlShippingAndLinehaulPricer) Price(appCtx appcontext.AppContext, contr
return 0, nil, fmt.Errorf("could not find contract year with contract ID: %s and date: %s: %w", contract.ID, referenceDate, err)
}

basePrice := float64(perUnitCents)
basePrice := float64(perUnitCents) / 100
escalatedPrice := basePrice * contractYear.EscalationCompounded
escalatedPrice = math.Round(escalatedPrice*100) / 100
totalEscalatedPrice := escalatedPrice * weight.ToCWTFloat64()
Expand Down

0 comments on commit c20bc41

Please sign in to comment.