zei 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.DS_Store +0 -0
- data/.gitignore +11 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +108 -0
- data/Rakefile +11 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/sei/connection.rb +22 -0
- data/lib/sei/estruturas/documento.rb +112 -0
- data/lib/sei/estruturas/documento_bloco.rb +46 -0
- data/lib/sei/estruturas/procedimento.rb +64 -0
- data/lib/sei/estruturas/retorno_boolean.rb +17 -0
- data/lib/sei/estruturas/retorno_conclusao_processo.rb +17 -0
- data/lib/sei/estruturas/retorno_consultar_documento.rb +40 -0
- data/lib/sei/estruturas/retorno_consultar_procedimento.rb +28 -0
- data/lib/sei/estruturas/retorno_geracao_bloco.rb +18 -0
- data/lib/sei/estruturas/retorno_geracao_procedimento.rb +34 -0
- data/lib/sei/estruturas/retorno_inclusao_documento.rb +22 -0
- data/lib/sei/estruturas/retorno_inclusao_documento_bloco.rb +17 -0
- data/lib/sei/estruturas/retorno_inclusao_processo_bloco.rb +17 -0
- data/lib/sei/estruturas/retorno_list_unidades.rb +31 -0
- data/lib/sei/estruturas/retorno_list_usuarios.rb +26 -0
- data/lib/sei/estruturas/retorno_unidade.rb +22 -0
- data/lib/sei/estruturas/retorno_usuario.rb +22 -0
- data/lib/sei/printer.rb +32 -0
- data/lib/sei/servico.rb +247 -0
- data/lib/sei/version.rb +3 -0
- data/lib/zei.rb +40 -0
- data/zei.gemspec +41 -0
- metadata +159 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: eee53cf5f8fb633e9a75d22c54cec41861426eb8fd5b2bc09a87ed25452ab359
|
4
|
+
data.tar.gz: d77359402758b7b9962251196f7114343777be715b2b53135709053ddfb6f10a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5d2a7013a1c2f3766bf4eb74c446127308ea7b9810c92d9494a1aca7e8ca1c7cb9f8e20febeaf4af3746079b341a0ea4908cd727ca76531e2eb728045aea3a43
|
7
|
+
data.tar.gz: 5ea21b91d600e85491dc46fbebd70a808de6e8ae371a07a79b78a270e5439f8e60c741215a778a1dead5a462dcaa6027afc631ebe11c34574175a9b99a15c32e
|
data/.DS_Store
ADDED
Binary file
|
data/.gitignore
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at tellesleandro@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Leandro Telles
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,108 @@
|
|
1
|
+
# SEI!
|
2
|
+
|
3
|
+
Esta gem facilita o acesso ao webservice do SEI!. Ela possui a implementação dos métodos:
|
4
|
+
|
5
|
+
* atribuir_processo
|
6
|
+
* cancelar_documento
|
7
|
+
* concluir_processo
|
8
|
+
* consultar_documento
|
9
|
+
* consultar_procedimento
|
10
|
+
* disponibilizar_bloco
|
11
|
+
* excluir_bloco
|
12
|
+
* gerar_bloco
|
13
|
+
* gerar_procedimento
|
14
|
+
* incluir_documento
|
15
|
+
* incluir_documento_bloco
|
16
|
+
* incluir_processo_bloco
|
17
|
+
* listar_unidades
|
18
|
+
* listar_usuarios
|
19
|
+
* reabrir_processo
|
20
|
+
* retirar_documento_bloco
|
21
|
+
* retirar_processo_bloco
|
22
|
+
|
23
|
+
O retorno do webservice é automaticamente associado às classes de retorno que possuem os atributos retornados por cada serviço. Estes atributos são acessados através de assessores da classe.
|
24
|
+
|
25
|
+
## Instalação
|
26
|
+
|
27
|
+
Adicione esta linha no Gemfile da sua aplicação:
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
gem 'sei'
|
31
|
+
```
|
32
|
+
|
33
|
+
E execute:
|
34
|
+
|
35
|
+
$ bundle
|
36
|
+
|
37
|
+
Ou instale através do seguinte comando:
|
38
|
+
|
39
|
+
$ gem install sei
|
40
|
+
|
41
|
+
## Uso
|
42
|
+
|
43
|
+
A classe test/sei_test.rb possui casos de teste que podem ser utilizados como exemplo para chamada dos serviços.
|
44
|
+
|
45
|
+
Antes de chamar os métodos dos serviços, é necessário configurar a gem através do comando:
|
46
|
+
|
47
|
+
```ruby
|
48
|
+
Sei.configure do |config|
|
49
|
+
config.wsdl = ENV['SEI_CONFIG_WSDL']
|
50
|
+
config.follow_redirects = true
|
51
|
+
config.pretty_print_xml = true
|
52
|
+
config.sigla = ENV['SEI_CONFIG_SIGLA']
|
53
|
+
config.identificacao = ENV['SEI_CONFIG_IDENTIFICACAO']
|
54
|
+
end
|
55
|
+
```
|
56
|
+
onde
|
57
|
+
|
58
|
+
config.wsdl é o endereço do WSDL do SEI, por exemplo http[s]://[servidor php]/sei/controlador_ws.php?servico=sei';
|
59
|
+
|
60
|
+
config.follow_redirects indica para a biblioteca 'savon' que ela deve seguir as respostas 'redirect' devolvidas pelo servidor;
|
61
|
+
|
62
|
+
config.pretty_print_xml indica para a biblioteca 'savon' que as mensagens XML geradas devem ser impressas no console de forma formatada;
|
63
|
+
|
64
|
+
config.sigla é a sigla do sistema configurada no SEI, através do menu administração -> sistemas;
|
65
|
+
|
66
|
+
config.identificacao é a identificação do serviço configurado no SEI, através do menu administração -> sistemas;
|
67
|
+
|
68
|
+
Exemplo:
|
69
|
+
|
70
|
+
```ruby
|
71
|
+
procedimento = Sei::Estruturas::Procedimento.new
|
72
|
+
.id_tipo_procedimento(id_tipo_procedimento)
|
73
|
+
.especificacao(especificacao)
|
74
|
+
.assunto(codigo_estruturado, descricao)
|
75
|
+
.interessado(sigla, nome)
|
76
|
+
.observacao(observacao)
|
77
|
+
.nivel_de_acesso(nivel_de_acesso)
|
78
|
+
|
79
|
+
retorno_geracao_procedimento = Sei::Servico.gerar_procedimento(
|
80
|
+
id_unidade,
|
81
|
+
procedimento,
|
82
|
+
documentos,
|
83
|
+
procedimentos_relacionados,
|
84
|
+
unidades_envio,
|
85
|
+
manter_aberto_unidade,
|
86
|
+
enviar_email_notificacao,
|
87
|
+
data_retorno_programado,
|
88
|
+
dias_retorno_programado,
|
89
|
+
dias_uteis_retorno_programado)
|
90
|
+
|
91
|
+
puts retorno_geracao_procedimento.id_procedimento
|
92
|
+
```
|
93
|
+
|
94
|
+
## Desenvolvimento
|
95
|
+
|
96
|
+
Após checar o repositório, execute `bin/setup` para instalar as dependências. Depois, execute `rake test` para rodar os testes. É possível também executar `bin/console` para carregar o prompt interativo que permite testar a gem na linha de comando.
|
97
|
+
|
98
|
+
Para instalar esta gem na sua máquina local, execute `bundle exec rake install`. Para publicar uma nova versão, atualize o número da versão em `version.rb` e execute `bundle exec rake release`. Isto criará uma tag git para a versão. Envie (push) os commits e tags e envie (push) o arquivo `.gem` para [rubygems.org](https://rubygems.org).
|
99
|
+
|
100
|
+
## Contribuindo
|
101
|
+
|
102
|
+
Indicação de bugs e pull requests são bem-vindos no GitHub (https://github.com/tellesleandro/sei). Este projeto tem a intenção de ser seguro e incentiva a colaboração. É esperado que os contribuidores sigam o código de conduta [Contributor Covenant](http://contributor-covenant.org).
|
103
|
+
|
104
|
+
## Licença/License
|
105
|
+
|
106
|
+
Esta gem está disponível como código aberto dentro dos termos da [MIT License](http://opensource.org/licenses/MIT).
|
107
|
+
|
108
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "sei"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
module Sei
|
2
|
+
|
3
|
+
require "singleton"
|
4
|
+
|
5
|
+
class Connection
|
6
|
+
|
7
|
+
include Singleton
|
8
|
+
|
9
|
+
def client
|
10
|
+
@client ||= Savon.client wsdl: Sei.configuration.wsdl, follow_redirects: Sei.configuration.follow_redirects,
|
11
|
+
pretty_print_xml: Sei.configuration.pretty_print_xml, convert_request_keys_to: :camelcase
|
12
|
+
end
|
13
|
+
|
14
|
+
def call(service, message)
|
15
|
+
request = client.build_request service, message: message
|
16
|
+
Sei::Printer.xp request.body
|
17
|
+
client.call service, message
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
@@ -0,0 +1,112 @@
|
|
1
|
+
module Sei
|
2
|
+
|
3
|
+
module Estruturas
|
4
|
+
|
5
|
+
class Documento
|
6
|
+
|
7
|
+
def tipo(tipo)
|
8
|
+
@tipo = tipo
|
9
|
+
self
|
10
|
+
end
|
11
|
+
|
12
|
+
def id_procedimento(id_procedimento)
|
13
|
+
@id_procedimento = id_procedimento
|
14
|
+
self
|
15
|
+
end
|
16
|
+
|
17
|
+
def id_serie(id_serie)
|
18
|
+
@id_serie = id_serie
|
19
|
+
self
|
20
|
+
end
|
21
|
+
|
22
|
+
def numero(numero)
|
23
|
+
@numero = numero
|
24
|
+
self
|
25
|
+
end
|
26
|
+
|
27
|
+
def data(data)
|
28
|
+
@data = data.strftime('%d/%m/%Y') rescue nil
|
29
|
+
self
|
30
|
+
end
|
31
|
+
|
32
|
+
def descricao(descricao)
|
33
|
+
@descricao = descricao
|
34
|
+
self
|
35
|
+
end
|
36
|
+
|
37
|
+
def remetente(remetente)
|
38
|
+
@remetente = remetente
|
39
|
+
self
|
40
|
+
end
|
41
|
+
|
42
|
+
def interessado(sigla, nome)
|
43
|
+
@interessados ||= []
|
44
|
+
@interessados << {
|
45
|
+
interessado: {
|
46
|
+
sigla: sigla,
|
47
|
+
nome: nome
|
48
|
+
}
|
49
|
+
}
|
50
|
+
self
|
51
|
+
end
|
52
|
+
|
53
|
+
def destinatario(sigla, nome)
|
54
|
+
@destinatarios ||= []
|
55
|
+
@destinatarios << {
|
56
|
+
destinatario: {
|
57
|
+
sigla: sigla,
|
58
|
+
nome: nome
|
59
|
+
}
|
60
|
+
}
|
61
|
+
self
|
62
|
+
end
|
63
|
+
|
64
|
+
def observacao(observacao)
|
65
|
+
@observacao = observacao
|
66
|
+
self
|
67
|
+
end
|
68
|
+
|
69
|
+
def nome_arquivo(nome_arquivo)
|
70
|
+
@nome_arquivo = nome_arquivo
|
71
|
+
self
|
72
|
+
end
|
73
|
+
|
74
|
+
def conteudo(conteudo)
|
75
|
+
@conteudo = Base64.strict_encode64(conteudo)
|
76
|
+
self
|
77
|
+
end
|
78
|
+
|
79
|
+
def conteudo_mtom(conteudo_mtom)
|
80
|
+
@conteudo_mtom = File.read(conteudo_mtom)
|
81
|
+
self
|
82
|
+
end
|
83
|
+
|
84
|
+
def nivel_de_acesso(nivel_de_acesso)
|
85
|
+
@nivel_de_acesso = nivel_de_acesso
|
86
|
+
self
|
87
|
+
end
|
88
|
+
|
89
|
+
def to_h
|
90
|
+
{
|
91
|
+
tipo: @tipo,
|
92
|
+
id_procedimento: @id_procedimento,
|
93
|
+
id_serie: @id_serie,
|
94
|
+
numero: @numero,
|
95
|
+
data: @data,
|
96
|
+
descricao: @descricao,
|
97
|
+
remetente: @remetente,
|
98
|
+
interessados: @interessados.nil? ? {} : @interessados,
|
99
|
+
destinatarios: @destinatarios.nil? ? {} : @destinatarios,
|
100
|
+
observacao: @observacao,
|
101
|
+
nome_arquivo: @nome_arquivo,
|
102
|
+
conteudo: @conteudo,
|
103
|
+
conteudo_mtom: @conteudo_mtom,
|
104
|
+
nivel_de_acesso: @nivel_de_acesso
|
105
|
+
}
|
106
|
+
end
|
107
|
+
|
108
|
+
end
|
109
|
+
|
110
|
+
end
|
111
|
+
|
112
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
module Sei
|
2
|
+
|
3
|
+
module Estruturas
|
4
|
+
|
5
|
+
class DocumentoBloco
|
6
|
+
|
7
|
+
def id_unidade(id_unidade)
|
8
|
+
@tipo = id_unidade
|
9
|
+
self
|
10
|
+
end
|
11
|
+
|
12
|
+
def id_bloco(id_bloco)
|
13
|
+
@id_bloco = id_bloco
|
14
|
+
self
|
15
|
+
end
|
16
|
+
|
17
|
+
def protocolo_documento(protocolo_documento)
|
18
|
+
@protocolo_documento = protocolo_documento
|
19
|
+
self
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
def to_h
|
24
|
+
{
|
25
|
+
tipo: @tipo,
|
26
|
+
id_procedimento: @id_procedimento,
|
27
|
+
id_serie: @id_serie,
|
28
|
+
numero: @numero,
|
29
|
+
data: @data,
|
30
|
+
descricao: @descricao,
|
31
|
+
remetente: @remetente,
|
32
|
+
interessados: @interessados.nil? ? {} : @interessados,
|
33
|
+
destinatarios: @destinatarios.nil? ? {} : @destinatarios,
|
34
|
+
observacao: @observacao,
|
35
|
+
nome_arquivo: @nome_arquivo,
|
36
|
+
conteudo: @conteudo,
|
37
|
+
conteudo_mtom: @conteudo_mtom,
|
38
|
+
nivel_de_acesso: @nivel_de_acesso
|
39
|
+
}
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
module Sei
|
2
|
+
|
3
|
+
module Estruturas
|
4
|
+
|
5
|
+
class Procedimento
|
6
|
+
|
7
|
+
def id_tipo_procedimento(id_tipo_procedimento)
|
8
|
+
@id_tipo_procedimento = id_tipo_procedimento
|
9
|
+
self
|
10
|
+
end
|
11
|
+
|
12
|
+
def especificacao(especificacao)
|
13
|
+
@especificacao = especificacao
|
14
|
+
self
|
15
|
+
end
|
16
|
+
|
17
|
+
def assunto(codigo_estruturado, descricao)
|
18
|
+
@assuntos ||= []
|
19
|
+
@assuntos << {
|
20
|
+
assunto: {
|
21
|
+
codigo_estruturado: codigo_estruturado,
|
22
|
+
descricao: descricao
|
23
|
+
}
|
24
|
+
}
|
25
|
+
self
|
26
|
+
end
|
27
|
+
|
28
|
+
def interessado(sigla, nome)
|
29
|
+
@interessados ||= []
|
30
|
+
@interessados << {
|
31
|
+
interessado: {
|
32
|
+
sigla: sigla,
|
33
|
+
nome: nome
|
34
|
+
}
|
35
|
+
}
|
36
|
+
self
|
37
|
+
end
|
38
|
+
|
39
|
+
def observacao(observacao)
|
40
|
+
@observacao = observacao
|
41
|
+
self
|
42
|
+
end
|
43
|
+
|
44
|
+
def nivel_de_acesso(nivel_de_acesso)
|
45
|
+
@nivel_de_acesso = nivel_de_acesso
|
46
|
+
self
|
47
|
+
end
|
48
|
+
|
49
|
+
def to_h
|
50
|
+
{
|
51
|
+
id_tipo_procedimento: @id_tipo_procedimento,
|
52
|
+
especificacao: @especificacao,
|
53
|
+
assuntos: @assuntos.nil? ? {} : @assuntos,
|
54
|
+
interessados: @interessados.nil? ? {} : @interessados,
|
55
|
+
observacao: @observacao,
|
56
|
+
nivel_de_acesso: @nivel_de_acesso
|
57
|
+
}
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
61
|
+
|
62
|
+
end
|
63
|
+
|
64
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
module Sei
|
2
|
+
|
3
|
+
module Estruturas
|
4
|
+
|
5
|
+
class RetornoConsultarDocumento < ::Valuable
|
6
|
+
|
7
|
+
has_value :id_procedimento
|
8
|
+
has_value :procedimento_formatado
|
9
|
+
has_value :id_documento
|
10
|
+
has_value :documento_formatado
|
11
|
+
has_value :link_acesso
|
12
|
+
has_value :serie
|
13
|
+
has_value :numero
|
14
|
+
has_value :data
|
15
|
+
has_value :unidade_elaboradora
|
16
|
+
has_value :andamento_geracao
|
17
|
+
has_value :assinaturas
|
18
|
+
has_value :publicacao
|
19
|
+
|
20
|
+
def initialize(params)
|
21
|
+
self.id_procedimento = params[:id_procedimento]
|
22
|
+
self.procedimento_formatado = params[:procedimento_formatado]
|
23
|
+
self.id_documento = params[:id_documento]
|
24
|
+
self.documento_formatado = params[:documento_formatado]
|
25
|
+
self.link_acesso = params[:link_acesso]
|
26
|
+
self.serie = params[:serie]
|
27
|
+
self.numero = params[:numero]
|
28
|
+
self.data = params[:data]
|
29
|
+
self.unidade_elaboradora = params[:unidade_elaboradora]
|
30
|
+
self.andamento_geracao = params[:andamento_geracao]
|
31
|
+
self.assinaturas = params[:assinaturas]
|
32
|
+
self.publicacao = params[:publicacao]
|
33
|
+
initialize_attributes
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module Sei
|
2
|
+
|
3
|
+
module Estruturas
|
4
|
+
|
5
|
+
class RetornoConsultarProcedimento < ::Valuable
|
6
|
+
|
7
|
+
has_value :id_procedimento
|
8
|
+
has_value :procedimento_formatado
|
9
|
+
has_value :especificacao
|
10
|
+
has_value :data_autuacao
|
11
|
+
has_value :link_acesso
|
12
|
+
has_value :tipo_procedimento
|
13
|
+
|
14
|
+
def initialize(params)
|
15
|
+
self.id_procedimento = params[:id_procedimento]
|
16
|
+
self.procedimento_formatado = params[:procedimento_formatado]
|
17
|
+
self.especificacao = params[:especificacao]
|
18
|
+
self.data_autuacao = params[:data_autuacao]
|
19
|
+
self.link_acesso = params[:link_acesso]
|
20
|
+
self.tipo_procedimento = params[:tipo_procedimento]
|
21
|
+
initialize_attributes
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
module Sei
|
2
|
+
|
3
|
+
module Estruturas
|
4
|
+
|
5
|
+
class RetornoGeracaoProcedimento < ::Valuable
|
6
|
+
|
7
|
+
has_value :id_procedimento
|
8
|
+
has_value :procedimento_formatado
|
9
|
+
has_value :link_acesso
|
10
|
+
has_collection :retorno_inclusao_documentos, klass: RetornoInclusaoDocumento
|
11
|
+
|
12
|
+
def initialize(params)
|
13
|
+
self.id_procedimento = params[:id_procedimento]
|
14
|
+
self.procedimento_formatado = params[:procedimento_formatado]
|
15
|
+
self.link_acesso = params[:link_acesso]
|
16
|
+
self.retorno_inclusao_documentos = []
|
17
|
+
if params[:retorno_inclusao_documentos] && params[:retorno_inclusao_documentos][:item]
|
18
|
+
item = params[:retorno_inclusao_documentos][:item]
|
19
|
+
if item.is_a?(Hash)
|
20
|
+
self.retorno_inclusao_documentos << Sei::Estruturas::RetornoInclusaoDocumento.new(item)
|
21
|
+
elsif item.is_a?(Array)
|
22
|
+
item.each do |retorno_inclusao_documento|
|
23
|
+
self.retorno_inclusao_documentos << Sei::Estruturas::RetornoInclusaoDocumento.new(retorno_inclusao_documento)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
initialize_attributes
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|