Class: Gestorh::FolhaAgrupadaIdSeparado
- Inherits:
-
GestorhRecord
- Object
- ActiveRecord::Base
- GestorhRecord
- Gestorh::FolhaAgrupadaIdSeparado
- Defined in:
- app/models/gestorh/folha_agrupada_id_separado.rb
Instance Method Summary collapse
-
#diarias ⇒ Object
diarias.
- #diarias_negativas ⇒ Object
- #diarias_positivas ⇒ Object
- #eventos_e_valores ⇒ Object
- #gratificacoes ⇒ Object
- #indenizacoes ⇒ Object
- #liquido_total ⇒ Object
- #remuneracao_paradigma ⇒ Object
-
#subsidio_vantagens_pessoais ⇒ Object
sobrou da show.
- #subsidio_vantagens_pessoais_eventuais ⇒ Object
- #subsidios ⇒ Object
- #vantagens_eventuais ⇒ Object
- #vantagens_pessoais ⇒ Object
Instance Method Details
#diarias ⇒ Object
diarias
71 72 73 74 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 71 def diarias self.daily_rates.where(date: [Date.new(self.ano, self.mes)..Date.new(self.ano, self.mes).at_end_of_month]) .sum(:pago) end |
#diarias_negativas ⇒ Object
81 82 83 84 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 81 def diarias_negativas self.daily_rates.where(pago: [-Float::INFINITY..0], date: [Date.new(self.ano, self.mes)..Date.new(self.ano, self.mes).at_end_of_month]) .sum(:pago) end |
#diarias_positivas ⇒ Object
76 77 78 79 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 76 def diarias_positivas self.daily_rates.where(pago: [0..Float::INFINITY], date: [Date.new(self.ano, self.mes)..Date.new(self.ano, self.mes).at_end_of_month]) .sum(:pago) end |
#eventos_e_valores ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 16 def eventos_e_valores # .where.not('cdclassificacaoverba.cv_classificacao': 'DESCONTO_PREVIDENCIA_PUBLICA_IAPEP') Gestorh::MovimentoAcumulado.where(mv_regfolha: self.folhas, mv_matricula: self.matricula) .joins(verba: :classificacao_verba) .select('mv_regfolha as folha_id', 'mv_verba as codigo_evento', 'cdverba.vb_nome as nome_evento', 'mv_dc as status', 'mv_total as valor', 'cdclassificacaoverba.cv_classificacao as tipo') .to_a .uniq{|x| [x.codigo_evento, x.status, x.valor] } # uniq temporario para remover verbas com 2 classificacoes end |
#gratificacoes ⇒ Object
56 57 58 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 56 def gratificacoes self.eventos_e_valores.select{|x| x.tipo == 'RENDIMENTO_GRATIFICACOES' && x.status == 'C'} end |
#indenizacoes ⇒ Object
48 49 50 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 48 def indenizacoes self.eventos_e_valores.select{|x| x.tipo == 'RENDIMENTO_INDENIZACOES' && x.status == 'C' } end |
#liquido_total ⇒ Object
12 13 14 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 12 def liquido_total self.rendimento_total - self.desconto_total end |
#remuneracao_paradigma ⇒ Object
28 29 30 31 32 33 34 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 28 def remuneracao_paradigma if Date.new(ano, mes, 1) < Date.new(2013,7,1) self.eventos_e_valores.select{|x| x.tipo == 'RENDIMENTO_REMUNERACAO' && x.status == 'C'} else [] end end |
#subsidio_vantagens_pessoais ⇒ Object
sobrou da show
61 62 63 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 61 def subsidio_vantagens_pessoais self.eventos_e_valores.select{|x| x.tipo == 'RENDIMENTO_VANTAGENS_EVENTUAIS' || x.tipo == 'RENDIMENTO_VANTAGENS_PESSOAIS'} end |
#subsidio_vantagens_pessoais_eventuais ⇒ Object
65 66 67 68 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 65 def subsidio_vantagens_pessoais_eventuais self.eventos_e_valores.select{|x| x.tipo == 'RENDIMENTO_SUBSIDIO_DIFERENCA_FUNCAO' || x.tipo == 'RENDIMENTO_VANTAGENS_PESSOAIS' || (x.tipo == 'RENDIMENTO_VANTAGENS_EVENTUAIS' && x.status == 'C')} end |
#subsidios ⇒ Object
40 41 42 43 44 45 46 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 40 def subsidios if Date.new(ano, mes, 1) < Date.new(2013,7,1) [] else self.eventos_e_valores.select{|x| (x.tipo == 'RENDIMENTO_SUBSIDIO_DIFERENCA_FUNCAO' || x.tipo == 'RENDIMENTO_REMUNERACAO') && x.status == 'C'} end end |
#vantagens_eventuais ⇒ Object
52 53 54 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 52 def vantagens_eventuais self.eventos_e_valores.select{|x| x.tipo == 'RENDIMENTO_VANTAGENS_EVENTUAIS' && x.status == 'C'} end |
#vantagens_pessoais ⇒ Object
36 37 38 |
# File 'app/models/gestorh/folha_agrupada_id_separado.rb', line 36 def vantagens_pessoais self.eventos_e_valores.select{|x| x.tipo == 'RENDIMENTO_VANTAGENS_PESSOAIS' && x.status == 'C'} end |