-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
15081 add restoration extension and conversion (#449) - v3.10.3
- Loading branch information
1 parent
41eb157
commit 6c16987
Showing
11 changed files
with
451 additions
and
173 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<template> | ||
<v-card flat id="restoration-summary"> | ||
<!-- Section Header --> | ||
<div class="summary-header px-4 mb-2 rounded-t"> | ||
<v-row no-gutters> | ||
<v-col cols="9"> | ||
<img class="header-icon" src="@/assets/images/currency-usd-circle.svg"> | ||
<label class="summary-title pl-2">Your Company</label> | ||
</v-col> | ||
</v-row> | ||
</div> | ||
<!-- Business Name --> | ||
<template> | ||
<v-divider class="mx-4" /> | ||
<div class="section-container business-name-summary"> | ||
<v-row no-gutters> | ||
<v-col cols="3"> | ||
<label><strong>Restoration Type</strong></label> | ||
</v-col> | ||
<v-col cols="8" class="mt-n1" v-if="isLimitedExtendRestorationFiling"> | ||
<div class="font-weight-bold">Limited Restoration Extension</div> | ||
<div>Extension Time: {{ getFormattedExpiryText() }}</div> | ||
</v-col> | ||
<v-col cols="8" class="mt-n1" v-if="isLimitedConversionRestorationFiling"> | ||
<div class="font-weight-bold">Conversion to Full Restoration</div> | ||
<div>[TODO - Applicant's relationship: Director, Shareholder]</div> | ||
</v-col> | ||
</v-row> | ||
<v-row no-gutters class="mt-3" v-if="hasFileNumber"> | ||
<v-col cols="3"> | ||
<label><strong>Approval Type</strong></label> | ||
</v-col> | ||
<v-col cols="8" class="mt-n1"> | ||
<div class="font-weight-bold">Approved by Court Order</div> | ||
<div>Court Order Number: {{ getFileNumber }}</div> | ||
</v-col> | ||
</v-row> | ||
</div> | ||
</template> | ||
</v-card> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { mapGetters } from 'vuex' | ||
export default { | ||
computed: { | ||
...mapGetters(['isLimitedConversionRestorationFiling', 'isLimitedExtendRestorationFiling', | ||
'hasFileNumber', 'getFileNumber', 'getFormattedExpiryText']) | ||
} | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
@import '@/assets/styles/theme.scss'; | ||
.summary-header { | ||
display: flex; | ||
background-color: $BCgovBlue5O; | ||
padding: 1.25rem; | ||
} | ||
// hide first v-divider | ||
.v-divider:first-of-type { | ||
display: none; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.