Module: SingaporeCPFCalculator::SPR2FGCommon

Included in:
Year2014::SPR2FG, Year2015::SPR2FG, Year2016::SPR2FG
Defined in:
lib/singapore_cpf_calculator/spr_2_fg_common.rb

Overview

Contains the calculators that are used for determining CPF contribution for 2014.

Instance Method Summary collapse

Instance Method Details

#applies_to?(status:, current_date:, spr_start_date:, employee_contribution_type:, employer_contribution_type:) ⇒ true, false

Parameters:

  • status: (String)
    “citizen”, “permanent_resident”, “foreigner”
  • current_date: (Date)

    current date used to determine permanent residency’s duration

  • spr_start_date: (Date)

    date when the permanent residency started

  • employee_contribution_type: (String)
    “full”, “graduated”
  • employer_contribution_type: (String)
    “full”, “graduated”

Returns:

  • (true, false)


12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/singapore_cpf_calculator/spr_2_fg_common.rb', line 12

def applies_to?(
  status:,
  current_date:,
  spr_start_date:,
  employee_contribution_type:,
  employer_contribution_type:
)
  status == "permanent_resident" &&
    SPRStatus.get(current_date, status_start_date: spr_start_date) == :SPR2 &&
    employee_contribution_type == "graduated" &&
    employer_contribution_type == "full"
end