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

residential exemption staff text updates #1614

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
15 changes: 6 additions & 9 deletions ppr-ui/src/resources/exemptions/componentContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const exConfirmRequirements: Array<RequirementsConfigIF> = [
' has been recorded.'
],
note: ' If the Residential Exemption form has been signed by a person acting on behalf of a registered owner, the' +
' qualified supplier submitting this application must provide evidence of the authority by which the signatory' +
' person submitting this application must provide evidence of the authority by which the signatory' +
' was authorized. Such authorization must be granted by one of the following: power of attorney, ' +
'representation agreement, or committee.'
},
Expand All @@ -33,11 +33,11 @@ export const exConfirmRequirements: Array<RequirementsConfigIF> = [
},
{
boldText: 'Must have one of the following ',
regularText: 'that shows the name of the homeowner(s) and home location and at least one of the homeowners as ' +
'also being an owner of the land where the home is located:',
regularText: 'that shows the name and home location and at least one of the homeowners as ' +
'also being an owner or a pending owner of the land where the home is located:',
bullets: [
'Land Title Search, dated within 30 days of today, or',
'Pending freehold transfer'
'evidence of a pending freehold transfer.'
]
},
{
Expand All @@ -53,17 +53,14 @@ export const exConfirmRequirements: Array<RequirementsConfigIF> = [
{
boldText: 'Personal Property Registry search ',
regularText: 'has been completed and there are no liens that block the exemption. PPR registrations that block' +
' the exemption include the following:',
' the exemption, unless a prescribed condition has been met, include the following:',
bullets: [
'Marriage/Separation Agreement Affecting Manufactured Home',
'Land Tax Deferment Lien on a Manufactured Home',
'Maintenance Lien',
'Manufactured Home Notice',
'Possession under s.30 of the Sale of Goods Act'
],
note: 'If there is a Personal Property Security Act (PPSA) security interest registered against this manufactured' +
' home, such registration has been discharged or consent to the exemption application of each secured party' +
' under the security agreement has been obtained.'
]
}
]

Expand Down
16 changes: 8 additions & 8 deletions ppr-ui/src/views/exemption/ExemptionDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class="mt-9"
setMsg="The homeowner and home location information in the residential exemption form, the manufactured home
registry, and the land title must align. If the current MHR registration information is inaccurate, the
register must be updated prior to proceeding with this Application for Residential Exemption."
register must be updated prior to proceeding with this application for Residential Exemption."
/>

<SimpleHelpToggle
Expand All @@ -22,19 +22,19 @@
<template #content>
<article class="px-8 py-2">
<h3 class="text-center">Need Help Verifying Manufactured Home and Owner Details?</h3>
<p class="pt-3">The homeowner and location information in each of the following must align:</p>
<p class="mt-7 mb-0">(a) this Application for Residential Exemption;</p>
<p class="pt-3">The homeowner and location information in each of the following must align on:</p>
<p class="mt-7 mb-0">(a) this application for Residential Exemption;</p>
<p class="mb-0">(b) the current Manufactured Home Registry (MHR) registration; and,</p>
<p>(c) the registered or pending owners and legal land description on the current land title as recorded
in the British Columbia land title and survey system (ltsa.ca).</p>
<p>(c) the current land title as recorded in the British Columbia land title and survey system
(<a href="https://ltsa.ca/">ltsa.ca</a>)(LTSA).</p>
<p class="mt-7">The home location and homeowner(s) named in the Manufactured Home Registry match the home
location and current ownership of the home on the Residential Exemption form.</p>
<p class="mt-7 mb-0">You must have one of the following that shows the name and home location and at least
one of the homeowners as also being an owner of the land where the home is located:</p>
<p class="mb-0">- A Land Title Search, dated within 30 days of today or;</p>
<p>- A pending freehold transfer.</p>
<p class="mb-0">- a Land Title Search, dated within 30 days of today or</p>
<p>- evidence of a pending freehold transfer.</p>
<p class="mt-7">Any differences must be resolved before you proceed. If the current MHR registration
information is inaccurate, the register must be updated prior to proceeding with this Application for
information is inaccurate, the register must be updated prior to proceeding with this application for
Residential Exemption.</p>
</article>
</template>
Expand Down
9 changes: 9 additions & 0 deletions ppr-ui/src/views/exemption/ExemptionReview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@
<ListRequirements
:requirements="isRoleStaffReg ? exConfirmRequirements : exConfirmRequirementsQs"
/>
<p class="mt-4 ml-9 hint-message">
If there is a Personal Property Security Act (PPSA) security interest registered against this manufactured
home, such registration has been discharged or consent to the exemption application of each secured party
under the security agreement has been obtained.
</p>
</template>
</ConfirmCompletion>
</section>
Expand Down Expand Up @@ -250,4 +255,8 @@ export default defineComponent({

<style lang="scss" scoped>
@import '@/assets/styles/theme.scss';

.hint-message{
font-size: 16px !important;
}
</style>