-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into release_github
- Loading branch information
Showing
32 changed files
with
423 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
siga-cp/src/main/resources/db/mysql/sigacp/V61_0__cpContrato.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CREATE TABLE `cp_contrato` ( | ||
`ID_ORGAO_USU` INT UNSIGNED NOT NULL AUTO_INCREMENT, | ||
`DT_CONTRATO` datetime DEFAULT NULL, | ||
PRIMARY KEY (`ID_ORGAO_USU`), | ||
KEY `cp_contrato_pk` (`ID_ORGAO_USU`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; |
25 changes: 25 additions & 0 deletions
25
.../src/main/resources/db/mysql/sigacp/V64_0__Configuracoes_para_permitir_exportar_dados.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* Permissões para botão de exportar dados para CSV */ | ||
|
||
-- Cadastro de Pessoa | ||
INSERT INTO corporativo.cp_servico ( SIGLA_SERVICO, DESC_SERVICO, ID_SERVICO_PAI, ID_TP_SERVICO) | ||
SELECT 'SIGA-GI-CAD_PESSOA-EXP_DADOS', 'Exportar Dados', max(id_servico) , '2' | ||
FROM corporativo.cp_servico | ||
WHERE SIGLA_SERVICO = 'SIGA-GI-CAD_PESSOA' ; | ||
|
||
-- Cadastro de Cargo | ||
INSERT INTO corporativo.cp_servico (SIGLA_SERVICO, DESC_SERVICO, ID_SERVICO_PAI, ID_TP_SERVICO) | ||
SELECT 'SIGA-GI-CAD_CARGO-EXP_DADOS', 'Exportar Dados', max(id_servico), '2' | ||
FROM corporativo.cp_servico | ||
WHERE SIGLA_SERVICO = 'SIGA-GI-CAD_CARGO'; | ||
|
||
-- Cadastro de Função de Confiança | ||
INSERT INTO corporativo.cp_servico ( SIGLA_SERVICO, DESC_SERVICO, ID_SERVICO_PAI, ID_TP_SERVICO) | ||
SELECT 'SIGA-GI-CAD_FUNCAO-EXP_DADOS', 'Exportar Dados', max(id_servico) , '2' | ||
FROM corporativo.cp_servico | ||
WHERE SIGLA_SERVICO = 'SIGA-GI-CAD_FUNCAO'; | ||
|
||
-- Cadastro de Lotação | ||
INSERT INTO corporativo.cp_servico ( SIGLA_SERVICO, DESC_SERVICO, ID_SERVICO_PAI, ID_TP_SERVICO) | ||
SELECT 'SIGA-GI-CAD_LOTACAO-EXP_DADOS', 'Exportar Dados', max(id_servico) , '2' | ||
FROM corporativo.cp_servico | ||
WHERE SIGLA_SERVICO = 'SIGA-GI-CAD_LOTACAO'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
siga-wf/src/main/java/br/gov/jfrj/siga/wf/util/WfDefinicaoDeProcedimentoDaoFiltro.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package br.gov.jfrj.siga.wf.util; | ||
|
||
import br.gov.jfrj.siga.dp.CpOrgaoUsuario; | ||
import br.gov.jfrj.siga.model.dao.DaoFiltroSelecionavel; | ||
|
||
public class WfDefinicaoDeProcedimentoDaoFiltro extends DaoFiltroSelecionavel { | ||
public CpOrgaoUsuario ouDefault = null; | ||
} |
8 changes: 8 additions & 0 deletions
8
siga-wf/src/main/java/br/gov/jfrj/siga/wf/util/WfProcedimentoDaoFiltro.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package br.gov.jfrj.siga.wf.util; | ||
|
||
import br.gov.jfrj.siga.dp.CpOrgaoUsuario; | ||
import br.gov.jfrj.siga.model.dao.DaoFiltroSelecionavel; | ||
|
||
public class WfProcedimentoDaoFiltro extends DaoFiltroSelecionavel { | ||
public CpOrgaoUsuario ouDefault = null; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Siga-Versao: 10.0.4.0 | ||
Siga-Versao: 10.0.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,4 +29,8 @@ | |
|
||
p.gt-table-action-list a.link-tag { | ||
margin-top: 0.4em; | ||
} | ||
} | ||
|
||
.div-width-min0 { | ||
min-width: 0px !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.