class PayrolleeCz::IncomeNettoConcept
Public Class Methods
new(tag_code, values)
click to toggle source
Calls superclass method
# File lib/payrollee_cz/concepts/income_netto_concept.rb, line 5 def initialize(tag_code, values) super(PayConceptGateway::REFCON_INCOME_NETTO, tag_code) init_values(values) end
Public Instance Methods
calc_category()
click to toggle source
# File lib/payrollee_cz/concepts/income_netto_concept.rb, line 30 def calc_category PayrollConcept::CALC_CATEGORY_FINAL end
compute_result_value(tag_config, results)
click to toggle source
# File lib/payrollee_cz/concepts/income_netto_concept.rb, line 34 def compute_result_value(tag_config, results) result_income = results.inject(0) do |agr, term_item| term_key = term_item.first term_result = term_item.last agr + sum_term_for(tag_config, tag_code, term_key, term_result) end result_income end
dup_with_value(code, values)
click to toggle source
# File lib/payrollee_cz/concepts/income_netto_concept.rb, line 13 def dup_with_value(code, values) new_concept = self.dup new_concept.init_code(code) new_concept.init_values(values) return new_concept end
evaluate(period, tag_config, results)
click to toggle source
# File lib/payrollee_cz/concepts/income_netto_concept.rb, line 43 def evaluate(period, tag_config, results) result_income = compute_result_value(tag_config, results) result_values = {amount: result_income} AmountResult.new(@tag_code, @code, self, result_values) end
init_values(values)
click to toggle source
# File lib/payrollee_cz/concepts/income_netto_concept.rb, line 10 def init_values(values) end
pending_codes()
click to toggle source
# File lib/payrollee_cz/concepts/income_netto_concept.rb, line 20 def pending_codes [ TaxAdvanceFinalTag.new, TaxWithholdTag.new, TaxBonusChildTag.new, InsuranceHealthTag.new, InsuranceSocialTag.new ] end
sum_term_for(tag_config, tag_code, result_key, result_item)
click to toggle source
# File lib/payrollee_cz/concepts/income_netto_concept.rb, line 51 def sum_term_for(tag_config, tag_code, result_key, result_item) #find_tag(code) instead tag_from_models(CodeNameRefer) - no CodeNameRefer here in result_key tag_config_item = tag_config.find_tag(result_key.code) if result_item.summary_for?(tag_code) if tag_config_item.income_netto? return result_item.payment elsif tag_config_item.deduction_netto? return -result_item.deduction end end return 0 end