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');
+ }
+}