diff --git a/web/src/components/process/Form22/components/Form22StyleOfProceeding.vue b/web/src/components/process/Form22/components/Form22StyleOfProceeding.vue index 616f45de..18284924 100644 --- a/web/src/components/process/Form22/components/Form22StyleOfProceeding.vue +++ b/web/src/components/process/Form22/components/Form22StyleOfProceeding.vue @@ -313,13 +313,37 @@

Income

- + + + 1-3 household members – Household gross income is: + + $ + + + + + + 4 or more household members – Household gross income is: + + $ + + + + + + None of the above + + v-model="form22Info.assets"> + + The value of my household assets, after subtracting any outstanding debt owing on them, is: + + $ + + + + + + Not applicable + Please provide specific details about your financial circumstances

- For example, if you have recently lost employment or have a large number of dependents. -

+ Complete this Part if you do not meet the income or assets criteria set under + Rule 85(2). Be specific, for example, if you have recently lost employment or have a large number of dependents. +

- Name of lawyer or party authorizing filing of this Form: + Name of party authorizing filing of this Form: diff --git a/web/src/components/process/Form22/components/pdf/Form22Layout.vue b/web/src/components/process/Form22/components/pdf/Form22Layout.vue index b9ec3453..62adf052 100644 --- a/web/src/components/process/Form22/components/pdf/Form22Layout.vue +++ b/web/src/components/process/Form22/components/pdf/Form22Layout.vue @@ -86,10 +86,10 @@ you undue hardship.
- If you meet the income and assets criteria in Part B, you meet the - financial hardship criteria. If not, you can complete Part C and - argue at the hearing that there are special financial circumstances - that establish undue hardship, or you can abandon your application. + The criteria set by the registrar under Rule 85 (2) are on the main page of the Court of Appeal’s website. Complete Part B to + determine if you meet the income and assets criteria. + If you do not meet the criteria, you can also complete Part C and argue at the hearing that there are special financial circumstances that establish undue hardship, or you can abandon your + application. You must provide complete and accurate financial information.
This is a “without notice” application. You do not need to serve @@ -171,17 +171,18 @@
-
+
- Check the applicable boxes + Household income and assets -
If the income or assets criteria do not apply, you must complete - Part C or abandon your application. +
Check the applicable boxes and indicate the household income and value of all household assets. Provide complete and accurate financial information. +

+ If you do not meet the income or assets criteria set by the registrar under Rule 85 (2), you must also complete Part C or abandon your application.
-
+
Income @@ -190,20 +191,20 @@ :check="(result.income == 1)?'yes':''" shiftmark="1" marginLeft="0.5rem" - text="1-3 household members - My gross household income is less than $60,000"/> + :text="computedIncome1"/> - Assets + :text="computedIncome2"/> +

Assets
+ :text="computedAsset"/>
@@ -217,18 +218,17 @@
-
+
Special financial circumstances -
Be as specific as possible about your financial circumstances. For example, - if you have recently lost employment or have a large number of - dependants note that here. +
Complete this Part if you do not meet the income or assets criteria set under Rule 85 (2). Be as specific as possible about + your financial circumstances. For example, if you have recently lost employment or have a large number of dependants, note that here.
-
+
{{result.finances}}
@@ -300,7 +300,7 @@
-
Name of lawyer or person authorizing filing of this form
+
Name of person authorizing filing of this form
@@ -336,8 +336,32 @@ export default class Form22Layout extends Vue { @Prop({required:true}) result!: form22DataInfoType; -} + get computedIncome1(): string { + if (this.result.income == 1) { + return `1-3 household members - Household gross income is $${this.formatCurrency(this.result.incomeValue1)}`; + } else { + return `1-3 household members - Household gross income is $........`; + } + } + get computedIncome2(): string { + if (this.result.income == 2) { + return `4 or more household members - Household gross income is $${this.formatCurrency(this.result.incomeValue2)}`; + } else { + return `4 or more household members - Household gross income is $........`; + } + } + get computedAsset(): string { + if (this.result.assets) { + return `The value of household assets, after subtracting any outstanding debt owing on them, is $${this.formatCurrency(this.result.assetsValue)}`; + } else { + return `The value of household assets, after subtracting any outstanding debt owing on them, is $........`; + } + } + formatCurrency(value: string): string { + return parseInt(value).toLocaleString('en-US'); + } +}