Fix % calculation of work_amount
If someone works for a month with 50% effort, calculated work amount should be 80 hours. Current formula outputs 8000 hours.
Either divide self.work_percent
by 100 or divide self.defaults['DAYS_IN_MONTH'] * self.defaults['HOURS_IN_DAY'] * self.work_percent
by 100 to fix.