Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Portal disposition methods so more offenses show on petitions #501

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions dear_petition/petition/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,17 +112,23 @@
PORTAL_DISPOSITION_METHODS_DISMISSED = (
"VD-District Dismissals w/o Leave by DA - No Plea Agreement",
"VD-Superior Dismissals w/o Leave by DA - No Plea Agreement",
"VD-District Dismissals w/o Leave by DA - Per Plea Agreement",
"Superior Dismissed by the Court - No Plea Agreement",
"District Dismissed by the Court - No Plea Agreement",
"No Probable Cause Found",
"Superior Deferred Proceeding/Prosecution Dismissal",
)

PORTAL_DISPOSITION_METHODS_NOT_GUILTY = (
"District Not Guilty - Judge",
"Superior Not Guilty - Judge"
"Superior Not Guilty - Judge",
"Not Guilty - Jury",
)

PORTAL_DISPOSITION_METHODS_CONVICTED = (
"District Guilty - Judge",
"Superior Guilty - Judge"
"Superior Guilty - Judge",
"Guilty - Jury",
)

DISP_METHOD_SUPERSEDING_INDICTMENT = "SUPERSEDING INDICTMENT OR PROCESS"
Expand Down
Loading