Commit 69bab527 authored by Kevin Deldycke's avatar Kevin Deldycke

Fix bad comparison on pre_calculation scripts.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@9363 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 9e2e3dda
......@@ -303,7 +303,7 @@ default[\'unemployment_insurance/salaire_brut\'] = \\\n
# FNGS\n
# Employer rate has changed starting from jul, 1st 2006\n
fngs_employer_rate = 0.25\n
if stop_date < DateTime(2006, 7, 1):\n
if start_date >= DateTime(2006, 7, 1):\n
fngs_employer_rate = 0.15\n
default[\'fngs/salaire_brut\'] = \\\n
{ \'employer_rate\' : fngs_employer_rate\n
......@@ -462,7 +462,7 @@ if executive:\n
# }\n
\n
# Syntec convention\n
# TOD0: We can\'t take the decision based on the CollectiveAgreementTitle since each\n
# TODO: We can\'t take the decision based on the CollectiveAgreementTitle since each\n
# employee has the right to choose if they want benefit from the insurance or not.\n
# We can use instead the social_contract property of the (near-)future HR-related stuff.\n
col_agr = employee.getCareerCollectiveAgreementTitle()\n
......
2006-08-23 Kevin
* Fix bad comparison on pre_calculation.
2006-08-18 Kevin
* French payroll rate updated.
......
15
\ No newline at end of file
20
\ No newline at end of file
0.1.7
\ No newline at end of file
0.1.8
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment