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>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ventaboletosadm</artifactId>
|
||||
<version>1.120.5</version>
|
||||
<version>1.120.6</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -3,6 +3,7 @@ package com.rjconsultores.ventaboletos.web.gui.controladores.esquemaoperacional;
|
|||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.commons.lang.BooleanUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.context.annotation.Scope;
|
||||
import org.springframework.stereotype.Controller;
|
||||
|
@ -76,7 +77,7 @@ public class EditarAliasClasseController extends MyGenericForwardComposer {
|
|||
aliasClasse = (AliasClasse) Executions.getCurrent().getArg().get("aliasClasse");
|
||||
aliasClasseList = (MyListbox) Executions.getCurrent().getArg().get("aliasClasseList");
|
||||
setLsRuta(buscarRutasPorEmpresaOrgaoConcedenteClaseServicio());
|
||||
chkSomenteImpressao.setChecked(aliasClasse.getIndSomenteImpressao());
|
||||
chkSomenteImpressao.setChecked(BooleanUtils.toBoolean(aliasClasse.getIndSomenteImpressao()));
|
||||
}
|
||||
|
||||
public void onClick$btnSalvar(Event ev) throws InterruptedException {
|
||||
|
|
Loading…
Reference in New Issue