Skip to content

Commit

Permalink
lien validation update (#2006)
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron-eyds authored Aug 22, 2024
1 parent 84efde9 commit e0de369
Show file tree
Hide file tree
Showing 3 changed files with 5 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.2.45",
"version": "3.2.46",
"private": true,
"appName": "Assets UI",
"sbcName": "SBC Common Components",
Expand Down
6 changes: 2 additions & 4 deletions ppr-ui/src/composables/mhrInformation/useMhrInformation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,20 +308,18 @@ export const useMhrInformation = () => {

// Get information about the lien to help with styling and functionality
const getLienInfo = (): { class: string, msg: string, isSubmissionAllowed: boolean } => {
const isLienRegistrationTypeSA = getLienRegistrationType.value === APIRegistrationTypes.SECURITY_AGREEMENT
const routeName = router.currentRoute.value.name

const isQSorSBC: boolean = isRoleQualifiedSupplier.value || isRoleStaffSbc.value

if (routeName === RouteNames.MHR_INFORMATION &&
(isRoleStaffReg.value || (isLienRegistrationTypeSA && isQSorSBC))) {
(isRoleStaffReg.value || (!localState.hasQsTransferOrExemptionBlockingLien && isQSorSBC))) {
return {
class: 'warning-msg',
msg: LienMessages.defaultWarning,
isSubmissionAllowed: true
}
} else if ((isRoleStaffReg.value && routeName === RouteNames.EXEMPTION_DETAILS) ||
(isRoleQualifiedSupplier.value && isLienRegistrationTypeSA &&
(isRoleQualifiedSupplier.value && !localState.hasQsTransferOrExemptionBlockingLien &&
[RouteNames.EXEMPTION_DETAILS, RouteNames.EXEMPTION_REVIEW].includes(routeName as RouteNames)
)) {
return {
Expand Down

0 comments on commit e0de369

Please sign in to comment.