Merge pull request 'fixes bug#AL-4691' (!640) from AL-4691 into master
Reviewed-on: adm/VentaBoletosAdm#640 Reviewed-by: Julio Heredia <julio@rjconsultores.com.br>master 1.120.6
commit
af41bafdab
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.120.5</version>
|
<version>1.120.6</version>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -3,6 +3,7 @@ package com.rjconsultores.ventaboletos.web.gui.controladores.esquemaoperacional;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.apache.commons.lang.BooleanUtils;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.context.annotation.Scope;
|
import org.springframework.context.annotation.Scope;
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
|
@ -76,7 +77,7 @@ public class EditarAliasClasseController extends MyGenericForwardComposer {
|
||||||
aliasClasse = (AliasClasse) Executions.getCurrent().getArg().get("aliasClasse");
|
aliasClasse = (AliasClasse) Executions.getCurrent().getArg().get("aliasClasse");
|
||||||
aliasClasseList = (MyListbox) Executions.getCurrent().getArg().get("aliasClasseList");
|
aliasClasseList = (MyListbox) Executions.getCurrent().getArg().get("aliasClasseList");
|
||||||
setLsRuta(buscarRutasPorEmpresaOrgaoConcedenteClaseServicio());
|
setLsRuta(buscarRutasPorEmpresaOrgaoConcedenteClaseServicio());
|
||||||
chkSomenteImpressao.setChecked(aliasClasse.getIndSomenteImpressao());
|
chkSomenteImpressao.setChecked(BooleanUtils.toBoolean(aliasClasse.getIndSomenteImpressao()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onClick$btnSalvar(Event ev) throws InterruptedException {
|
public void onClick$btnSalvar(Event ev) throws InterruptedException {
|
||||||
|
|
Loading…
Reference in New Issue