Eligible employee
Parental Leave Boolean MONTH Person Formula Included used 0 timesValue type Boolean . Default value false Entity person
How is this calculated?
To calculate this variable, the following input is used
- Boolean is_nz_citizen New Zealand citizen means a person who has New Zealand citizenship as provided in the Citizenship Act 1977 or the Citizenship (Western Samoa) Act 1982
- Boolean parental_leave__applied_for_leave_or_stopped_working Has applied for/taken leave or stopped working immediately
- Boolean parental_leave__had_previous_parental_leave_in_last_six_months Had previous parental leave in last six months
- Boolean parental_leave__is_primary_carer Is primary carer, as per Parental Leave and Employment Protection Act 1987
- Boolean parental_leave__a_person_other_than_biological_mother_or_her_spouse a person, other than the biological mother or her spouse or partner
- Boolean parental_leave__is_the_biological_mother a female (the biological mother) who is pregnant or has given birth to a child
- Boolean parental_leave__has_spouse_who_transferred_her_entitlement is the spouse of the biological mother, and she transferred her entitlement to this spouse
- Boolean parental_leave__is_spouse_or_partner_of_the_biological_mother the spouse or partner of the biological mother
- Boolean parental_leave__family_includes_biological_mother_as_partner
- Boolean parental_leave__is_the_biological_mother a female (the biological mother) who is pregnant or has given birth to a child
- Boolean parental_leave__is_the_biological_mother a female (the biological mother) who is pregnant or has given birth to a child
- Boolean parental_leave__transferred_her_entitlement_to_spouse has transferred all or part of her entitlement to a parental leave payment to that spouse or partner
- Boolean parental_leave__is_spouse_or_partner_of_the_biological_mother the spouse or partner of the biological mother
- Boolean parental_leave__family_includes_biological_mother_as_partner
- Boolean parental_leave__is_the_biological_mother a female (the biological mother) who is pregnant or has given birth to a child
- Boolean parental_leave__is_the_biological_mother a female (the biological mother) who is pregnant or has given birth to a child
- Boolean parental_leave__is_the_biological_mother a female (the biological mother) who is pregnant or has given birth to a child
- Boolean parental_leave__taking_permanent_primary_responsibility_for_child taking permanent primary responsibility for the care, development, and upbringing of a child who is under the age of 6 years (and if there is more than 1 such person, the person nominated in accordance with subsection (2)).
- Int parental_leave__threshold_tests satisfies Parental Leave Threshold Tests (tests are used to determine an employee's entitlements to parental leave)
Formulas
This is the formula used to calculate the value of parental_leave__eligible_employee
0001-01-01
This formula is used for scenarios from the date 0001-01-01 onwards. More info on formulas
def formula(persons, period, parameters):
is_citizen = persons('is_nz_citizen', period)
return is_citizen * persons('parental_leave__is_primary_carer', period) * \
persons('parental_leave__applied_for_leave_or_stopped_working', period) * \
(persons('parental_leave__threshold_tests', period) >= 6) * \
not_(persons('parental_leave__had_previous_parental_leave_in_last_six_months', period))