Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
jodeci committed Dec 28, 2023
2 parents b0412a0 + 9a0103b commit 90b010f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/services/format_service/income.rb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,13 @@ def base_salary
end

def taxfree_lunch
payroll.year >= 2015 ? 2400 : 1800
if payroll.year >= 2024
3000
elsif payroll.year >= 2015
2400
else
1800
end
end

def extra_gain
Expand Down

0 comments on commit 90b010f

Please sign in to comment.