Commit 16e970cf authored by Abzal Kultayev's avatar Abzal Kultayev

Импорт платежей

parent 8d156b0e
......@@ -59,6 +59,7 @@ public abstract class AbstractComponentConverter implements ComponentConverter {
} else if (field.getType().isAssignableFrom(Double.class)) {
// double
String value = getNumberValueForField(asfData, field, cmpId);
value = value.replaceAll(",", ".");
field.set(asFormObject, Double.parseDouble(value));
} else if (field.getType().isAssignableFrom(BigDecimal.class)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment