-
Notifications
You must be signed in to change notification settings - Fork 75
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
25188 - court order filing added #3203
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -288,6 +288,19 @@ class Source(Enum): | |
'CCC': 'CRCTN', | ||
} | ||
}, | ||
'courtOrder': { | ||
'name': 'courtOrder', | ||
'title': 'Court Order', | ||
'codes': { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. courtOrder is applicable for all legalTypes https://github.com/bcgov/lear/blob/main/legal-api/src/legal_api/services/authz.py#L258. Check what should be the fee code for other legalTypes There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Mihai-QuickSilverDev hey mihai, could you please provide any information on this fee codes |
||
'BEN': 'COURT', | ||
'BC': 'COURT', | ||
'ULC': 'COURT', | ||
'CC': 'COURT', | ||
'C': 'COURT', | ||
'CUL': 'COURT', | ||
'CCC': 'COURT', | ||
} | ||
}, | ||
'dissolution': { | ||
'name': 'dissolution', | ||
'voluntary': { | ||
|
@@ -447,7 +460,6 @@ class Source(Enum): | |
# changing the structure of fee code in courtOrder/registrarsNotation/registrarsOrder | ||
# for all the business the fee code remain same as NOFEE (Staff) | ||
'adminFreeze': {'name': 'adminFreeze', 'title': 'Admin Freeze', 'code': 'NOFEE'}, | ||
'courtOrder': {'name': 'courtOrder', 'title': 'Court Order', 'code': 'NOFEE'}, | ||
'putBackOff': {'name': 'putBackOff', 'title': 'Put Back Off', 'code': 'NOFEE'}, | ||
'putBackOn': {'name': 'putBackOn', 'title': 'Put Back On', 'code': 'NOFEE'}, | ||
'registrarsNotation': {'name': 'registrarsNotation', 'title': 'Registrars Notation', 'code': 'NOFEE'}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
displayName
should not be removed. Please revert this.