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>
This commit is contained in:
168
activeblue_familylaw/report/report_notice_deposition.xml
Normal file
168
activeblue_familylaw/report/report_notice_deposition.xml
Normal file
@@ -0,0 +1,168 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Notice of Taking Deposition (FL 1.310)
|
||||
Auto-populated from fl.deposition record.
|
||||
Must be served minimum 10 days before deposition (FL 1.310(b)).
|
||||
If Duces Tecum: includes document production list.
|
||||
-->
|
||||
<odoo>
|
||||
<data>
|
||||
|
||||
<record id="action_report_notice_deposition" model="ir.actions.report">
|
||||
<field name="name">Notice of Taking Deposition (FL 1.310)</field>
|
||||
<field name="model">fl.deposition</field>
|
||||
<field name="report_type">qweb-pdf</field>
|
||||
<field name="report_name">activeblue_familylaw.report_notice_deposition</field>
|
||||
<field name="report_file">activeblue_familylaw/report/report_notice_deposition</field>
|
||||
<field name="print_report_name">'Notice of Deposition - ' + object.deponent_id.name</field>
|
||||
<field name="binding_model_id" ref="model_fl_deposition"/>
|
||||
<field name="binding_type">report</field>
|
||||
</record>
|
||||
|
||||
<template id="report_notice_deposition">
|
||||
<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.8;">
|
||||
|
||||
<!-- Court Header -->
|
||||
<div style="text-align: center; margin-bottom: 20px;">
|
||||
IN THE CIRCUIT COURT OF THE ELEVENTH JUDICIAL CIRCUIT<br/>
|
||||
IN AND FOR MIAMI-DADE COUNTY, FLORIDA<br/>
|
||||
FAMILY DIVISION
|
||||
</div>
|
||||
|
||||
<!-- Caption -->
|
||||
<table style="width: 100%; margin-bottom: 20px; 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>
|
||||
|
||||
<!-- Title -->
|
||||
<div style="text-align: center; font-size: 13pt; font-weight: bold; margin-bottom: 20px; text-decoration: underline;">
|
||||
NOTICE OF TAKING DEPOSITION
|
||||
<t t-if="o.duces_tecum"> DUCES TECUM</t>
|
||||
</div>
|
||||
|
||||
<!-- Notice text -->
|
||||
<div style="margin-bottom: 16px;">
|
||||
PLEASE TAKE NOTICE that, pursuant to Rule 1.310, Florida Rules of Civil Procedure,
|
||||
the undersigned will take the deposition upon oral examination of:
|
||||
</div>
|
||||
|
||||
<!-- Deponent info box -->
|
||||
<div style="border: 2px solid #000; padding: 16px; margin-bottom: 20px; font-size: 11pt;">
|
||||
<table style="width: 100%;">
|
||||
<tr>
|
||||
<td style="width: 30%; font-weight: bold;">Deponent:</td>
|
||||
<td><strong><t t-esc="o.deponent_id.name"/></strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-weight: bold;">Deponent Type:</td>
|
||||
<td><t t-esc="dict([('opposing_party','Opposing Party'),('employer','Employer'),('accountant_cpa','Accountant/CPA'),('business_partner','Business Partner'),('vocational_expert','Vocational Expert'),('witness','Witness'),('other','Other')]).get(o.deponent_type, o.deponent_type)"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-weight: bold;">Date & Time:</td>
|
||||
<td><strong><t t-esc="o.scheduled_date or '__________________________'"/></strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-weight: bold;">Location:</td>
|
||||
<td><t t-esc="o.location or '__________________________'"/></td>
|
||||
</tr>
|
||||
<t t-if="o.court_reporter">
|
||||
<tr>
|
||||
<td style="font-weight: bold;">Court Reporter:</td>
|
||||
<td><t t-esc="o.court_reporter"/></td>
|
||||
</tr>
|
||||
</t>
|
||||
<tr>
|
||||
<td style="font-weight: bold;">Max Duration:</td>
|
||||
<td>Up to <t t-esc="o.max_duration_hours or 7"/> hour(s) [FL 1.310(d): 7-hour maximum per day]</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Purpose -->
|
||||
<div style="margin-bottom: 16px;">
|
||||
The deposition will cover matters relevant to the determination of income,
|
||||
financial circumstances, and child support obligations in this proceeding
|
||||
pursuant to Section 61.30, Florida Statutes.
|
||||
</div>
|
||||
|
||||
<!-- Duces Tecum Section -->
|
||||
<t t-if="o.duces_tecum">
|
||||
<div style="border: 2px solid #000; padding: 16px; margin-bottom: 20px; background: #fff3cd;">
|
||||
<div style="font-weight: bold; font-size: 12pt; text-align: center; margin-bottom: 12px; text-decoration: underline;">
|
||||
DUCES TECUM — DOCUMENTS TO BE PRODUCED
|
||||
</div>
|
||||
<div style="margin-bottom: 8px;">
|
||||
YOU ARE FURTHER NOTIFIED that you are required to bring to the
|
||||
deposition the following documents:
|
||||
</div>
|
||||
<t t-if="o.duces_tecum_items">
|
||||
<div style="margin-left: 20px; white-space: pre-line; font-size: 10pt;">
|
||||
<t t-esc="o.duces_tecum_items"/>
|
||||
</div>
|
||||
</t>
|
||||
<t t-else="">
|
||||
<ol style="font-size: 10pt;">
|
||||
<li>Federal income tax returns for the last three (3) years, including all schedules and attachments;</li>
|
||||
<li>All W-2 forms and 1099 forms for the last three (3) years;</li>
|
||||
<li>Pay stubs or payroll records for the last six (6) months;</li>
|
||||
<li>Bank statements for all accounts for the last twelve (12) months;</li>
|
||||
<li>Business financial statements (profit and loss, balance sheet) if self-employed;</li>
|
||||
<li>Corporate or partnership tax returns if applicable;</li>
|
||||
<li>Any documents reflecting all sources of income, including bonuses, commissions, and benefits.</li>
|
||||
</ol>
|
||||
</t>
|
||||
</div>
|
||||
</t>
|
||||
|
||||
<!-- FL 1.310(b) Notice -->
|
||||
<div style="font-size: 10pt; font-style: italic; margin-bottom: 20px;">
|
||||
Note: This notice is provided pursuant to Rule 1.310(b), Florida Rules of
|
||||
Civil Procedure. A deposition may be taken upon reasonable notice (minimum
|
||||
10 days). The taking of depositions is subject to all applicable protective
|
||||
orders under Rule 1.280.
|
||||
</div>
|
||||
|
||||
<!-- Signature Block -->
|
||||
<div style="margin-top: 30px;">
|
||||
Respectfully submitted,<br/><br/><br/>
|
||||
<div style="border-top: 1px solid #000; width: 60%; padding-top: 4px;">
|
||||
<t t-esc="o.case_id.petitioner_id.name if o.case_id.petitioner_id else '__________________'"/>, Pro Se Petitioner
|
||||
</div>
|
||||
<div style="margin-top: 4px;">Date: ______________________</div>
|
||||
</div>
|
||||
|
||||
<!-- Certificate of Service -->
|
||||
<div style="margin-top: 20px; border-top: 1px solid #000; padding-top: 12px; font-size: 10pt;">
|
||||
<strong style="text-decoration: underline;">CERTIFICATE OF SERVICE</strong><br/>
|
||||
I hereby certify that a copy of the foregoing has been served upon
|
||||
<t t-esc="o.deponent_id.name"/>
|
||||
and all counsel of record by [ ] U.S. Mail [ ] Email [ ] Hand Delivery
|
||||
on _______________________, 20____.
|
||||
</div>
|
||||
|
||||
<!-- Disclaimer -->
|
||||
<div style="margin-top: 12px; font-size: 8pt; color: #666; border-top: 1px solid #ccc; padding-top: 6px;">
|
||||
Generated by ActiveBlue Family Law. Verify all information before serving.
|
||||
Case: <t t-esc="o.case_id.name"/> | Generated: <t t-esc="context_today()"/>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</t>
|
||||
</t>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
</data>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user