Skip to content

Commit

Permalink
Update Confirm Review page for no bill sale transfers
Browse files Browse the repository at this point in the history
  • Loading branch information
dimak1 committed Apr 26, 2024
1 parent a735a94 commit feac6da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions ppr-ui/src/components/mhrTransfers/ConfirmCompletion.vue
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
<li
v-if="isRoleStaff"
class="pl-3"
:class="{ 'pt-0' : isTransferWithoutBillOfSale }"
data-test-id="change-ownership-section"
>
<p><strong>Transfer or Change Ownership form</strong> has been received and retained.</p>
Expand Down
5 changes: 3 additions & 2 deletions ppr-ui/src/components/mhrTransfers/TransferDetailsReview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<label class="generic-label">Transfer Details</label>
</v-col>
</v-row>
<v-row v-if="!isTransferDueToDeath">
<v-row v-if="!isTransferDueToDeath && !isTransferWithoutBillOfSale">
<v-col cols="3">
<label class="generic-label">Consideration</label>
</v-col>
Expand All @@ -23,7 +23,7 @@
{{ formatCurrency(getMhrTransferConsideration) }}
</v-col>
</v-row>
<v-row v-if="!isTransferDueToDeath">
<v-row v-if="!isTransferDueToDeath && !isTransferWithoutBillOfSale">
<v-col cols="3">
<label class="generic-label">Bill of Sale Date of<br>Execution</label>
</v-col>
Expand Down Expand Up @@ -87,6 +87,7 @@ export default defineComponent({
return {
isTransferDueToDeath,
isTransferWithoutBillOfSale,
getMhrTransferConsideration,
getMhrTransferDate,
getMhrTransferOwnLand,
Expand Down

0 comments on commit feac6da

Please sign in to comment.