Skip to content

Commit

Permalink
Update Confirm Completion copy for Transport Permit (#1772)
Browse files Browse the repository at this point in the history
Update Confirm Completion text for Transport Permits
  • Loading branch information
dimak1 authored Mar 7, 2024
1 parent 148baa1 commit 1d35b28
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 7 deletions.
4 changes: 2 additions & 2 deletions ppr-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ppr-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ppr-ui",
"version": "3.0.58",
"version": "3.0.59",
"private": true,
"appName": "Assets UI",
"sbcName": "SBC Common Components",
Expand Down
11 changes: 9 additions & 2 deletions ppr-ui/src/components/mhrTransfers/ConfirmCompletion.vue
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,11 @@
data-test-id="confirm-checkbox-label"
:class="{ 'error-text': showErrorComponent }"
>
<span v-if="isTransportPermit">I, <strong>{{ legalName }}</strong>,
<span v-if="isAmendTransportPermit">I, <strong>{{ legalName }}</strong>,
confirm that I am duly authorized to submit this Transport Permit and I
understand the conditions and have completed the requirements listed above.
</span>
<span v-else-if="isTransportPermit">I, <strong>{{ legalName }}</strong>,
confirm that I am duly authorized to submit this registration and I
understand the conditions and have completed the requirements listed above.
</span>
Expand Down Expand Up @@ -387,13 +391,16 @@ export default defineComponent({
const {
isChangeLocationActive,
isChangeLocationEnabled
isChangeLocationEnabled,
isAmendLocationActive
} = useTransportPermits()
const localState = reactive({
showErrorComponent: computed((): boolean => {
return (props.setShowErrors && !localState.confirmCompletion)
}),
isAmendTransportPermit: computed((): boolean =>
isChangeLocationEnabled.value && isChangeLocationActive.value && isAmendLocationActive.value),
isTransportPermit: computed((): boolean =>
isChangeLocationEnabled.value && isChangeLocationActive.value),
confirmCompletion: false,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<template>
<ol
id="confirm-transport-permit"
class="pl-6"
>
<li>
<strong>The homeowner(s) named in the Manufactured Home Registry match</strong>
the current ownership of the home on the Transportation Application form.
<v-divider class="my-6 ml-n8" />
</li>
<li>
<strong>A
<v-tooltip
location="top"
contentClass="top-tooltip pa-5"
transition="fade-transition"
>
<template #activator="{ props }">
<span
class="underline"
v-bind="props"
>tax collector’s clearance certificate for transport purposes</span>
</template>
A certificate or confirmation in electronic format that confirms that no
property taxes are unpaid. Reference Manufactured Home Act sections 25 and 26(2).
</v-tooltip></strong>
which shows the following:
<ol
type="a"
class="mt-1"
>
<li>
all local taxes for the current year have been paid
</li>
<li>original location of the home matches the location on the tax certificate</li>
</ol>
<p class="mt-5">
<strong>Note: </strong>A tax certificate is not required for manufactured homes that are located on a
manufacturer or a dealer's lot, or moving to a different pad within the same park.
</p>
<v-divider class="my-6 ml-n8" />
</li>
<li>
<strong>Personal Property Registry search has been completed</strong> and there are no liens that block
the transport permit. PPR registrations that block the transport permit include the following:
<ul
class="mt-1"
>
<li>Land Tax Deferment Lien on a Manufactured Home</li>
<li>Maintenance Lien</li>
<li>Manufactured Home Notice</li>
</ul>
<v-divider class="my-6 ml-n8" />
</li>
<li>
<strong>If the manufactured home is not moved before the transport permit expires</strong>,
you must report the physical location of the manufactured home within 3 days of expiry of the permit.
<v-divider class="my-6 ml-n8" />
</li>
<li>
<strong>If the home is permanently moved to a different location than what is specified on the transport
permit</strong>, you must report the physical location of the manufactured home within 3 days of the move.
</li>
</ol>
</template>
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export { default as LocationChangeConfirmCompletion } from './LocationChangeConfirmCompletion.vue'
export { default as TransportPermitConfirmCompletion } from './TransportPermitConfirmCompletion.vue'
export { default as AmendTransportPermitConfirmCompletion } from './AmendTransportPermitConfirmCompletion.vue'
7 changes: 5 additions & 2 deletions ppr-ui/src/views/mhrInformation/MhrInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@
#contentSlot
>
<LocationChangeConfirmCompletion v-if="isRegisteredLocationChange" />
<AmendTransportPermitConfirmCompletion v-else-if="isAmendLocationActive" />
<TransportPermitConfirmCompletion v-else />
</template>
</ConfirmCompletion>
Expand Down Expand Up @@ -585,7 +586,8 @@ import MhrTransportPermit from '@/views/mhrInformation/MhrTransportPermit.vue'
import {
LocationChangeReview,
LocationChangeConfirmCompletion,
TransportPermitConfirmCompletion
TransportPermitConfirmCompletion,
AmendTransportPermitConfirmCompletion
} from '@/components/mhrTransportPermit'
import {
AccountInfoIF,
Expand Down Expand Up @@ -635,7 +637,8 @@ export default defineComponent({
LienAlert,
LocationChangeReview,
LocationChangeConfirmCompletion,
TransportPermitConfirmCompletion
TransportPermitConfirmCompletion,
AmendTransportPermitConfirmCompletion
},
props: {
appReady: {
Expand Down

0 comments on commit 1d35b28

Please sign in to comment.