fixes bug#AL-4691
parent
1bd414c173
commit
b43c1802a8
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ventaboletosadm</artifactId>
|
<artifactId>ventaboletosadm</artifactId>
|
||||||
<version>1.125.0</version>
|
<version>1.125.1</version>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
package com.rjconsultores.ventaboletos.web.gui.controladores.esquemaoperacional;
|
package com.rjconsultores.ventaboletos.web.gui.controladores.esquemaoperacional;
|
||||||
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.apache.commons.lang.BooleanUtils;
|
import org.apache.commons.lang.BooleanUtils;
|
||||||
|
@ -82,7 +81,16 @@ public class EditarAliasClasseController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
public void onClick$btnSalvar(Event ev) throws InterruptedException {
|
public void onClick$btnSalvar(Event ev) throws InterruptedException {
|
||||||
|
|
||||||
|
cmbAlias.getValue();
|
||||||
|
cmbClasse.getValue();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
if(cmbRuta.getSelectedItem() == null) {
|
||||||
|
aliasClasse.setRuta(null);
|
||||||
|
}
|
||||||
|
if(cmbEmpresa.getSelectedItem() == null) {
|
||||||
|
aliasClasse.setEmpresa(null);
|
||||||
|
}
|
||||||
aliasClasse.setIndSomenteImpressao(chkSomenteImpressao.isChecked() ? Boolean.TRUE : Boolean.FALSE);
|
aliasClasse.setIndSomenteImpressao(chkSomenteImpressao.isChecked() ? Boolean.TRUE : Boolean.FALSE);
|
||||||
aliasClasseService.suscribirActualizar(aliasClasse);
|
aliasClasseService.suscribirActualizar(aliasClasse);
|
||||||
aliasClasseList.updateItem(aliasClasse);
|
aliasClasseList.updateItem(aliasClasse);
|
||||||
|
|
Loading…
Reference in New Issue