{# ── HEADER ── #}
{# ── EMPLOYER / EMPLOYEE INFO BAND ── #}
Employer
Starz ERP Inc.
Wyoming, USA
Employee
{{ employee_info.firstName|title }} {{ employee_info.lastName|title }}
ID: {{ employee_info.registrationNbr }}
{% if employee_info.workerType == 'w2' %}W-2
{% elseif employee_info.workerType == '1099' %}1099
{% elseif employee_info.workerType == 'both' %}W-2 1099
{% endif %}
SSN (last 4)
{% if employee_info.employeeCnss %}
*** - ** - {{ employee_info.employeeCnss.ssn|slice(-4) }}
{% else %}
N/A
{% endif %}
W-4 Status:
{% if employee_info.employeeCnss %}{{ employee_info.employeeCnss.civilStatus }}{% else %}—{% endif %}
|
Dependents:
{% if employee_info.employeeCnss %}{{ employee_info.employeeCnss.childrenNbr }}{% else %}0{% endif %}
{# ── SECOND INFO BAND: Job / Pay type ── #}
Job Category
{{ employee_info.category|default('—') }}
Pay Type
{% if employee_info.salaryType == 'F' %}Salary (Fixed)
{% elseif employee_info.salaryType == 'H' %}Hourly
{% elseif employee_info.salaryType == 'PR' %}Piece Rate
{% elseif employee_info.salaryType == 'C' %}Commission
{% else %}{{ employee_info.salaryType|default('—') }}
{% endif %}
Base Rate
{{ employee_info.salaryBase|format_currency(display_currency()) }}
{% if salary %}
{# ── EARNINGS ── #}
Earnings
| Description |
Hours |
Rate / Amount |
Current |
| Regular Pay |
— |
{{ salary.baseSalary|format_currency(display_currency()) }} |
{{ salary.baseSalary|format_currency(display_currency()) }} |
{% if salary.overtimeAmount and salary.overtimeAmount > 0 %}
| Overtime Pay (×1.5) |
{{ salary.overtimeHours|default('—') }} |
— |
{{ salary.overtimeAmount|format_currency(display_currency()) }} |
{% endif %}
{% if salary.bonuses and salary.bonuses > 0 %}
| Bonus |
— |
— |
{{ salary.bonuses|format_currency(display_currency()) }} |
{% endif %}
{% if salary.allowances and salary.allowances > 0 %}
| Allowances |
— |
— |
{{ salary.allowances|format_currency(display_currency()) }} |
{% endif %}
| Gross Pay |
{{ salary.grossSalary|format_currency(display_currency()) }} |
{# ── DEDUCTIONS ── #}
Deductions & Withholdings
| Description |
Rate |
Current |
| Federal Income Tax (IRS Pub 15-T) |
Varies |
{{ salary.taxDeduction|format_currency(display_currency()) }} |
| Social Security (FICA) |
6.20% |
{{ (salary.ficaDeduction * 0.062 / 0.0765)|format_currency(display_currency()) }} |
| Medicare (FICA) |
1.45% |
{{ (salary.ficaDeduction * 0.0145 / 0.0765)|format_currency(display_currency()) }} |
| State Income Tax (Wyoming) |
0.00% |
$0.00 |
{% if salary.advanceDeduction and salary.advanceDeduction > 0 %}
| Advance / Loan Repayment |
— |
{{ salary.advanceDeduction|format_currency(display_currency()) }} |
{% endif %}
{% if salary.otherDeductions and salary.otherDeductions > 0 %}
| Other Deductions |
— |
{{ salary.otherDeductions|format_currency(display_currency()) }} |
{% endif %}
| Total Deductions |
{{ (salary.taxDeduction + salary.ficaDeduction + salary.advanceDeduction|default(0) + salary.otherDeductions|default(0))|format_currency(display_currency()) }} |
{# ── NET PAY ── #}
{{ salary.netSalary|format_currency(display_currency()) }}
{% else %}
No payroll record available for this employee.
{% endif %}
{# ── FOOTER ── #}