taxtank-core 2.1.93 → 2.1.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4188,6 +4188,7 @@ var IncomeSourceTypeListOtherEnum;
4188
4188
  IncomeSourceTypeListOtherEnum[IncomeSourceTypeListOtherEnum["TRUSTS"] = 9] = "TRUSTS";
4189
4189
  IncomeSourceTypeListOtherEnum[IncomeSourceTypeListOtherEnum["OTHER_INCOME"] = 10] = "OTHER_INCOME";
4190
4190
  IncomeSourceTypeListOtherEnum[IncomeSourceTypeListOtherEnum["PARTNERSHIPS"] = 12] = "PARTNERSHIPS";
4191
+ IncomeSourceTypeListOtherEnum[IncomeSourceTypeListOtherEnum["FOREIGN_INCOME"] = 14] = "FOREIGN_INCOME";
4191
4192
  })(IncomeSourceTypeListOtherEnum || (IncomeSourceTypeListOtherEnum = {}));
4192
4193
 
4193
4194
  var IncomeSourceTypeListSoleEnum;
@@ -19398,21 +19399,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
19398
19399
  }] });
19399
19400
 
19400
19401
  var IncomeSourceTypes = [
19401
- {
19402
- id: 11,
19403
- tax_return_item_id: 9,
19404
- name: "Attributed PSI"
19405
- },
19406
19402
  {
19407
19403
  id: 1,
19408
19404
  tax_return_item_id: 2,
19409
19405
  name: "Bonuses"
19410
19406
  },
19411
- {
19412
- id: 13,
19413
- tax_return_item_id: 18,
19414
- name: "Capital Gains Tax"
19415
- },
19416
19407
  {
19417
19408
  id: 2,
19418
19409
  tax_return_item_id: 2,
@@ -19429,25 +19420,15 @@ var IncomeSourceTypes = [
19429
19420
  name: "Interest"
19430
19421
  },
19431
19422
  {
19432
- id: 10,
19433
- tax_return_item_id: 44,
19434
- name: "Other Income"
19423
+ id: 5,
19424
+ tax_return_item_id: 6,
19425
+ name: "Pensions & Gov Allowances"
19435
19426
  },
19436
19427
  {
19437
19428
  id: 6,
19438
19429
  tax_return_item_id: 14,
19439
19430
  name: "PSI"
19440
19431
  },
19441
- {
19442
- id: 12,
19443
- tax_return_item_id: 13,
19444
- name: "Partnerships"
19445
- },
19446
- {
19447
- id: 5,
19448
- tax_return_item_id: 6,
19449
- name: "Pensions & Gov Allowances"
19450
- },
19451
19432
  {
19452
19433
  id: 8,
19453
19434
  tax_return_item_id: 7,
@@ -19457,6 +19438,31 @@ var IncomeSourceTypes = [
19457
19438
  id: 9,
19458
19439
  tax_return_item_id: 13,
19459
19440
  name: "Trusts"
19441
+ },
19442
+ {
19443
+ id: 10,
19444
+ tax_return_item_id: 44,
19445
+ name: "Other Income"
19446
+ },
19447
+ {
19448
+ id: 11,
19449
+ tax_return_item_id: 9,
19450
+ name: "Attributed PSI"
19451
+ },
19452
+ {
19453
+ id: 12,
19454
+ tax_return_item_id: 13,
19455
+ name: "Partnerships"
19456
+ },
19457
+ {
19458
+ id: 13,
19459
+ tax_return_item_id: 18,
19460
+ name: "Capital Gains Tax"
19461
+ },
19462
+ {
19463
+ id: 14,
19464
+ tax_return_item_id: 14,
19465
+ name: "Foreign Income"
19460
19466
  }
19461
19467
  ];
19462
19468
 
@@ -30084,9 +30090,9 @@ class HoldingCostAdjustmentForm extends AbstractForm {
30084
30090
  disabled: true
30085
30091
  }, [Validators.required, greaterThanValidator(0)]),
30086
30092
  taxDeferredAmount: new FormControl(costAdjustment.taxDeferredAmount, [Validators.required, Validators.min(0)]),
30087
- taxFreeAmount: new FormControl(costAdjustment.taxDeferredAmount, [Validators.required, Validators.min(0)]),
30088
- underTaxComponent: new FormControl(costAdjustment.taxDeferredAmount, [Validators.required, Validators.min(0)]),
30089
- overTaxComponent: new FormControl(costAdjustment.taxDeferredAmount, [Validators.required, Validators.min(0)]),
30093
+ taxFreeAmount: new FormControl(costAdjustment.taxFreeAmount, [Validators.required, Validators.min(0)]),
30094
+ underTaxComponent: new FormControl(costAdjustment.underTaxComponent, [Validators.required, Validators.min(0)]),
30095
+ overTaxComponent: new FormControl(costAdjustment.overTaxComponent, [Validators.required, Validators.min(0)]),
30090
30096
  file: new FormControl(costAdjustment.file),
30091
30097
  }, costAdjustment);
30092
30098
  this.includeDisabledFields = true;