sticutils 0.3.4 → 0.4.0

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: 3182bb4d4f35eee57a8c0b7b43b91af38bbe9aa76d83d93ad788d4cee047e6cc
4
- data.tar.gz: 14f70d1d5b8f39762c113f162778a3edd665f53d1b973daf439da88cb055d362
3
+ metadata.gz: c1cb5c6be2bf9c77d9395a51deda2d90274d346d29645de2a391d54f83008331
4
+ data.tar.gz: eceb52db3459f26a1e073ee3abd3441af22da4326823523a5250fc8936e9fa3f
5
5
  SHA512:
6
- metadata.gz: 5e0efa6e028bcafce39bb7e0518ccaf80ca50b9d2351667315ad164bc5d934d24ed039054c050cd262540edcc4999ff692d3ec1864fc2bf61462b0996a8e6ec0
7
- data.tar.gz: 88a978b03223141a1c66a6f6e2fc38731e1d6c5b76114b7c86d65829bb2ddbc235d8ab96f0e58b18fc37c248213d665e0cc6909faed62e455c48048d354e72a6
6
+ metadata.gz: e22da5869f7b162c61f3c77b28cc68d3bf3f0a89f7660bf994e865b9997e59b12923e781fc31daba78ff6b33e73f5a6e6995e8a35043c47c226591a00f7511b6
7
+ data.tar.gz: c5a185c46404659cbfafcb4eba6035738eb88a410bd9546db96a5a2f1e67ee0f63a109954d4f28bb59471355e5e257f3b48b9f65142f1dd75a7958671a7444c9
@@ -0,0 +1,4 @@
1
+ class Gestorh::Ferias < Gestorh::GestorhRecord
2
+ self.table_name = 'gestor_rh.cdferias'
3
+ belongs_to :funcionario, foreign_key: :fe_matricula, primary_key: :fn_matricula
4
+ end
@@ -75,14 +75,14 @@ class Gestorh::FolhaAgrupada < Gestorh::GestorhRecord
75
75
  # diarias
76
76
  def diarias
77
77
  if Object.const_defined?('DailyRate')
78
- DailyRate.where(cpf: numeric_cpf, date: [Date.new(self.ano, self.mes)..Date.new(self.ano, self.mes).at_end_of_month])
78
+ DailyRate.where(cpf: [cpf, numeric_cpf], date: [Date.new(self.ano, self.mes)..Date.new(self.ano, self.mes).at_end_of_month])
79
79
  .sum(:pago)
80
80
  end
81
81
  end
82
82
 
83
83
  def diarias_positivas
84
84
  if Object.const_defined?('DailyRate')
85
- DailyRate.where(cpf: numeric_cpf,
85
+ DailyRate.where(cpf: [cpf, numeric_cpf],
86
86
  pago: [0..Float::INFINITY], date: [Date.new(self.ano, self.mes)..Date.new(self.ano, self.mes).at_end_of_month])
87
87
  .sum(:pago)
88
88
  end
@@ -90,7 +90,7 @@ class Gestorh::FolhaAgrupada < Gestorh::GestorhRecord
90
90
 
91
91
  def diarias_negativas
92
92
  if Object.const_defined?('DailyRate')
93
- DailyRate.where(cpf: numeric_cpf,
93
+ DailyRate.where(cpf: [cpf, numeric_cpf],
94
94
  pago: [-Float::INFINITY..0], date: [Date.new(self.ano, self.mes)..Date.new(self.ano, self.mes).at_end_of_month])
95
95
  .sum(:pago)
96
96
  end
@@ -3,4 +3,6 @@ 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'
7
+ belongs_to :vinculo, foreign_key: :fn_vinculo
6
8
  end
@@ -1,3 +1,5 @@
1
1
  class Gestorh::Vinculo < Gestorh::GestorhRecord
2
2
  self.table_name = 'gestor_rh.cdvinculo'
3
+
4
+ has_many :funcionarios, foreign_key: :fn_vinculo
3
5
  end
@@ -35,4 +35,6 @@ class Intranet::GlobalOrgao < Intranet::IntranetRecord
35
35
  has_many :tjpi_vinculos_ensino, :class_name => 'TjpiVinculo', foreign_key: :instituicaoDeEnsino_id
36
36
  has_many :tjpi_vinculos_atuais, :class_name => 'TjpiVinculo', foreign_key: :lotacaoAtual_id
37
37
  has_many :tjpi_vinculos_origem, :class_name => 'TjpiVinculo', foreign_key: :orgaoOrigem_id
38
+
39
+ has_many :global_contatos, through: :global_orgao_contatos
38
40
  end
@@ -1,3 +1,3 @@
1
1
  module Sticutils
2
- VERSION = "0.3.4"
2
+ VERSION = "0.4.0"
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: 0.3.4
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ricardo Viana
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-04-28 00:00:00.000000000 Z
11
+ date: 2021-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -68,6 +68,7 @@ files:
68
68
  - app/models/gestorh.rb
69
69
  - app/models/gestorh/banco.rb
70
70
  - app/models/gestorh/classificacao_verba.rb
71
+ - app/models/gestorh/ferias.rb
71
72
  - app/models/gestorh/folha.rb
72
73
  - app/models/gestorh/folha_agrupada.rb
73
74
  - app/models/gestorh/folha_agrupada_id_separado.rb
@@ -265,7 +266,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
265
266
  - !ruby/object:Gem::Version
266
267
  version: '0'
267
268
  requirements: []
268
- rubygems_version: 3.0.3
269
+ rubygems_version: 3.1.6
269
270
  signing_key:
270
271
  specification_version: 4
271
272
  summary: Utilidades para aplicações rails da STIC