Skip to content

Commit

Permalink
update the fee amounts of Restraining Order, Confidential Note, Publi…
Browse files Browse the repository at this point in the history
…c Note (bcgov#1599)
  • Loading branch information
RuoxuanPengBC committed Oct 25, 2023
1 parent 4354f36 commit 83c7902
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
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

0 comments on commit 83c7902

Please sign in to comment.