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

Enable Home Dealer Transfers #1992

Merged
merged 1 commit into from
Jul 23, 2024
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
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.2.41",
"version": "3.2.42",
"private": true,
"appName": "Assets UI",
"sbcName": "SBC Common Components",
Expand Down
4 changes: 3 additions & 1 deletion ppr-ui/src/components/unitNotes/UnitNoteReview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ export default defineComponent({

const localState = reactive({
validateSubmittingParty: false,
initialAttention: (isCancelUnitNote.value || isRedemptionUnitNote.value) ? '' : getMhrUnitNoteRegistration.value?.attentionReference,
initialAttention: (isCancelUnitNote.value || isRedemptionUnitNote.value)
? ''
: getMhrUnitNoteRegistration.value?.attentionReference,
unitNoteType: UnitNotesInfo[getMhrUnitNote.value.documentType],
givingNoticeParty: computed((): PartyIF => getMhrUnitNote.value.givingNoticeParty),
unitNoteSubmittingParty: computed(() => getMhrUnitNoteRegistration.value.submittingParty || {}),
Expand Down
21 changes: 14 additions & 7 deletions ppr-ui/src/composables/userAccess/useUserAccess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ export const useUserAccess = () => {
* Disable manufacturer transfer based on name match conditions and restricted to Sole Owners
* @returns {Promise<boolean>} Promise that returns true when Manufacturer matches name records and is a sole owner
*/
const disableManufacturerTransfer = async (): Promise<boolean> => {
const disableDealerManufacturerTransfer = async (isDealer: boolean = false): Promise<boolean> => {
let isSoleOwner: boolean, isNameMatch: boolean, currentOwnerName: string

// First verify a single owner group & SOLE ownership
Expand All @@ -334,12 +334,19 @@ export const useUserAccess = () => {
currentOwnerName = getMhrTransferCurrentHomeOwnerGroups.value[0]?.owners[0]?.organizationName
} else return true

// If a Sole Owner: Fetch and verify the sole owner name matches the manufacturers records org or dba name
// If a Sole Owner: Fetch and verify the sole owner name matches the dealers/manufacturers records org or dba name
if (isSoleOwner) {
const manufacturerData: MhrManufacturerInfoIF = await getMhrManufacturerInfo()
const manufacturerOrgName = manufacturerData?.ownerGroups[0]?.owners[0]?.organizationName
const manufacturerDbaName = manufacturerData?.dbaName
isNameMatch = (currentOwnerName === manufacturerOrgName || currentOwnerName === manufacturerDbaName)
let orgName, dbaName
if (isDealer) {
const dealerData: MhrQsPayloadIF = await getQualifiedSupplier()
orgName = dealerData?.businessName
dbaName = dealerData?.dbaName
} else {
const manufacturerData: MhrManufacturerInfoIF = await getMhrManufacturerInfo()
orgName = manufacturerData?.ownerGroups[0]?.owners[0]?.organizationName
dbaName = manufacturerData?.dbaName
}
isNameMatch = (currentOwnerName === orgName || currentOwnerName === dbaName)
} else return true

return !isNameMatch
Expand Down Expand Up @@ -504,7 +511,7 @@ export const useUserAccess = () => {
isUserAccessRoute,
isAuthorizationValid,
downloadServiceAgreement,
disableManufacturerTransfer,
disableDealerManufacturerTransfer,
disableDealerManufacturerLocationChange,
submitQsApplication
}
Expand Down
16 changes: 7 additions & 9 deletions ppr-ui/src/views/mhrInformation/MhrInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -521,11 +521,11 @@
</v-expand-transition>
<p
v-if="disableRoleBaseTransfer"
class="manufacturer-mismatch-text mt-9"
class="dealer-manufacturer-mismatch-text mt-9"
>
<span class="font-weight-bold">Note:</span> You cannot register an ownership transfer or change
because the home does not have a sole owner whose name matches your manufacturer’s name. Transfers can
be registered by BC Registries staff or by a qualified lawyer or notary.
because the home does not have a sole owner whose name matches your dealer's or manufacturer’s name.
Transfers can be registered by BC Registries staff or by a qualified lawyer or notary.
</p>
<HomeOwners
ref="homeOwnersComponentRef"
Expand Down Expand Up @@ -834,7 +834,7 @@ export default defineComponent({

const { getActiveExemption } = useExemptions()
const { buildLocationChange } = useMhrCorrections()
const { disableManufacturerTransfer, disableDealerManufacturerLocationChange } = useUserAccess()
const { disableDealerManufacturerTransfer, disableDealerManufacturerLocationChange } = useUserAccess()
const {
isChangeLocationActive,
isChangeLocationEnabled,
Expand Down Expand Up @@ -881,7 +881,6 @@ export default defineComponent({
showStartTransferRequiredDialog: false,
showOutOfDateTransferDialog: false,
hasLienInfoDisplayed: false, // flag to track if lien info has been displayed after API check
enableRoleBasedTransfer: true, // rendering of the transfer/change btn
disableRoleBaseTransfer: false, // disabled state of transfer/change btn
disableRoleBaseLocationChange: false, // disabled state of location change/transport permit btn
submitBtnLoading: false,
Expand Down Expand Up @@ -991,8 +990,7 @@ export default defineComponent({
return localState.isReviewMode ? 'Register Changes and Pay' : 'Review and Confirm'
}),
enableHomeOwnerChanges: computed((): boolean => {
return !isRoleStaffSbc.value && getFeatureFlag('mhr-transfer-enabled') &&
localState.enableRoleBasedTransfer
return !isRoleStaffSbc.value && getFeatureFlag('mhr-transfer-enabled')
}),
isDraft: computed((): boolean => {
return getMhrInformation.value.draftNumber
Expand Down Expand Up @@ -1072,11 +1070,11 @@ export default defineComponent({
// Check for product based Transfer access
switch(true) {
case isRoleManufacturer.value:
localState.disableRoleBaseTransfer = await disableManufacturerTransfer()
localState.disableRoleBaseTransfer = await disableDealerManufacturerTransfer()
localState.disableRoleBaseLocationChange = await disableDealerManufacturerLocationChange()
break;
case isRoleQualifiedSupplierHomeDealer.value:
localState.enableRoleBasedTransfer = false
localState.disableRoleBaseTransfer = await disableDealerManufacturerTransfer(true)
localState.disableRoleBaseLocationChange = await disableDealerManufacturerLocationChange(true)
break;
}
Expand Down
24 changes: 11 additions & 13 deletions ppr-ui/tests/unit/MhrInformationQsTransfers.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,10 @@ for (const subProduct of subProducts) {
})

it('renders change owners button conditionally', async () => {
// enable transfers based on role
const isNotDealer = subProduct !== MhrSubTypes.DEALERS
wrapper.vm.enableRoleBasedTransfer = isNotDealer
await nextTick()

expect(wrapper.find('#home-owners-header').exists()).toBe(true)
expect(wrapper.vm.enableHomeOwnerChanges).toBe(isNotDealer)
expect(wrapper.find('#home-owners-change-btn').exists()).toBe(isNotDealer)
expect(wrapper.vm.enableHomeOwnerChanges).toBe(true)
expect(wrapper.find('#home-owners-change-btn').exists()).toBe(true)
})

it('renders Lien Alert', async () => {
Expand Down Expand Up @@ -113,28 +109,30 @@ for (const subProduct of subProducts) {

it('verify role based transfer messaging and button states', async () => {
const isManufacturer = subProduct === MhrSubTypes.MANUFACTURER
const isDealer = subProduct === MhrSubTypes.DEALERS
// enable transfers based on role
wrapper.vm.enableRoleBasedTransfer = subProduct !== MhrSubTypes.DEALERS
wrapper.vm.disableRoleBaseTransfer = isManufacturer
wrapper.vm.disableRoleBaseTransfer = isManufacturer || isDealer
await nextTick()

// Verify showTransfer type
expect(wrapper.vm.showTransferType).toBe(false)

// Verify Mismatch text
expect(wrapper.find('.manufacturer-mismatch-text').exists()).toBe(isManufacturer)
expect(wrapper.find('.dealer-manufacturer-mismatch-text').exists()).toBe(isManufacturer || isDealer)

// Role based tests
switch (subProduct) {
case MhrSubTypes.DEALERS:
expect(wrapper.find('#home-owners-change-btn').exists()).toBe(false)
expect(wrapper.find('#home-owners-change-btn').attributes().disabled).toBeDefined()
// Verify Mismatch text content
expect(wrapper.find('.dealer-manufacturer-mismatch-text').text()).toContain('You cannot register an ownership ' +
'transfer or change because the home does not have a sole owner whose name matches')
break;
case MhrSubTypes.MANUFACTURER:
expect(wrapper.find('#home-owners-change-btn').attributes().disabled).toBeDefined()
// Verify Mismatch text content
expect(wrapper.find('.manufacturer-mismatch-text').text()).toContain('You cannot register an ownership ' +
'transfer or change because the home does not have a sole owner whose name matches your manufacturer’s' +
' name')
expect(wrapper.find('.dealer-manufacturer-mismatch-text').text()).toContain('You cannot register an ownership ' +
'transfer or change because the home does not have a sole owner whose name matches')
break;
case MhrSubTypes.LAWYERS_NOTARIES:
expect(wrapper.find('#home-owners-change-btn').attributes().disabled).toBeUndefined()
Expand Down
Loading