-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #613 from fecgov/feature/558
Feature/558 Generic dot_fec_composer
- Loading branch information
Showing
10 changed files
with
133 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
django-backend/fecfiler/reports/migrations/0005_form99_text.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.1.3 on 2023-11-22 13:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('reports', '0004_form1m_report_form_1m'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='form99', | ||
name='text', | ||
field=models.TextField(blank=True, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
django-backend/fecfiler/web_services/fixtures/test_f99.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[ | ||
{ | ||
"model": "reports.Form99", | ||
"fields": { | ||
"id": "11111111-1111-1111-1111-111111111111", | ||
"street_1": "test_string_value", | ||
"street_2": "test_string_value", | ||
"city": "test_string_value", | ||
"state": "test_string_value", | ||
"zip": "test_string_value", | ||
"text_code": "ABC", | ||
"text": "\nBEHOLD! A large text string\nwith new lines" | ||
} | ||
}, | ||
{ | ||
"model": "reports.report", | ||
"fields": { | ||
"id": "11111111-1111-1111-1111-111111111111", | ||
"form_99_id": "11111111-1111-1111-1111-111111111111", | ||
"committee_account_id": "735db943-9446-462a-9be0-c820baadb622", | ||
"form_type": "F99", | ||
"report_code": "Q1", | ||
"calculation_status": null, | ||
"coverage_from_date": "2005-01-30", | ||
"coverage_through_date": "2005-02-28", | ||
"treasurer_last_name": "Lastname", | ||
"treasurer_first_name": "Firstname", | ||
"treasurer_middle_name": "test_string_value", | ||
"treasurer_prefix": "test_string_value", | ||
"treasurer_suffix": "test_string_value", | ||
"date_signed": "2004-07-29", | ||
"created": "2022-02-09T00:00:00.000Z", | ||
"updated": "2022-02-09T00:00:00.000Z" | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters