taxtank-core 2.1.92 → 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.
- package/fesm2022/taxtank-core.mjs +153 -94
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +51 -27
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -12115,9 +12116,6 @@ __decorate([
|
|
|
12115
12116
|
], HoldingType.prototype, "exchange", void 0);
|
|
12116
12117
|
|
|
12117
12118
|
class HoldingTypePosition extends AbstractModel {
|
|
12118
|
-
get avgCostBase() {
|
|
12119
|
-
return this.costBase / this.quantity;
|
|
12120
|
-
}
|
|
12121
12119
|
}
|
|
12122
12120
|
__decorate([
|
|
12123
12121
|
Type(() => HoldingType)
|
|
@@ -12338,14 +12336,75 @@ class Holding extends AbstractModel {
|
|
|
12338
12336
|
}
|
|
12339
12337
|
}
|
|
12340
12338
|
|
|
12339
|
+
class TaxReturnCategory extends TaxReturnCategory$1 {
|
|
12340
|
+
}
|
|
12341
|
+
__decorate([
|
|
12342
|
+
Type(() => Date)
|
|
12343
|
+
], TaxReturnCategory.prototype, "createdAt", void 0);
|
|
12344
|
+
__decorate([
|
|
12345
|
+
Type(() => Date)
|
|
12346
|
+
], TaxReturnCategory.prototype, "updatedAt", void 0);
|
|
12347
|
+
__decorate([
|
|
12348
|
+
Type(() => TaxReturnItem)
|
|
12349
|
+
], TaxReturnCategory.prototype, "taxReturnItems", void 0);
|
|
12350
|
+
__decorate([
|
|
12351
|
+
Type(() => TaxReturnCategory)
|
|
12352
|
+
], TaxReturnCategory.prototype, "parent", void 0);
|
|
12353
|
+
|
|
12354
|
+
class TaxReturnItem extends TaxReturnItem$1 {
|
|
12355
|
+
// used for business schedule report, the order is important
|
|
12356
|
+
static { this.BUSINESS_SCHEDULE_LIST = [
|
|
12357
|
+
TaxReturnItemEnum.NO_ABN_GIVEN,
|
|
12358
|
+
TaxReturnItemEnum.VOLUNTARY_AGREEMENT,
|
|
12359
|
+
TaxReturnItemEnum.LABOUR_HIRE_OR_OTHER,
|
|
12360
|
+
TaxReturnItemEnum.OTHER_BUSINESS_INCOME,
|
|
12361
|
+
TaxReturnItemEnum.ASSESSABLE_GOVERNMENT_PAYMENTS,
|
|
12362
|
+
TaxReturnItemEnum.PURCHASES_AND_OTHER_COSTS,
|
|
12363
|
+
TaxReturnItemEnum.COMMISSION_EXPENSES,
|
|
12364
|
+
TaxReturnItemEnum.SUPERANNUATION_EXPENSES,
|
|
12365
|
+
TaxReturnItemEnum.BAD_DEBTS,
|
|
12366
|
+
TaxReturnItemEnum.LEASE_EXPENSES,
|
|
12367
|
+
TaxReturnItemEnum.RENT_EXPENSES,
|
|
12368
|
+
TaxReturnItemEnum.INTEREST_EXPENSES_WITHIN_AUSTRALIA,
|
|
12369
|
+
TaxReturnItemEnum.INTEREST_EXPENSES_OVERSEAS,
|
|
12370
|
+
TaxReturnItemEnum.DEPRECIATION_EXPENSES,
|
|
12371
|
+
TaxReturnItemEnum.MOTOR_VEHICLE_EXPENSES,
|
|
12372
|
+
TaxReturnItemEnum.ALL_OTHER_EXPENSES
|
|
12373
|
+
]; }
|
|
12374
|
+
}
|
|
12375
|
+
__decorate([
|
|
12376
|
+
Type(() => Date)
|
|
12377
|
+
], TaxReturnItem.prototype, "createdAt", void 0);
|
|
12378
|
+
__decorate([
|
|
12379
|
+
Type(() => Date)
|
|
12380
|
+
], TaxReturnItem.prototype, "updatedAt", void 0);
|
|
12381
|
+
__decorate([
|
|
12382
|
+
Type(() => TaxReturnCategory)
|
|
12383
|
+
], TaxReturnItem.prototype, "taxReturnCategory", void 0);
|
|
12384
|
+
__decorate([
|
|
12385
|
+
Type(() => TaxReturn)
|
|
12386
|
+
], TaxReturnItem.prototype, "taxReturns", void 0);
|
|
12387
|
+
|
|
12388
|
+
class TaxReturn extends TaxReturn$1 {
|
|
12389
|
+
}
|
|
12390
|
+
__decorate([
|
|
12391
|
+
Type(() => TaxReturnItem)
|
|
12392
|
+
], TaxReturn.prototype, "taxReturnItems", void 0);
|
|
12393
|
+
|
|
12341
12394
|
class HoldingTaxStatementItem extends AbstractModel {
|
|
12342
12395
|
constructor() {
|
|
12343
12396
|
super(...arguments);
|
|
12344
12397
|
this.amount = 0;
|
|
12345
12398
|
}
|
|
12346
12399
|
}
|
|
12400
|
+
__decorate([
|
|
12401
|
+
Type(() => HoldingTaxStatement)
|
|
12402
|
+
], HoldingTaxStatementItem.prototype, "statement", void 0);
|
|
12403
|
+
__decorate([
|
|
12404
|
+
Type(() => TaxReturnItem)
|
|
12405
|
+
], HoldingTaxStatementItem.prototype, "taxReturnItem", void 0);
|
|
12347
12406
|
|
|
12348
|
-
class HoldingTaxStatementPayer {
|
|
12407
|
+
class HoldingTaxStatementPayer extends AbstractModel {
|
|
12349
12408
|
}
|
|
12350
12409
|
__decorate([
|
|
12351
12410
|
Type(() => User)
|
|
@@ -12422,20 +12481,20 @@ class HoldingCostAdjustment extends AbstractModel {
|
|
|
12422
12481
|
this.overTaxComponent = 0;
|
|
12423
12482
|
}
|
|
12424
12483
|
get adjustedCostBase() {
|
|
12425
|
-
return this.costBase
|
|
12484
|
+
return this.costBase + this.netCostBase;
|
|
12426
12485
|
}
|
|
12427
12486
|
get netCostBase() {
|
|
12428
12487
|
return this.underTaxComponent - this.taxDeferredAmount - this.taxFreeAmount - this.overTaxComponent;
|
|
12429
12488
|
}
|
|
12430
12489
|
toHoldingTypePosition() {
|
|
12431
|
-
return plainToClass(HoldingTypePosition, { holdingType: HoldingType
|
|
12490
|
+
return plainToClass(HoldingTypePosition, { holdingType: HoldingType, quantity: this.quantity, costBase: this.costBase });
|
|
12432
12491
|
}
|
|
12433
12492
|
}
|
|
12434
12493
|
__decorate([
|
|
12435
|
-
Type(() => User
|
|
12494
|
+
Type(() => User)
|
|
12436
12495
|
], HoldingCostAdjustment.prototype, "user", void 0);
|
|
12437
12496
|
__decorate([
|
|
12438
|
-
Type(() => HoldingType
|
|
12497
|
+
Type(() => HoldingType)
|
|
12439
12498
|
], HoldingCostAdjustment.prototype, "holdingType", void 0);
|
|
12440
12499
|
__decorate([
|
|
12441
12500
|
Type(() => Date)
|
|
@@ -12790,61 +12849,6 @@ __decorate([
|
|
|
12790
12849
|
Type(() => AppFile)
|
|
12791
12850
|
], FinancialGoal.prototype, "file", void 0);
|
|
12792
12851
|
|
|
12793
|
-
class TaxReturnCategory extends TaxReturnCategory$1 {
|
|
12794
|
-
}
|
|
12795
|
-
__decorate([
|
|
12796
|
-
Type(() => Date)
|
|
12797
|
-
], TaxReturnCategory.prototype, "createdAt", void 0);
|
|
12798
|
-
__decorate([
|
|
12799
|
-
Type(() => Date)
|
|
12800
|
-
], TaxReturnCategory.prototype, "updatedAt", void 0);
|
|
12801
|
-
__decorate([
|
|
12802
|
-
Type(() => TaxReturnItem)
|
|
12803
|
-
], TaxReturnCategory.prototype, "taxReturnItems", void 0);
|
|
12804
|
-
__decorate([
|
|
12805
|
-
Type(() => TaxReturnCategory)
|
|
12806
|
-
], TaxReturnCategory.prototype, "parent", void 0);
|
|
12807
|
-
|
|
12808
|
-
class TaxReturnItem extends TaxReturnItem$1 {
|
|
12809
|
-
// used for business schedule report, the order is important
|
|
12810
|
-
static { this.BUSINESS_SCHEDULE_LIST = [
|
|
12811
|
-
TaxReturnItemEnum.NO_ABN_GIVEN,
|
|
12812
|
-
TaxReturnItemEnum.VOLUNTARY_AGREEMENT,
|
|
12813
|
-
TaxReturnItemEnum.LABOUR_HIRE_OR_OTHER,
|
|
12814
|
-
TaxReturnItemEnum.OTHER_BUSINESS_INCOME,
|
|
12815
|
-
TaxReturnItemEnum.ASSESSABLE_GOVERNMENT_PAYMENTS,
|
|
12816
|
-
TaxReturnItemEnum.PURCHASES_AND_OTHER_COSTS,
|
|
12817
|
-
TaxReturnItemEnum.COMMISSION_EXPENSES,
|
|
12818
|
-
TaxReturnItemEnum.SUPERANNUATION_EXPENSES,
|
|
12819
|
-
TaxReturnItemEnum.BAD_DEBTS,
|
|
12820
|
-
TaxReturnItemEnum.LEASE_EXPENSES,
|
|
12821
|
-
TaxReturnItemEnum.RENT_EXPENSES,
|
|
12822
|
-
TaxReturnItemEnum.INTEREST_EXPENSES_WITHIN_AUSTRALIA,
|
|
12823
|
-
TaxReturnItemEnum.INTEREST_EXPENSES_OVERSEAS,
|
|
12824
|
-
TaxReturnItemEnum.DEPRECIATION_EXPENSES,
|
|
12825
|
-
TaxReturnItemEnum.MOTOR_VEHICLE_EXPENSES,
|
|
12826
|
-
TaxReturnItemEnum.ALL_OTHER_EXPENSES
|
|
12827
|
-
]; }
|
|
12828
|
-
}
|
|
12829
|
-
__decorate([
|
|
12830
|
-
Type(() => Date)
|
|
12831
|
-
], TaxReturnItem.prototype, "createdAt", void 0);
|
|
12832
|
-
__decorate([
|
|
12833
|
-
Type(() => Date)
|
|
12834
|
-
], TaxReturnItem.prototype, "updatedAt", void 0);
|
|
12835
|
-
__decorate([
|
|
12836
|
-
Type(() => TaxReturnCategory)
|
|
12837
|
-
], TaxReturnItem.prototype, "taxReturnCategory", void 0);
|
|
12838
|
-
__decorate([
|
|
12839
|
-
Type(() => TaxReturn)
|
|
12840
|
-
], TaxReturnItem.prototype, "taxReturns", void 0);
|
|
12841
|
-
|
|
12842
|
-
class TaxReturn extends TaxReturn$1 {
|
|
12843
|
-
}
|
|
12844
|
-
__decorate([
|
|
12845
|
-
Type(() => TaxReturnItem)
|
|
12846
|
-
], TaxReturn.prototype, "taxReturnItems", void 0);
|
|
12847
|
-
|
|
12848
12852
|
class HomeOfficeClaim extends ObservableModel {
|
|
12849
12853
|
constructor() {
|
|
12850
12854
|
super(...arguments);
|
|
@@ -19198,6 +19202,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
19198
19202
|
}]
|
|
19199
19203
|
}] });
|
|
19200
19204
|
|
|
19205
|
+
var HoldingTaxStatementPayerMessagesEnum;
|
|
19206
|
+
(function (HoldingTaxStatementPayerMessagesEnum) {
|
|
19207
|
+
HoldingTaxStatementPayerMessagesEnum["CREATED"] = "Payer created successfully";
|
|
19208
|
+
HoldingTaxStatementPayerMessagesEnum["UPDATED"] = "Payer updated successfully";
|
|
19209
|
+
HoldingTaxStatementPayerMessagesEnum["CONFIRM_DELETE"] = "Are you sure you want to delete this Payer?";
|
|
19210
|
+
HoldingTaxStatementPayerMessagesEnum["DELETED"] = "Payer deleted successfully";
|
|
19211
|
+
})(HoldingTaxStatementPayerMessagesEnum || (HoldingTaxStatementPayerMessagesEnum = {}));
|
|
19212
|
+
|
|
19213
|
+
class HoldingTaxStatementPayerService extends RestService$1 {
|
|
19214
|
+
constructor() {
|
|
19215
|
+
super(...arguments);
|
|
19216
|
+
this.modelClass = HoldingTaxStatementPayer;
|
|
19217
|
+
this.collectionClass = Collection;
|
|
19218
|
+
this.endpointUri = 'holding-tax-statement-payers';
|
|
19219
|
+
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19220
|
+
this.roles = [UserRolesEnum.HOLDING_TANK];
|
|
19221
|
+
}
|
|
19222
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19223
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, providedIn: 'root' }); }
|
|
19224
|
+
}
|
|
19225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingTaxStatementPayerService, decorators: [{
|
|
19226
|
+
type: Injectable,
|
|
19227
|
+
args: [{
|
|
19228
|
+
providedIn: 'root'
|
|
19229
|
+
}]
|
|
19230
|
+
}] });
|
|
19231
|
+
|
|
19201
19232
|
class HoldingCostAdjustmentService extends RestService$1 {
|
|
19202
19233
|
constructor() {
|
|
19203
19234
|
super(...arguments);
|
|
@@ -19206,6 +19237,7 @@ class HoldingCostAdjustmentService extends RestService$1 {
|
|
|
19206
19237
|
this.endpointUri = 'holding-cost-adjustments';
|
|
19207
19238
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
|
19208
19239
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
|
19240
|
+
this.useBackendError = true;
|
|
19209
19241
|
}
|
|
19210
19242
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingCostAdjustmentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
19211
19243
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: HoldingCostAdjustmentService, providedIn: 'root' }); }
|
|
@@ -19367,21 +19399,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
19367
19399
|
}] });
|
|
19368
19400
|
|
|
19369
19401
|
var IncomeSourceTypes = [
|
|
19370
|
-
{
|
|
19371
|
-
id: 11,
|
|
19372
|
-
tax_return_item_id: 9,
|
|
19373
|
-
name: "Attributed PSI"
|
|
19374
|
-
},
|
|
19375
19402
|
{
|
|
19376
19403
|
id: 1,
|
|
19377
19404
|
tax_return_item_id: 2,
|
|
19378
19405
|
name: "Bonuses"
|
|
19379
19406
|
},
|
|
19380
|
-
{
|
|
19381
|
-
id: 13,
|
|
19382
|
-
tax_return_item_id: 18,
|
|
19383
|
-
name: "Capital Gains Tax"
|
|
19384
|
-
},
|
|
19385
19407
|
{
|
|
19386
19408
|
id: 2,
|
|
19387
19409
|
tax_return_item_id: 2,
|
|
@@ -19398,25 +19420,15 @@ var IncomeSourceTypes = [
|
|
|
19398
19420
|
name: "Interest"
|
|
19399
19421
|
},
|
|
19400
19422
|
{
|
|
19401
|
-
id:
|
|
19402
|
-
tax_return_item_id:
|
|
19403
|
-
name: "
|
|
19423
|
+
id: 5,
|
|
19424
|
+
tax_return_item_id: 6,
|
|
19425
|
+
name: "Pensions & Gov Allowances"
|
|
19404
19426
|
},
|
|
19405
19427
|
{
|
|
19406
19428
|
id: 6,
|
|
19407
19429
|
tax_return_item_id: 14,
|
|
19408
19430
|
name: "PSI"
|
|
19409
19431
|
},
|
|
19410
|
-
{
|
|
19411
|
-
id: 12,
|
|
19412
|
-
tax_return_item_id: 13,
|
|
19413
|
-
name: "Partnerships"
|
|
19414
|
-
},
|
|
19415
|
-
{
|
|
19416
|
-
id: 5,
|
|
19417
|
-
tax_return_item_id: 6,
|
|
19418
|
-
name: "Pensions & Gov Allowances"
|
|
19419
|
-
},
|
|
19420
19432
|
{
|
|
19421
19433
|
id: 8,
|
|
19422
19434
|
tax_return_item_id: 7,
|
|
@@ -19426,6 +19438,31 @@ var IncomeSourceTypes = [
|
|
|
19426
19438
|
id: 9,
|
|
19427
19439
|
tax_return_item_id: 13,
|
|
19428
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"
|
|
19429
19466
|
}
|
|
19430
19467
|
];
|
|
19431
19468
|
|
|
@@ -24680,6 +24717,10 @@ const ENDPOINTS = {
|
|
|
24680
24717
|
HOLDING_TAX_STATEMENTS_POST: new Endpoint('POST', '\\/holding-tax-statements'),
|
|
24681
24718
|
HOLDING_TAX_STATEMENTS_PUT: new Endpoint('PUT', '\\/holding-tax-statements\\/\\d+'),
|
|
24682
24719
|
HOLDING_TAX_STATEMENTS_DELETE: new Endpoint('DELETE', '\\/holding-tax-statements\\/\\d+'),
|
|
24720
|
+
HOLDING_TAX_STATEMENT_PAYERS_GET: new Endpoint('GET', '\\/holding-tax-statement-payers'),
|
|
24721
|
+
HOLDING_TAX_STATEMENT_PAYERS_POST: new Endpoint('POST', '\\/holding-tax-statement-payers'),
|
|
24722
|
+
HOLDING_TAX_STATEMENT_PAYERS_PUT: new Endpoint('PUT', '\\/holding-tax-statement-payers\\/\\d+'),
|
|
24723
|
+
HOLDING_TAX_STATEMENT_PAYERS_DELETE: new Endpoint('DELETE', '\\/holding-tax-statement-payers\\/\\d+'),
|
|
24683
24724
|
HOLDING_COST_ADJUSTMENTS_GET: new Endpoint('GET', '\\/holding-cost-adjustments'),
|
|
24684
24725
|
HOLDING_COST_ADJUSTMENTS_POST: new Endpoint('POST', '\\/holding-cost-adjustments'),
|
|
24685
24726
|
HOLDING_COST_ADJUSTMENTS_PUT: new Endpoint('PUT', '\\/holding-cost-adjustments\\/\\d+'),
|
|
@@ -30026,30 +30067,48 @@ class HoldingTaxStatementForm extends AbstractForm {
|
|
|
30026
30067
|
}
|
|
30027
30068
|
}
|
|
30028
30069
|
|
|
30070
|
+
class HoldingTaxStatementPayerForm extends AbstractForm {
|
|
30071
|
+
constructor(payer = plainToClass(HoldingTaxStatementPayer, {})) {
|
|
30072
|
+
super({
|
|
30073
|
+
name: new FormControl(payer.name, Validators.required),
|
|
30074
|
+
}, payer);
|
|
30075
|
+
}
|
|
30076
|
+
}
|
|
30077
|
+
|
|
30029
30078
|
class HoldingCostAdjustmentForm extends AbstractForm {
|
|
30030
30079
|
constructor(costAdjustment = plainToClass(HoldingCostAdjustment, {})) {
|
|
30031
30080
|
super({
|
|
30032
30081
|
holdingType: new FormControl(costAdjustment.holdingType, Validators.required),
|
|
30033
30082
|
date: new FormControl(costAdjustment.date, Validators.required),
|
|
30034
|
-
quantity: new FormControl(
|
|
30035
|
-
|
|
30036
|
-
|
|
30083
|
+
quantity: new FormControl({
|
|
30084
|
+
value: costAdjustment.quantity,
|
|
30085
|
+
disabled: true
|
|
30086
|
+
}, [Validators.required, greaterThanValidator(0)]),
|
|
30087
|
+
description: new FormControl(costAdjustment.description, Validators.required),
|
|
30088
|
+
costBase: new FormControl({
|
|
30089
|
+
value: costAdjustment.costBase,
|
|
30090
|
+
disabled: true
|
|
30091
|
+
}, [Validators.required, greaterThanValidator(0)]),
|
|
30037
30092
|
taxDeferredAmount: new FormControl(costAdjustment.taxDeferredAmount, [Validators.required, Validators.min(0)]),
|
|
30038
|
-
taxFreeAmount: new FormControl(costAdjustment.
|
|
30039
|
-
underTaxComponent: new FormControl(costAdjustment.
|
|
30040
|
-
overTaxComponent: new FormControl(costAdjustment.
|
|
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)]),
|
|
30041
30096
|
file: new FormControl(costAdjustment.file),
|
|
30042
30097
|
}, costAdjustment);
|
|
30098
|
+
this.includeDisabledFields = true;
|
|
30043
30099
|
this.listenEvents();
|
|
30100
|
+
this.emitValues();
|
|
30044
30101
|
}
|
|
30045
30102
|
listenEvents() {
|
|
30046
30103
|
combineLatest([
|
|
30104
|
+
this.get('costBase').valueChanges,
|
|
30047
30105
|
this.get('taxDeferredAmount').valueChanges,
|
|
30048
30106
|
this.get('taxFreeAmount').valueChanges,
|
|
30049
30107
|
this.get('underTaxComponent').valueChanges,
|
|
30050
30108
|
this.get('overTaxComponent').valueChanges,
|
|
30051
|
-
]).subscribe(([taxDeferredAmount, taxFreeAmount, underTaxComponent, overTaxComponent]) => {
|
|
30109
|
+
]).subscribe(([costBase, taxDeferredAmount, taxFreeAmount, underTaxComponent, overTaxComponent]) => {
|
|
30052
30110
|
this.netCostBase = underTaxComponent - overTaxComponent - taxDeferredAmount - taxFreeAmount;
|
|
30111
|
+
this.adjustedCostBase = costBase + this.netCostBase;
|
|
30053
30112
|
});
|
|
30054
30113
|
}
|
|
30055
30114
|
}
|
|
@@ -30303,5 +30362,5 @@ var MessagesEnum;
|
|
|
30303
30362
|
* Generated bundle index. Do not edit.
|
|
30304
30363
|
*/
|
|
30305
30364
|
|
|
30306
|
-
export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressSuggestion, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountForm, BankAccountImportForm, BankAccountMessagesEnum, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsFilterForm, BankAccountsImportForm, BankConnection, BankConnectionCollection, BankConnectionForm, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionImport, BankTransactionImportCollection, BankTransactionImportMessagesEnum, BankTransactionImportService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BasiqUser, BasiqUserService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCashFlowItem, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleItem, BudgetRuleItemCollection, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessDepreciationMethod, BusinessDepreciationMethodEnum, BusinessDepreciationMethodForm, BusinessDepreciationMethodService, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, COLORS, CalculationFormItem, CalculationFormTypeEnum, CalendarEvent, CalendarEventCollection, CalendarEventTypeEnum, CalendarReminder, CalendarReminderCollection, CalendarReminderForm, CalendarReminderMessagesEnum, CalendarReminderService, CalendarReminderTypeEnum, CalendarViewEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, Country, CountryService, Currency, CurrencyService, CurrencyTypeEnum, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, DateAmountDictionary, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderCollection, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EXPENSE_CATEGORY_BY_TYPE, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExchangeRate, ExchangeRateService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalFilterForm, FinancialGoalForm, FinancialGoalMessagesEnum, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GooglePlaceService, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingCostAdjustment, HoldingCostAdjustmentForm, HoldingCostAdjustmentMessagesEnum, HoldingCostAdjustmentService, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTaxStatement, HoldingTaxStatementForm, HoldingTaxStatementItem, HoldingTaxStatementItemForm, HoldingTaxStatementMessagesEnum, HoldingTaxStatementPayer, HoldingTaxStatementService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportCollection, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypePosition, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, INCOME_CATEGORY_BY_TYPE, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, MoneyCalendarEvent, MoneyCalendarEventCollection, MoneyScheduleFilterForm, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PALETTE_EQUITY, PALETTE_PRIMARY, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorDepreciationService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, RelativeDatePipe, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceEnum, ServicePriceOldEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactItem, SoleContactItemCollection, SoleContactMessagesEnum, SoleContactService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SoleInvoiceTypeEnum, SolePlItem, SolePlItemCollection, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilter, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TreeNodeData, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User, UserCollection, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimForm, VehicleClaimMethodEnum, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atLeastOneEnabledValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, compareWithControlValidator, conditionalValidator, createDate, currentFinYearValidator, dateRangeValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, recurringDates, replace, sort, sortDeep, toArray };
|
|
30365
|
+
export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressSuggestion, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountForm, BankAccountImportForm, BankAccountMessagesEnum, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsFilterForm, BankAccountsImportForm, BankConnection, BankConnectionCollection, BankConnectionForm, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionImport, BankTransactionImportCollection, BankTransactionImportMessagesEnum, BankTransactionImportService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BasiqUser, BasiqUserService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCashFlowItem, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleItem, BudgetRuleItemCollection, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessDepreciationMethod, BusinessDepreciationMethodEnum, BusinessDepreciationMethodForm, BusinessDepreciationMethodService, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, COLORS, CalculationFormItem, CalculationFormTypeEnum, CalendarEvent, CalendarEventCollection, CalendarEventTypeEnum, CalendarReminder, CalendarReminderCollection, CalendarReminderForm, CalendarReminderMessagesEnum, CalendarReminderService, CalendarReminderTypeEnum, CalendarViewEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, Country, CountryService, Currency, CurrencyService, CurrencyTypeEnum, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, DateAmountDictionary, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderCollection, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EXPENSE_CATEGORY_BY_TYPE, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExchangeRate, ExchangeRateService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalFilterForm, FinancialGoalForm, FinancialGoalMessagesEnum, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GooglePlaceService, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingCostAdjustment, HoldingCostAdjustmentForm, HoldingCostAdjustmentMessagesEnum, HoldingCostAdjustmentService, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTaxStatement, HoldingTaxStatementForm, HoldingTaxStatementItem, HoldingTaxStatementItemForm, HoldingTaxStatementMessagesEnum, HoldingTaxStatementPayer, HoldingTaxStatementPayerForm, HoldingTaxStatementPayerMessagesEnum, HoldingTaxStatementPayerService, HoldingTaxStatementService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportCollection, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypePosition, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, INCOME_CATEGORY_BY_TYPE, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, MoneyCalendarEvent, MoneyCalendarEventCollection, MoneyScheduleFilterForm, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PALETTE_EQUITY, PALETTE_PRIMARY, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorDepreciationService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, RelativeDatePipe, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceEnum, ServicePriceOldEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactItem, SoleContactItemCollection, SoleContactMessagesEnum, SoleContactService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SoleInvoiceTypeEnum, SolePlItem, SolePlItemCollection, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilter, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TreeNodeData, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User, UserCollection, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimForm, VehicleClaimMethodEnum, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atLeastOneEnabledValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, compareWithControlValidator, conditionalValidator, createDate, currentFinYearValidator, dateRangeValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, recurringDates, replace, sort, sortDeep, toArray };
|
|
30307
30366
|
//# sourceMappingURL=taxtank-core.mjs.map
|