fixes bug #6893
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@50755 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
7ff5b35761
commit
6e266970ad
|
@ -323,7 +323,7 @@ public class ModificacionMasivaTarifasController extends MyGenericForwardCompose
|
|||
try {
|
||||
if (txtPorcentagem.getValue() != null) {
|
||||
|
||||
BigDecimal porcentage = BigDecimal.valueOf(Double.parseDouble(txtPorcentagem.getValue()));
|
||||
BigDecimal porcentage = BigDecimal.valueOf(Double.parseDouble(txtPorcentagem.getValue().replace(",", ".")));
|
||||
|
||||
coeficiente = porcentage.divide(new BigDecimal(100));
|
||||
if (radIncremento.isChecked()) {
|
||||
|
|
Loading…
Reference in New Issue