Merge branch 'master' into AL-4551
commit
10ecc9cd77
2
pom.xml
2
pom.xml
|
@ -9,7 +9,7 @@
|
|||
|
||||
<properties>
|
||||
<modelWeb.version>1.92.2</modelWeb.version>
|
||||
<flyway.version>1.79.1</flyway.version>
|
||||
<flyway.version>1.79.2</flyway.version>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
</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