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

update the fee amounts of Restraining Order, Confidential Note, Publi… #1599

Merged
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions ppr-ui/src/composables/fees/enums/feeSummaryDefaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export enum FeeSummaryDefaults {
SEARCH_12 = 'feeSearch12',
SEARCH_15 = 'feeSearch15',
UNIT_NOTE_10 = 'unitNote10',
UNIT_NOTE_15 = 'unitNote15',
UNIT_NOTE_20 = 'unitNote20',
UNIT_NOTE_50 = 'unitNote50'
}
6 changes: 6 additions & 0 deletions ppr-ui/src/composables/fees/resources/feeSummaries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ export const defaultFeeSummaries = {
quantity: 1,
serviceFee: 0
} as FeeSummaryI,
[FeeSummaryDefaults.UNIT_NOTE_15]: {
feeAmount: 15,
processingFee: 0,
quantity: 1,
serviceFee: 0
} as FeeSummaryI,
[FeeSummaryDefaults.UNIT_NOTE_20]: {
feeAmount: 20,
processingFee: 0,
Expand Down
6 changes: 3 additions & 3 deletions ppr-ui/src/resources/unitNotes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,17 @@ export const UnitNotesInfo: Record<UnitNoteDocTypes, UnitNoteInfoIF> = {
[UnitNoteDocTypes.CONFIDENTIAL_NOTE]: {
header: 'Confidential Note',
dropdownText: 'Confidential Note',
fee: FeeSummaryDefaults.NO_FEE
fee: FeeSummaryDefaults.UNIT_NOTE_15
},
[UnitNoteDocTypes.PUBLIC_NOTE]: {
header: 'Public Note',
dropdownText: 'Public Note',
fee: FeeSummaryDefaults.NO_FEE
fee: FeeSummaryDefaults.UNIT_NOTE_15
},
[UnitNoteDocTypes.RESTRAINING_ORDER]: {
header: 'Restraining Order',
dropdownText: 'Restraining Order',
fee: FeeSummaryDefaults.UNIT_NOTE_20
fee: FeeSummaryDefaults.UNIT_NOTE_15
},
[UnitNoteDocTypes.NOTICE_OF_TAX_SALE]: {
header: 'Notice of Tax Sale',
Expand Down