Merge branch 'master' into AL-4551

master
Fernando Abimael Alvarez Uc 2024-08-09 12:47:57 -06:00
commit 10ecc9cd77
2 changed files with 3 additions and 2 deletions

View File

@ -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>

View File

@ -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 {