File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -417,8 +417,8 @@ LoanSet::doApply()
417417 JLOG (j_.warn ())
418418 << field.f ->getName () << " (" << *value
419419 << " ) has too much precision. Total loan value is "
420- << properties.loanState .valueOutstanding << " with a scale of "
421- << properties.loanScale ;
420+ << properties.loanState .valueOutstanding
421+ << " with a scale of " << properties.loanScale ;
422422 return tecPRECISION_LOSS;
423423 }
424424 }
@@ -592,7 +592,8 @@ LoanSet::doApply()
592592 loan->at (sfPrincipalOutstanding) = principalRequested;
593593 loan->at (sfPeriodicPayment) = properties.periodicPayment ;
594594 loan->at (sfTotalValueOutstanding) = properties.loanState .valueOutstanding ;
595- loan->at (sfManagementFeeOutstanding) = properties.loanState .managementFeeDue ;
595+ loan->at (sfManagementFeeOutstanding) =
596+ properties.loanState .managementFeeDue ;
596597 loan->at (sfPreviousPaymentDate) = 0 ;
597598 loan->at (sfNextPaymentDueDate) = startDate + paymentInterval;
598599 loan->at (sfPaymentRemaining) = paymentTotal;
You can’t perform that action at this time.
0 commit comments