Files
famlaw/activeblue_familylaw/report/report_fee_waiver.xml
Carlos Garcia 7a7463a2d1 Phase 4: QWeb PDF reports (12 court documents)
Financial affidavits (FL-12.902(b)/(c)), child support worksheet
(FL-12.902(e)), motion to modify (FL 61.14), notice of deposition
(FL 1.310), motion to compel (FL 1.380), income withholding order
(FL 61.1301/FL SDU), fee waiver application (FL 57.082), SSN notice
(FL-12.930(a) — filed under seal), mandatory disclosure certificate
(FL-12.932), default motion packet (FL 12.922 — 3-part), and parenting
plan (FL-12.995(a)). All 12 reports registered in __manifest__.py.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-04 23:34:37 -04:00

247 lines
17 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<!-- FL 57.082 — Application for Civil Indigent Status
Auto-populated from fl.fee.waiver record.
Used to waive court filing fees and mediator fees for qualifying parties.
Eligibility: income <= 200% Federal Poverty Level (FPL) per FL 57.082.
Mediator waiver: separate threshold per FL 44.108.
-->
<odoo>
<data>
<record id="action_report_fee_waiver" model="ir.actions.report">
<field name="name">Application for Civil Indigent Status (FL 57.082)</field>
<field name="model">fl.fee.waiver</field>
<field name="report_type">qweb-pdf</field>
<field name="report_name">activeblue_familylaw.report_fee_waiver</field>
<field name="report_file">activeblue_familylaw/report/report_fee_waiver</field>
<field name="print_report_name">'Fee Waiver Application - ' + object.case_id.name</field>
<field name="binding_model_id" ref="model_fl_fee_waiver"/>
<field name="binding_type">report</field>
</record>
<template id="report_fee_waiver">
<t t-call="web.html_container">
<t t-foreach="docs" t-as="o">
<t t-call="web.external_layout">
<div class="page" style="font-family: Times New Roman, serif; font-size: 11pt; line-height: 1.7;">
<!-- Court Header -->
<div style="text-align: center; margin-bottom: 16px;">
IN THE CIRCUIT COURT OF THE ELEVENTH JUDICIAL CIRCUIT<br/>
IN AND FOR MIAMI-DADE COUNTY, FLORIDA<br/>
FAMILY DIVISION
</div>
<!-- Title -->
<div style="text-align: center; font-size: 14pt; font-weight: bold; margin-bottom: 4px; text-decoration: underline;">
APPLICATION FOR CIVIL INDIGENT STATUS
</div>
<div style="text-align: center; font-size: 10pt; margin-bottom: 16px; color: #333;">
Section 57.082, Florida Statutes
</div>
<!-- Caption -->
<table style="width: 100%; margin-bottom: 16px; border-collapse: collapse;">
<tr>
<td style="width: 55%; vertical-align: top; padding-right: 20px;">
<t t-esc="o.case_id.petitioner_id.name if o.case_id.petitioner_id else '__________________'"/>, Petitioner,<br/>
vs.<br/>
<t t-esc="o.case_id.respondent_id.name if o.case_id.respondent_id else '__________________'"/>, Respondent.
</td>
<td style="width: 45%; border-left: 1px solid #000; padding-left: 20px; vertical-align: top;">
Case No.: <t t-esc="o.case_id.court_case_number or '____________________'"/><br/>
Division: <t t-esc="o.case_id.division or '___'"/>
</td>
</tr>
</table>
<!-- Eligibility Result Banner -->
<t t-if="o.is_eligible">
<div style="border: 2px solid #28a745; padding: 10px; margin-bottom: 16px; background: #d4edda; text-align: center; font-size: 11pt; font-weight: bold;">
✓ PRELIMINARY ELIGIBILITY: APPLICANT APPEARS TO QUALIFY FOR FEE WAIVER<br/>
<span style="font-size: 9pt; font-weight: normal;">
Annual Income: $<t t-esc="'%,.2f' % (o.annual_income or 0.0)"/> |
FPL Threshold (200%): $<t t-esc="'%,.2f' % (o.fpl_threshold_200 or 0.0)"/>
</span>
</div>
</t>
<t t-else="">
<div style="border: 2px solid #dc3545; padding: 10px; margin-bottom: 16px; background: #f8d7da; text-align: center; font-size: 11pt; font-weight: bold;">
✗ PRELIMINARY REVIEW: INCOME MAY EXCEED ELIGIBILITY THRESHOLD<br/>
<span style="font-size: 9pt; font-weight: normal;">
Annual Income: $<t t-esc="'%,.2f' % (o.annual_income or 0.0)"/> |
FPL Threshold (200%): $<t t-esc="'%,.2f' % (o.fpl_threshold_200 or 0.0)"/>
— The clerk will make the final determination.
</span>
</div>
</t>
<!-- PART I: APPLICANT INFO -->
<div style="font-weight: bold; background: #e9ecef; padding: 5px; margin-bottom: 8px; font-size: 10pt; border-left: 4px solid #003366;">
PART I — APPLICANT INFORMATION
</div>
<table style="width: 100%; font-size: 10pt; border-collapse: collapse; margin-bottom: 12px;">
<tr>
<td style="padding: 4px; width: 30%; font-weight: bold;">Full Legal Name:</td>
<td style="padding: 4px;"><t t-esc="o.party_id.name if o.party_id else '_______________________________'"/></td>
<td style="padding: 4px; width: 20%; font-weight: bold;">Date of Birth:</td>
<td style="padding: 4px;"><t t-esc="str(o.party_id.date_of_birth) if o.party_id and o.party_id.date_of_birth else '________________'"/></td>
</tr>
<tr>
<td style="padding: 4px; font-weight: bold;">Address:</td>
<td colspan="3" style="padding: 4px;">
<t t-if="o.party_id and o.party_id.street">
<t t-esc="o.party_id.street"/>, <t t-esc="o.party_id.city"/>, FL <t t-esc="o.party_id.zip"/>
</t>
<t t-else="">_____________________________________________</t>
</td>
</tr>
<tr>
<td style="padding: 4px; font-weight: bold;">Phone:</td>
<td style="padding: 4px;"><t t-esc="o.party_id.phone if o.party_id else '___________________'"/></td>
<td style="padding: 4px; font-weight: bold;">Email:</td>
<td style="padding: 4px;"><t t-esc="o.party_id.email if o.party_id else '___________________'"/></td>
</tr>
<tr>
<td style="padding: 4px; font-weight: bold;">Role in Case:</td>
<td colspan="3" style="padding: 4px;">[ ] Petitioner &nbsp;&nbsp; [ ] Respondent</td>
</tr>
</table>
<!-- PART II: INCOME -->
<div style="font-weight: bold; background: #e9ecef; padding: 5px; margin-bottom: 8px; font-size: 10pt; border-left: 4px solid #003366;">
PART II — INCOME INFORMATION
</div>
<table style="width: 100%; font-size: 10pt; border-collapse: collapse; margin-bottom: 12px;">
<tr>
<td style="padding: 4px; width: 55%; font-weight: bold;">Number of persons in household:</td>
<td style="padding: 4px;"><t t-esc="o.household_size or '____'"/></td>
</tr>
<tr>
<td style="padding: 4px; font-weight: bold;">Monthly Gross Income (all sources):</td>
<td style="padding: 4px;">$<t t-esc="'%,.2f' % (o.monthly_income or 0.0)"/></td>
</tr>
<tr>
<td style="padding: 4px; font-weight: bold;">Annual Gross Income (× 12):</td>
<td style="padding: 4px;"><strong>$<t t-esc="'%,.2f' % (o.annual_income or 0.0)"/></strong></td>
</tr>
<tr style="background: #f8f9fa;">
<td style="padding: 4px; font-weight: bold;">Federal Poverty Level (200%) for household of <t t-esc="o.household_size or '___'"/>:</td>
<td style="padding: 4px;">$<t t-esc="'%,.2f' % (o.fpl_threshold_200 or 0.0)"/>/year</td>
</tr>
</table>
<!-- PART III: INCOME SOURCES -->
<div style="font-weight: bold; background: #e9ecef; padding: 5px; margin-bottom: 8px; font-size: 10pt; border-left: 4px solid #003366;">
PART III — SOURCES OF INCOME (Check all that apply)
</div>
<div style="font-size: 10pt; margin-bottom: 12px; line-height: 2.0;">
[ ] Employment wages/salary: $________ /month<br/>
[ ] Self-employment / business income: $________ /month<br/>
[ ] Social Security / SSI: $________ /month<br/>
[ ] Unemployment compensation: $________ /month<br/>
[ ] Workers' Compensation: $________ /month<br/>
[ ] Child support received: $________ /month<br/>
[ ] Alimony received: $________ /month<br/>
[ ] Pension / retirement / IRA distributions: $________ /month<br/>
[ ] Rental income: $________ /month<br/>
[ ] Public assistance (food stamps, welfare, Medicaid): $________ /month<br/>
[ ] Other: ________________________ $________ /month
</div>
<!-- PART IV: ASSETS -->
<div style="font-weight: bold; background: #e9ecef; padding: 5px; margin-bottom: 8px; font-size: 10pt; border-left: 4px solid #003366;">
PART IV — ASSETS
</div>
<div style="font-size: 10pt; margin-bottom: 12px; line-height: 2.0;">
Cash on hand / bank accounts: $________<br/>
Real property (value): $________ &nbsp;&nbsp; Mortgage/lien: $________<br/>
Vehicles (value): $________ &nbsp;&nbsp; Loan balance: $________<br/>
Other assets: $________
</div>
<!-- PART V: PUBLIC BENEFITS -->
<div style="font-weight: bold; background: #e9ecef; padding: 5px; margin-bottom: 8px; font-size: 10pt; border-left: 4px solid #003366;">
PART V — PUBLIC BENEFITS (Auto-Qualify under FL 57.082(1)(b))
</div>
<div style="font-size: 10pt; margin-bottom: 12px; line-height: 2.0;">
Are you currently receiving any of the following benefits?<br/>
[ ] Temporary Assistance for Needy Families (TANF)<br/>
[ ] Supplemental Security Income (SSI)<br/>
[ ] Medicaid (income-based)<br/>
[ ] Food Stamps (SNAP)<br/>
If YES to any of the above, you automatically qualify under FL 57.082(1)(b).
</div>
<!-- PART VI: MEDIATOR WAIVER -->
<div style="font-weight: bold; background: #e9ecef; padding: 5px; margin-bottom: 8px; font-size: 10pt; border-left: 4px solid #003366;">
PART VI — MEDIATOR FEE WAIVER REQUEST (FL 44.108)
</div>
<div style="font-size: 10pt; margin-bottom: 12px;">
<t t-if="o.mediator_waiver_eligible">
<div style="color: #28a745; font-weight: bold;">
✓ Applicant also appears to qualify for reduced/waived mediator fees under FL 44.108.
</div>
</t>
<t t-else="">
[ ] I also request a waiver of mediator fees pursuant to Section 44.108, Florida Statutes.
</t>
<div style="margin-top: 6px;">
<strong>Basis for mediator fee waiver:</strong><br/>
[ ] Income-based (same threshold as above)<br/>
[ ] Receiving public assistance (TANF, SSI, Medicaid, SNAP)
</div>
</div>
<!-- Oath -->
<div style="border: 1px solid #000; padding: 10px; margin-top: 12px; font-size: 10pt;">
<strong>OATH:</strong><br/>
I, <t t-esc="o.party_id.name if o.party_id else '__________________________'"/>, hereby swear or affirm
under penalty of perjury that the information provided in this Application is true and
correct to the best of my knowledge. I understand that the clerk will make the final
determination of indigent status and that the court may review this determination.
I further understand that if I am found to have provided false information, I may
be required to pay all fees, costs, and potentially face criminal penalties.
</div>
<!-- Signature -->
<div style="margin-top: 20px;">
<table style="width: 100%;">
<tr>
<td style="width: 55%;">
<div style="border-top: 1px solid #000; margin-top: 50px; padding-top: 4px;">
Signature of Applicant
</div>
</td>
<td style="padding-left: 20px;">
<div style="margin-top: 20px;">Date: ______________________</div>
</td>
</tr>
</table>
</div>
<!-- Clerk Use Only -->
<div style="border: 2px solid #000; padding: 10px; margin-top: 16px; font-size: 10pt;">
<strong>FOR CLERK USE ONLY:</strong><br/><br/>
[ ] APPROVED — Civil indigent status granted. Filing fees waived.<br/>
[ ] DENIED — Income exceeds threshold. Filing fee required: $________<br/>
[ ] DEFERRED — Additional documentation required.<br/><br/>
Clerk Signature: _________________________ Date: _________________<br/>
Determination No.: _________________________
</div>
<!-- Disclaimer -->
<div style="margin-top: 10px; font-size: 8pt; color: #666; border-top: 1px solid #ccc; padding-top: 6px;">
Generated by ActiveBlue Family Law. FPL figures effective January 2025.
Verify current FPL at HHS.gov before filing. Case: <t t-esc="o.case_id.name"/> | Generated: <t t-esc="context_today()"/>
</div>
</div>
</t>
</t>
</t>
</template>
</data>
</odoo>