calculate_overtime_pay_fr
Calculate overtime pay in France: first 8 hours overtime at 25% premium, beyond at 50% premium. Input base hourly rate and total overtime hours beyond 35h/week to get breakdown of hours and pay at each rate.
Instructions
Calculate French overtime pay: first 8h at +25%, beyond 8h at +50% (weekly threshold 35h). Returns: {hours_at_25pct, hours_at_50pct, pay_25pct_zone, pay_50pct_zone, total_overtime_pay, extra_vs_normal}. See list_bundles for related 'temps-rh' calculators.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| base_hourly_rate | Yes | Normal hourly rate in euros | |
| overtime_hours | Yes | Total overtime hours worked beyond 35h/week |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | No | Computed result. Object whose fields depend on the tool (e.g. {tax, marginal_rate, brackets} for tax tools, {volume_l, gallons} for volume tools). | |
| formula | No | Human-readable formula or method used (e.g. "I=P·r·t", "Magnus formula"). | |
| source | No | Authoritative source for the rule or formula (e.g. "Article 197 CGI", "NF DTU 21"). | |
| reference_url | No | Link to a calcul2 page documenting the calculation in detail. |