leonardo 2017-11-07 18:08:51 +00:00
parent 8895dfca82
commit 15b83e2fea
1 changed files with 5 additions and 1 deletions

View File

@ -199,7 +199,11 @@ public class EditarTipoEventoExtraController extends MyGenericForwardComposer {
tipoEventoExtra.setIndtipo(raTipo11.isChecked() ? "1" : "0");
if(cmbCveTipoEvento.getSelectedItem() != null) {
tipoEventoExtra.setCvetipoevento(com.rjconsultores.ventaboletos.constantes.TipoEventoExtra.valueOf(cmbCveTipoEvento.getSelectedItem().getValue().toString()));
if (cmbCveTipoEvento.getSelectedItem().getValue().toString().equals(" ")){
tipoEventoExtra.setCvetipoevento(null);
} else {
tipoEventoExtra.setCvetipoevento(com.rjconsultores.ventaboletos.constantes.TipoEventoExtra.valueOf(cmbCveTipoEvento.getSelectedItem().getValue().toString()));
}
}
try {