From bd6bf1f43a2d2ff1824e3a3fe3549fb7512b2634 Mon Sep 17 00:00:00 2001 From: CameronEYDS <53542131+cameron-eyds@users.noreply.github.com> Date: Fri, 7 Jun 2024 14:20:18 -0700 Subject: [PATCH] SAN Copy Updates (#1924) * SAN Copy and UXA * Correction Section Payload fix --- .../registration/AmendmentDescription.vue | 9 ++++++- .../securities-act-notices/NoticePanel.vue | 27 +++++++++++++------ .../SecuritiesActNotices.vue | 3 ++- .../mhrRegistration/useMhrCorrections.ts | 5 +++- ppr-ui/src/enums/registrationTypes.ts | 2 +- .../src/views/amendment/ConfirmAmendment.vue | 3 ++- .../views/discharge/DischargeRegistration.vue | 3 ++- .../views/newRegistration/ReviewConfirm.vue | 5 ++-- 8 files changed, 41 insertions(+), 16 deletions(-) diff --git a/ppr-ui/src/components/registration/AmendmentDescription.vue b/ppr-ui/src/components/registration/AmendmentDescription.vue index 9cf88308f..9f1c1672e 100644 --- a/ppr-ui/src/components/registration/AmendmentDescription.vue +++ b/ppr-ui/src/components/registration/AmendmentDescription.vue @@ -28,7 +28,11 @@ > -

+

+ If this registration is related to a partial transfer of collateral to a new debtor, then enter the + prescribed information below, otherwise the Details Description is optional. +

+

If this registration is related to a Subordination, Partial secured party transfer, or Partial transfer of collateral to a new debtor, you MUST enter the prescribed information below, otherwise the Details Description is optional. @@ -87,6 +91,7 @@ import { defineComponent, reactive, toRefs, watch, computed } from 'vue' import { useStore } from '@/store/store' import { storeToRefs } from 'pinia' +import { usePprRegistration } from '@/composables' export default defineComponent({ props: { @@ -103,6 +108,7 @@ export default defineComponent({ setup (props, { emit }) { const { setAmendmentDescription } = useStore() const { getAmendmentDescription } = storeToRefs(useStore()) + const { isSecurityActNotice } = usePprRegistration() const localState = reactive({ detailDescription: getAmendmentDescription.value || '', summaryView: computed((): boolean => { @@ -125,6 +131,7 @@ export default defineComponent({ }) return { + isSecurityActNotice, ...toRefs(localState) } } diff --git a/ppr-ui/src/components/registration/securities-act-notices/NoticePanel.vue b/ppr-ui/src/components/registration/securities-act-notices/NoticePanel.vue index 2c8b22340..0dce8987d 100644 --- a/ppr-ui/src/components/registration/securities-act-notices/NoticePanel.vue +++ b/ppr-ui/src/components/registration/securities-act-notices/NoticePanel.vue @@ -70,7 +70,7 @@