class PayrolleeCz::PayrollTag

Attributes

concept[R]

Public Class Methods

new(code_refer, concept) click to toggle source
Calls superclass method PayrolleeCz::CodeNameRefer::new
# File lib/payrollee_cz/core_items/payroll_tag.rb, line 5
def initialize(code_refer, concept)
  super(code_refer.code, code_refer.name)
  @concept = concept
end

Public Instance Methods

concept_code() click to toggle source
# File lib/payrollee_cz/core_items/payroll_tag.rb, line 18
def concept_code
  concept.code
end
concept_name() click to toggle source
# File lib/payrollee_cz/core_items/payroll_tag.rb, line 22
def concept_name
  concept.name
end
deduction_netto?() click to toggle source
# File lib/payrollee_cz/core_items/payroll_tag.rb, line 46
def deduction_netto?
  false
end
description() click to toggle source
# File lib/payrollee_cz/core_items/payroll_tag.rb, line 14
def description
  name
end
income_gross?() click to toggle source
# File lib/payrollee_cz/core_items/payroll_tag.rb, line 38
def income_gross?
  false
end
income_netto?() click to toggle source
# File lib/payrollee_cz/core_items/payroll_tag.rb, line 42
def income_netto?
  false
end
insurance_health?() click to toggle source
# File lib/payrollee_cz/core_items/payroll_tag.rb, line 26
def insurance_health?
  false
end
insurance_social?() click to toggle source
# File lib/payrollee_cz/core_items/payroll_tag.rb, line 30
def insurance_social?
  false
end
tax_advance?() click to toggle source
# File lib/payrollee_cz/core_items/payroll_tag.rb, line 34
def tax_advance?
  false
end
title() click to toggle source
# File lib/payrollee_cz/core_items/payroll_tag.rb, line 10
def title
  name
end