sticutils 1.0.1 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d01fdfd704137c8d2f1c5f17cc6d17e8ee3ca7aa68acc265990273ee3eef841
4
- data.tar.gz: 931df0d6f77a0a09c3f9f45f8d99f221391a367ed7f346d54d8dbe0a93f2ece7
3
+ metadata.gz: d4df4ff63dd990c48d4022e44c7dda0c8197a974e2a354f5e7ce082c3358c227
4
+ data.tar.gz: 628a666fc385409e2ced846264a866b3ca4141554b2e5c1afc656e26522ce2cf
5
5
  SHA512:
6
- metadata.gz: 7c68d1d66eaee6457e3f6bde5e88ee55107e43a87f15c45d8b369b2d8dc05ff4305b890c60f6e76c2ef669ed52422dd986eda5d2b3fa879850ed544d1b8e3b57
7
- data.tar.gz: 91b9792ca668764e8f0cd3f0f0b591d174f0037d633e79b8f013a5cbb0e6dfda293fb35affa5103fdbf1dc0bdb1e55b3be725e92b774c6038386fcb176ad3e4d
6
+ metadata.gz: d74fa4ae4aceba578b589264dbdfae90a709f7075605690c82ec76170d7a3871e6cbf1a8c88ac8d90ca6d815046b068772dbd1dfe0235f84802801bcf93d6908
7
+ data.tar.gz: 319fe3b415864ba932ec16af5cb23f2a12010c30e1464aa90f0f7979e9ca40b65ad54c21b4c36d4e503b922cd20f607eea2e6c1a63b51b4b551b213547b6b0b8
@@ -0,0 +1,5 @@
1
+ class Gestorh::ClassificacaoVerba < Gestorh::GestorhRecord
2
+ self.table_name = 'gestor_rh.cdclassificacaoverba'
3
+
4
+ belongs_to :verba, foreign_key: :cv_verba, primary_key: :vb_codigo
5
+ end
@@ -8,19 +8,22 @@ class Gestorh::FolhaAgrupada < Gestorh::GestorhRecord
8
8
  belongs_to :cargo, foreign_key: :mvps_cargo, primary_key: :fc_codigo, class_name: 'Gestorh::Funcao'
9
9
  belongs_to :lotacao, foreign_key: :mvps_reglotacao, primary_key: :lt_registro
10
10
  belongs_to :nivel_salario, foreign_key: :mvps_nivelsalario, primary_key: :ns_registro
11
+ belongs_to :local_trabalho, foreign_key: :mvps_localtrab, primary_key: :lctb_codigo
11
12
 
12
13
  def liquido_total
13
14
  self.rendimento_total - self.desconto_total
14
15
  end
15
16
 
16
17
  def eventos_e_valores
18
+ # .where.not('cdclassificacaoverba.cv_classificacao': 'DESCONTO_PREVIDENCIA_PUBLICA_IAPEP')
17
19
  Gestorh::MovimentoAcumulado.where(mv_regfolha: self.folhas, mv_matricula: self.matricula)
18
- .joins(:evento_folha_pagamento)
19
- .where.not('evento_folha_pagamentos.tipo': 'DESCONTO_PREVIDENCIA_PUBLICA_IAPEP')
20
+ .joins(verba: :classificacao_verba)
20
21
  .select('mv_regfolha as folha_id', 'mv_verba as codigo_evento',
21
- 'evento_folha_pagamentos.descricao as nome_evento',
22
- 'mv_dc as status', 'mv_total as valor', 'evento_folha_pagamentos.tipo')
22
+ 'cdverba.vb_nome as nome_evento',
23
+ 'mv_dc as status', 'mv_total as valor',
24
+ 'cdclassificacaoverba.cv_classificacao as tipo')
23
25
  .to_a
26
+ .uniq{|x| [x.codigo_evento, x.status, x.valor] } # uniq temporario para remover verbas com 2 classificacoes
24
27
  end
25
28
 
26
29
  def remuneracao_paradigma
@@ -14,13 +14,15 @@ class Gestorh::FolhaAgrupadaIdSeparado < Gestorh::GestorhRecord
14
14
  end
15
15
 
16
16
  def eventos_e_valores
17
+ # .where.not('cdclassificacaoverba.cv_classificacao': 'DESCONTO_PREVIDENCIA_PUBLICA_IAPEP')
17
18
  Gestorh::MovimentoAcumulado.where(mv_regfolha: self.folhas, mv_matricula: self.matricula)
18
- .joins(:evento_folha_pagamento)
19
- .where.not('evento_folha_pagamentos.tipo': 'DESCONTO_PREVIDENCIA_PUBLICA_IAPEP')
19
+ .joins(verba: :classificacao_verba)
20
20
  .select('mv_regfolha as folha_id', 'mv_verba as codigo_evento',
21
- 'evento_folha_pagamentos.descricao as nome_evento',
22
- 'mv_dc as status', 'mv_total as valor', 'evento_folha_pagamentos.tipo')
21
+ 'cdverba.vb_nome as nome_evento',
22
+ 'mv_dc as status', 'mv_total as valor',
23
+ 'cdclassificacaoverba.cv_classificacao as tipo')
23
24
  .to_a
25
+ .uniq{|x| [x.codigo_evento, x.status, x.valor] } # uniq temporario para remover verbas com 2 classificacoes
24
26
  end
25
27
 
26
28
  def remuneracao_paradigma
@@ -3,4 +3,5 @@ class Gestorh::Funcionario < Gestorh::GestorhRecord
3
3
 
4
4
  has_many :movimento_acumulados, foreign_key: :mv_matricula, primary_key: :fn_matricula
5
5
  has_many :folhas, through: :movimento_acumulados
6
+ has_many :ferias, foreign_key: :fe_matricula, primary_key: :fn_matricula, class_name: 'Gestorh::Ferias'
6
7
  end
@@ -0,0 +1,3 @@
1
+ class Gestorh::LocalTrabalho < Gestorh::GestorhRecord
2
+ self.table_name = 'gestor_rh.cdlocaistrabalho'
3
+ end
@@ -4,6 +4,4 @@ class Gestorh::MovimentoAcumulado < Gestorh::GestorhRecord
4
4
  belongs_to :verba, foreign_key: :mv_verba, primary_key: :vb_codigo
5
5
  belongs_to :funcionario, foreign_key: :mv_matricula, primary_key: :fn_matricula
6
6
  belongs_to :folha, foreign_key: :mv_regfolha, primary_key: :fp_registro
7
-
8
- belongs_to :evento_folha_pagamento, foreign_key: :mv_verba, primary_key: :codigo, class_name: 'Transparencia::EventoFolhaPagamento'
9
7
  end
@@ -1,3 +1,5 @@
1
1
  class Gestorh::Verba < Gestorh::GestorhRecord
2
2
  self.table_name = 'gestor_rh.cdverba'
3
+
4
+ has_one :classificacao_verba, foreign_key: :cv_verba, primary_key: :vb_codigo
3
5
  end
@@ -33,7 +33,7 @@ class Intranet::TjpiVinculo < Intranet::IntranetRecord
33
33
  belongs_to :procurador, class_name: 'GlobalPrepessoafisica', foreign_key: :procurador_id
34
34
  belongs_to :conta_bancaria, class_name: 'GlobalContabancaria', foreign_key: :contaBancaria_id
35
35
 
36
- has_many :tjpi_previnculados, class_name: 'TjpiPrevinculado'
36
+ has_many :tjpi_previnculados, class_name: 'TjpiPrevinculado', foreign_key: :vinculoPrincipal_id
37
37
  belongs_to :tjpi_previnculado, class_name: 'TjpiPrevinculado', foreign_key: :cadastro_id
38
38
 
39
39
  has_many :tjpi_contrachequeagrupados, class_name: "TjpiContrachequeagrupado", foreign_key: :matricula, primary_key: :matricula
@@ -1,3 +1,3 @@
1
1
  module Sticutils
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sticutils
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ricardo Viana
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-02-11 00:00:00.000000000 Z
11
+ date: 2021-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -67,6 +67,7 @@ files:
67
67
  - Rakefile
68
68
  - app/models/gestorh.rb
69
69
  - app/models/gestorh/banco.rb
70
+ - app/models/gestorh/classificacao_verba.rb
70
71
  - app/models/gestorh/folha.rb
71
72
  - app/models/gestorh/folha_agrupada.rb
72
73
  - app/models/gestorh/folha_agrupada_id_separado.rb
@@ -74,6 +75,7 @@ files:
74
75
  - app/models/gestorh/funcao.rb
75
76
  - app/models/gestorh/funcionario.rb
76
77
  - app/models/gestorh/gestorh_record.rb
78
+ - app/models/gestorh/local_trabalho.rb
77
79
  - app/models/gestorh/lotacao.rb
78
80
  - app/models/gestorh/movimento.rb
79
81
  - app/models/gestorh/movimento_acumulado.rb
@@ -238,9 +240,6 @@ files:
238
240
  - app/models/intranet/tjpi_vinculadoemfolha.rb
239
241
  - app/models/intranet/tjpi_vinculo.rb
240
242
  - app/models/intranet/tjpi_vinculo_documento.rb
241
- - app/models/transparencia.rb
242
- - app/models/transparencia/evento_folha_pagamento.rb
243
- - app/models/transparencia/transparencia_record.rb
244
243
  - bin/console
245
244
  - bin/setup
246
245
  - lib/sticutils.rb
@@ -1,2 +0,0 @@
1
- module Transparencia
2
- end
@@ -1,3 +0,0 @@
1
- class Transparencia::EventoFolhaPagamento < Transparencia::TransparenciaRecord
2
- has_many :folha_pagamento_detalhadas
3
- end
@@ -1,4 +0,0 @@
1
- class Transparencia::TransparenciaRecord < ActiveRecord::Base
2
- self.abstract_class = true
3
- self.establish_connection :transparencia
4
- end