This commit is contained in:
parent
74f1e29c32
commit
ddcb0f2619
1 changed files with 5 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
|||
package ru.spcex.clearing.session.state.action;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.math.RoundingMode;
|
||||
import java.time.Instant;
|
||||
import java.time.LocalDate;
|
||||
import java.util.ArrayList;
|
||||
|
|
@ -262,7 +263,10 @@ public class InspectionObligationsPrecAction extends ReviseStage1Action {
|
|||
);
|
||||
}
|
||||
notificationMessage[0].append("\nКомпания %s, код %s, %s %s;".formatted(
|
||||
pmt.getShortName(), pmt.getTradingCode(), pmt.getBalance(), pmt.getSecuritySymbol())
|
||||
pmt.getShortName(),
|
||||
pmt.getTradingCode(),
|
||||
pmt.getBalance().setScale(2, RoundingMode.HALF_UP),
|
||||
pmt.getSecuritySymbol())
|
||||
);
|
||||
});
|
||||
if (notificationMessage[0] == null) { // сформированно 0 PM_T регистров
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue