taxtank-core 0.32.109 → 0.32.112
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/esm2022/lib/collections/collection-dictionary.mjs +4 -1
- package/esm2022/lib/collections/property/property-valuation.collection.mjs +11 -1
- package/esm2022/lib/db/Models/incomeSource/income-source.mjs +1 -1
- package/esm2022/lib/forms/holding/holding-reinvest.form.mjs +32 -4
- package/esm2022/lib/forms/transaction/holding/holding-income.form.mjs +19 -9
- package/esm2022/lib/forms/transaction/work/work-transaction.form.mjs +2 -4
- package/esm2022/lib/models/endpoint/endpoints.const.mjs +2 -1
- package/esm2022/lib/models/property/property-equity-chart-data.mjs +11 -7
- package/esm2022/lib/services/http/bank/bank-connection/bank-connection-messages.enum.mjs +4 -4
- package/esm2022/lib/services/http/income-source/income-source.service.mjs +1 -2
- package/esm2022/lib/services/http/income-source/sole-forecast/sole-forecast.service.mjs +1 -3
- package/esm2022/lib/services/http/property/property-valuation/property-valuation.service.mjs +3 -3
- package/esm2022/lib/services/http/sole/bas-report/bas-report-messages.enum.mjs +8 -0
- package/esm2022/lib/services/http/sole/bas-report/index.mjs +3 -0
- package/esm2022/lib/services/http/sole/index.mjs +2 -2
- package/esm2022/lib/validators/fields-sum.validator.mjs +1 -1
- package/esm2022/lib/validators/greater-than.validator.mjs +1 -1
- package/esm2022/lib/validators/index.mjs +2 -1
- package/esm2022/lib/validators/match-sum.validator.mjs +16 -0
- package/fesm2022/taxtank-core.mjs +98 -56
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/lib/collections/collection-dictionary.d.ts +1 -0
- package/lib/collections/property/property-valuation.collection.d.ts +4 -0
- package/lib/db/Models/incomeSource/income-source.d.ts +1 -1
- package/lib/forms/holding/holding-reinvest.form.d.ts +7 -0
- package/lib/forms/transaction/holding/holding-income.form.d.ts +8 -1
- package/lib/forms/transaction/work/work-transaction.form.d.ts +1 -1
- package/lib/models/property/property-equity-chart-data.d.ts +7 -7
- package/lib/services/http/bank/bank-connection/bank-connection-messages.enum.d.ts +3 -3
- package/lib/services/http/property/property-valuation/property-valuation.service.d.ts +1 -2
- package/lib/services/http/sole/bas-report/bas-report-messages.enum.d.ts +6 -0
- package/lib/services/http/sole/bas-report/index.d.ts +2 -0
- package/lib/services/http/sole/index.d.ts +1 -1
- package/lib/validators/index.d.ts +1 -0
- package/lib/validators/match-sum.validator.d.ts +6 -0
- package/package.json +1 -1
- package/esm2022/lib/validators/transactions-meta-fields.validator.mjs +0 -33
- package/lib/validators/transactions-meta-fields.validator.d.ts +0 -5
@@ -1848,6 +1848,9 @@ class CollectionDictionary {
|
|
1848
1848
|
get keys() {
|
1849
1849
|
return Object.keys(this.items);
|
1850
1850
|
}
|
1851
|
+
get values() {
|
1852
|
+
return Object.values(this.items);
|
1853
|
+
}
|
1851
1854
|
/**
|
1852
1855
|
* push new elements in existing item
|
1853
1856
|
*/
|
@@ -2465,6 +2468,16 @@ class PropertyShareCollection extends Collection {
|
|
2465
2468
|
}
|
2466
2469
|
|
2467
2470
|
class PropertyValuationCollection extends Collection {
|
2471
|
+
/**
|
2472
|
+
* @TODO vik find by year when backend refactored (all years would exist)
|
2473
|
+
*/
|
2474
|
+
getMarketValue(date) {
|
2475
|
+
let marketValue = 0;
|
2476
|
+
this.groupBy('property.id').values.forEach(collection => {
|
2477
|
+
marketValue += collection.filter(valuation => valuation.date < date).last.marketValue;
|
2478
|
+
});
|
2479
|
+
return marketValue;
|
2480
|
+
}
|
2468
2481
|
}
|
2469
2482
|
|
2470
2483
|
var TaxExemptionEnum;
|
@@ -6095,11 +6108,13 @@ const FORECAST_YEARS = 25;
|
|
6095
6108
|
* Also on hover appear equity positions point
|
6096
6109
|
*/
|
6097
6110
|
class PropertyEquityChartData {
|
6098
|
-
constructor(properties, bankAccounts, loans, registerDate) {
|
6099
|
-
this.registerDate = registerDate;
|
6111
|
+
constructor(properties, valuations, bankAccounts, loans, registerDate) {
|
6100
6112
|
this.properties = properties;
|
6101
|
-
this.
|
6113
|
+
this.valuations = valuations;
|
6114
|
+
this.bankAccounts = bankAccounts;
|
6102
6115
|
this.loans = loans;
|
6116
|
+
this.registerDate = registerDate;
|
6117
|
+
this.bankAccounts = bankAccounts.getLoanAccounts();
|
6103
6118
|
this.currentYear = new FinancialYear(new Date()).year;
|
6104
6119
|
this.initItems();
|
6105
6120
|
this.buildHistoryItems();
|
@@ -6164,12 +6179,13 @@ class PropertyEquityChartData {
|
|
6164
6179
|
});
|
6165
6180
|
}
|
6166
6181
|
/**
|
6182
|
+
* @TODO remove, there is no difference between actual and history calculations
|
6167
6183
|
* set actual year's real data
|
6168
6184
|
* @private
|
6169
6185
|
*/
|
6170
6186
|
buildActualItem() {
|
6171
6187
|
const item = this.list.find((i) => i.year === this.currentYear);
|
6172
|
-
item.marketValue = this.
|
6188
|
+
item.marketValue = this.valuations.getMarketValue(new Date());
|
6173
6189
|
item.loanBalance = this.properties.items.reduce((sum, property) => sum + Math.abs(this.bankAccounts.getPropertyBalanceAmount(property.id)), 0);
|
6174
6190
|
}
|
6175
6191
|
/**
|
@@ -6178,7 +6194,8 @@ class PropertyEquityChartData {
|
|
6178
6194
|
buildForecastedItems() {
|
6179
6195
|
// calculate future values for all properties separately
|
6180
6196
|
this.properties.items.forEach((property) => {
|
6181
|
-
|
6197
|
+
const marketValue = this.valuations.filterBy('property.id', property.id).getMarketValue(new Date());
|
6198
|
+
let forecastedMarketValue = (property.growthPercent / 100) * marketValue + marketValue;
|
6182
6199
|
// calculate future values for each future year for current handling property
|
6183
6200
|
this.list
|
6184
6201
|
.filter((item) => item.year > this.currentYear)
|
@@ -11412,7 +11429,7 @@ var BankConnectionMessagesEnum;
|
|
11412
11429
|
BankConnectionMessagesEnum["DEACTIVATE"] = "Deactivate to stop receiving daily bank transactions";
|
11413
11430
|
BankConnectionMessagesEnum["CONFIRM_DEACTIVATE"] = "We are unable to deliver daily bank transactions to deactivated banks";
|
11414
11431
|
BankConnectionMessagesEnum["DEACTIVATED"] = "Your live bank feeds are deactivated";
|
11415
|
-
BankConnectionMessagesEnum["RECONNECT"] = "
|
11432
|
+
BankConnectionMessagesEnum["RECONNECT"] = "There has been an issue with your bank connection. Please reconnect to continue receiving bank transactions";
|
11416
11433
|
BankConnectionMessagesEnum["INVALID"] = "There has been an issue with your bank connection. Please reconnect to continue receiving bank transactions";
|
11417
11434
|
BankConnectionMessagesEnum["UPGRADE"] = "Upgrade needed from traditional feeds to an Open Banking connection to continue receiving bank transactions";
|
11418
11435
|
BankConnectionMessagesEnum["CONFIRM_UPGRADE"] = "Upgrading to open banking improves stability and data integrity";
|
@@ -11427,8 +11444,8 @@ var BankConnectionMessagesEnum;
|
|
11427
11444
|
BankConnectionMessagesEnum["ACCOUNTS_RETRIEVED"] = "Financial data received, you can add bank accounts now";
|
11428
11445
|
BankConnectionMessagesEnum["JOB_ID_RECEIVED"] = "Receiving information from bank";
|
11429
11446
|
BankConnectionMessagesEnum["TEMPORARY_UNAVAILABLE"] = "The bank is temporarily unavailable, please check back later";
|
11430
|
-
BankConnectionMessagesEnum["EXPIRING"] = "
|
11431
|
-
BankConnectionMessagesEnum["EXPIRED"] = "Your
|
11447
|
+
BankConnectionMessagesEnum["EXPIRING"] = "Access to receiving data from this bank expires soon. To ensure uninterrupted access to your bank transactions and continue sharing data for another term, please Reauthorise";
|
11448
|
+
BankConnectionMessagesEnum["EXPIRED"] = "Your bank has disconnected because your Access to receiving data from this bank has expired. Please Reauthorise to continue sharing";
|
11432
11449
|
})(BankConnectionMessagesEnum || (BankConnectionMessagesEnum = {}));
|
11433
11450
|
|
11434
11451
|
/**
|
@@ -13323,8 +13340,6 @@ class SoleForecastService extends RestService {
|
|
13323
13340
|
this.eventDispatcherService.on(AppEventTypeEnum.INCOME_SOURCES_UPDATED)
|
13324
13341
|
.subscribe((incomeSources) => {
|
13325
13342
|
const soleForecasts = this.assignSoleForecasts(incomeSources);
|
13326
|
-
// console.log(soleForecasts);
|
13327
|
-
// console.log(incomeSources);
|
13328
13343
|
if (soleForecasts.length) {
|
13329
13344
|
const method = soleForecasts[0].id ? 'updateBatch' : 'addBatch';
|
13330
13345
|
this[method](soleForecasts).subscribe((updatedSoleForecasts) => {
|
@@ -13411,7 +13426,6 @@ class IncomeSourceService extends RestService {
|
|
13411
13426
|
* Update batch of income sources
|
13412
13427
|
*/
|
13413
13428
|
updateBatch(incomeSources, queryParams = {}) {
|
13414
|
-
// console.log(incomeSources);
|
13415
13429
|
return this.http.put(`${this.environment.apiV2}/${this.url}`, incomeSources, queryParams)
|
13416
13430
|
.pipe(map((updatedItems) => {
|
13417
13431
|
const updatedInstances = updatedItems.map((item) => this.createModelInstance(item));
|
@@ -13878,7 +13892,7 @@ class PropertyValuationService extends RestService$1 {
|
|
13878
13892
|
super(...arguments);
|
13879
13893
|
this.endpointUri = 'property-valuations';
|
13880
13894
|
this.modelClass = PropertyValuation;
|
13881
|
-
this.collectionClass =
|
13895
|
+
this.collectionClass = PropertyValuationCollection;
|
13882
13896
|
this.disabledMethods = ['postBatch', 'putBatch'];
|
13883
13897
|
}
|
13884
13898
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
@@ -14329,6 +14343,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
14329
14343
|
}]
|
14330
14344
|
}] });
|
14331
14345
|
|
14346
|
+
var BasReportMessagesEnum;
|
14347
|
+
(function (BasReportMessagesEnum) {
|
14348
|
+
BasReportMessagesEnum["CREATED"] = "Your bas report has been saved";
|
14349
|
+
BasReportMessagesEnum["UPDATED"] = "Your bas report has been updated";
|
14350
|
+
BasReportMessagesEnum["DELETED"] = "Your bas report has been deleted";
|
14351
|
+
BasReportMessagesEnum["CONFIRM_DELETE"] = "Are you sure you want to delete this BAS report?";
|
14352
|
+
})(BasReportMessagesEnum || (BasReportMessagesEnum = {}));
|
14353
|
+
|
14332
14354
|
class BasReportService extends RestService {
|
14333
14355
|
constructor() {
|
14334
14356
|
super(...arguments);
|
@@ -19805,6 +19827,7 @@ const ENDPOINTS = {
|
|
19805
19827
|
SOLE_DETAILS_PUT: new Endpoint('PUT', '\\/sole-details\\/\\d+'),
|
19806
19828
|
SOLE_FORECASTS_POST: new Endpoint('POST', '\\/sole-forecasts'),
|
19807
19829
|
SOLE_FORECASTS_PUT: new Endpoint('PUT', '\\/sole-forecasts\\/\\d+'),
|
19830
|
+
SOLE_FORECASTS_PUT_BATCH: new Endpoint('PUT', '\\/sole-forecasts'),
|
19808
19831
|
SOLE_INVOICES_GET: new Endpoint('GET', '\\/sole-invoices'),
|
19809
19832
|
SOLE_INVOICES_POST: new Endpoint('POST', '\\/sole-invoices'),
|
19810
19833
|
SOLE_INVOICES_PUT: new Endpoint('PUT', '\\/sole-invoices\\/\\d+'),
|
@@ -21264,6 +21287,22 @@ function alphaSpaceValidator() {
|
|
21264
21287
|
};
|
21265
21288
|
}
|
21266
21289
|
|
21290
|
+
/**
|
21291
|
+
* @param controlsFn function to get controls from target parent
|
21292
|
+
* it's easier to pass controls instead of function, but it won't work with dynamic fields
|
21293
|
+
*/
|
21294
|
+
function matchSumValidator(controlsFn) {
|
21295
|
+
return (targetControl) => {
|
21296
|
+
const controls = controlsFn.bind(targetControl.parent)();
|
21297
|
+
if (controls.find(control => control.value === null)) {
|
21298
|
+
return null;
|
21299
|
+
}
|
21300
|
+
const sum = controls.reduce((acc, control) => acc + control.value, 0);
|
21301
|
+
const targetValue = targetControl.value;
|
21302
|
+
return sum === targetValue ? null : { matchSum: true };
|
21303
|
+
};
|
21304
|
+
}
|
21305
|
+
|
21267
21306
|
class FirmForm extends AbstractForm {
|
21268
21307
|
constructor(firm) {
|
21269
21308
|
super({
|
@@ -23813,38 +23852,6 @@ class SoleIncomeForm extends SoleTransactionForm {
|
|
23813
23852
|
}
|
23814
23853
|
}
|
23815
23854
|
|
23816
|
-
/**
|
23817
|
-
* Validator that check fields for transaction meta
|
23818
|
-
*/
|
23819
|
-
function transactionsMetaFieldsValidator() {
|
23820
|
-
return (formGroup) => {
|
23821
|
-
const chartAccounts = formGroup.get('chartAccounts').value;
|
23822
|
-
if (!chartAccounts) {
|
23823
|
-
return null;
|
23824
|
-
}
|
23825
|
-
const metaFields = chartAccounts.metaFields;
|
23826
|
-
if (chartAccounts.isDividends()) {
|
23827
|
-
return checkDividends(metaFields, formGroup);
|
23828
|
-
}
|
23829
|
-
return null;
|
23830
|
-
};
|
23831
|
-
}
|
23832
|
-
/**
|
23833
|
-
* the sum of the fields "Franked" and "Unfranked" must equal transactions amount
|
23834
|
-
*/
|
23835
|
-
function checkDividends(metaFields, formGroup) {
|
23836
|
-
const frankedAndUnfrankedIds = [ChartAccountsMetaFieldListEnum.FRANKED, ChartAccountsMetaFieldListEnum.UNFRANKED];
|
23837
|
-
const amount = Math.abs(formGroup.get('amount').value);
|
23838
|
-
const frankedAndUnfrankedControls = formGroup.get('metaFields').controls
|
23839
|
-
.filter((control) => frankedAndUnfrankedIds.includes(control.get('chartAccountsMetaField').value.id));
|
23840
|
-
// no need to validate when one or both fields are empty
|
23841
|
-
if (frankedAndUnfrankedControls.find((group) => group.get('value').value === null)) {
|
23842
|
-
return null;
|
23843
|
-
}
|
23844
|
-
const frankedAndUnfrankedAmount = frankedAndUnfrankedControls.reduce((sum, group) => sum + (+group.get('value').value), 0);
|
23845
|
-
return amount === frankedAndUnfrankedAmount ? null : { wrongAmountsSum: 'The total Franked and Unfranked amounts must equal the Total Payment received.' };
|
23846
|
-
}
|
23847
|
-
|
23848
23855
|
class WorkTransactionForm extends TransactionForm {
|
23849
23856
|
constructor(transaction, registeredForGst, allocations, controls = {}) {
|
23850
23857
|
super(transaction, registeredForGst, allocations, Object.assign(controls, {
|
@@ -23854,7 +23861,6 @@ class WorkTransactionForm extends TransactionForm {
|
|
23854
23861
|
chartAccountsMetaField: new FormControl(transactionMetaField.chartAccountsMetaField)
|
23855
23862
|
})))
|
23856
23863
|
}));
|
23857
|
-
this.setValidators(transactionsMetaFieldsValidator());
|
23858
23864
|
this.listenEvents();
|
23859
23865
|
}
|
23860
23866
|
listenEvents() {
|
@@ -23862,7 +23868,7 @@ class WorkTransactionForm extends TransactionForm {
|
|
23862
23868
|
}
|
23863
23869
|
watchChartAccounts() {
|
23864
23870
|
super.watchChartAccounts();
|
23865
|
-
this.get('chartAccounts').valueChanges.subscribe((
|
23871
|
+
this.get('chartAccounts').valueChanges.subscribe(() => {
|
23866
23872
|
this.buildMetaFieldsForm();
|
23867
23873
|
});
|
23868
23874
|
}
|
@@ -24001,6 +24007,8 @@ class HoldingIncomeForm extends WorkTransactionForm {
|
|
24001
24007
|
tax: new UntypedFormControl(transaction.tax, Validators.required),
|
24002
24008
|
incomeSource: new UntypedFormControl(transaction.incomeSource, [Validators.required, autocompleteValidator()]),
|
24003
24009
|
});
|
24010
|
+
// transactionAmount=frankedAmount + unfrankedAmount
|
24011
|
+
this.get('amount').setValidators(conditionalValidator(() => this.get('chartAccounts').value && this.get('chartAccounts').value.isDividends(), matchSumValidator(this.getAmountComponents)));
|
24004
24012
|
// forbid to edit some fields for allocated transaction
|
24005
24013
|
if (allocations.length) {
|
24006
24014
|
this.get('chartAccounts').disable();
|
@@ -24011,14 +24019,26 @@ class HoldingIncomeForm extends WorkTransactionForm {
|
|
24011
24019
|
this.get('amount').disable();
|
24012
24020
|
}
|
24013
24021
|
}
|
24022
|
+
/**
|
24023
|
+
* metafields components of transactionAmount
|
24024
|
+
*/
|
24025
|
+
getAmountComponents() {
|
24026
|
+
return this.metaFields.controls.filter((formGroup) => [ChartAccountsMetaFieldListEnum.FRANKED, ChartAccountsMetaFieldListEnum.UNFRANKED].includes(formGroup.get('chartAccountsMetaField').value.id)).map(formGroup => formGroup.get('value'));
|
24027
|
+
}
|
24014
24028
|
listenEvents() {
|
24015
24029
|
this.listenChartAccountsChanges();
|
24016
24030
|
}
|
24031
|
+
get metaFields() {
|
24032
|
+
return this.get('metaFields');
|
24033
|
+
}
|
24034
|
+
get frankingCredit() {
|
24035
|
+
return this.metaFields.controls.find((group) => group.get('chartAccountsMetaField').value.isFrankingCredit())?.get('value');
|
24036
|
+
}
|
24017
24037
|
/**
|
24018
24038
|
* @TODO Alex/Vik: probably we need some database changes related to metafields.
|
24019
24039
|
* Now we have the following custom metafields behaviour:
|
24020
24040
|
* - % of share field should be 100 by default (now handled by WorkTransactionForm)
|
24021
|
-
* - Franked and Unfranked sum should be equal to transaction amount
|
24041
|
+
* - Franked and Unfranked sum should be equal to transaction amount
|
24022
24042
|
* - Franked field has custom message (mat-hint) (now handled by HoldingIncomeFormComponent)
|
24023
24043
|
* - some metafields required, but some not (now handled by HoldingIncomeForm)
|
24024
24044
|
*/
|
@@ -24027,12 +24047,7 @@ class HoldingIncomeForm extends WorkTransactionForm {
|
|
24027
24047
|
if (!chartAccounts.isDividends()) {
|
24028
24048
|
return;
|
24029
24049
|
}
|
24030
|
-
this.
|
24031
|
-
if (metaFieldGroup.get('chartAccountsMetaField').value.isFrankingCredit()) {
|
24032
|
-
return;
|
24033
|
-
}
|
24034
|
-
metaFieldGroup.get('value').setValidators(Validators.required);
|
24035
|
-
});
|
24050
|
+
this.frankingCredit.setValidators(Validators.required);
|
24036
24051
|
});
|
24037
24052
|
}
|
24038
24053
|
}
|
@@ -24191,22 +24206,33 @@ class HoldingForm extends AbstractForm {
|
|
24191
24206
|
}
|
24192
24207
|
}
|
24193
24208
|
|
24209
|
+
/**
|
24210
|
+
* @TODO vik TT-4048
|
24211
|
+
*/
|
24194
24212
|
class HoldingReinvestForm extends AbstractForm {
|
24195
24213
|
constructor(reinvest) {
|
24196
24214
|
super({
|
24215
|
+
// the difference between dividends amount and given shares (shares=dividendsAmount/sharePrice)
|
24216
|
+
cashVariance: new FormControl({ value: 0, disabled: true }, Validators.required),
|
24197
24217
|
transaction: new HoldingIncomeForm(reinvest.transaction, null, []),
|
24198
24218
|
holding: new HoldingForm(reinvest.holding)
|
24199
24219
|
}, reinvest);
|
24200
24220
|
this.reinvest = reinvest;
|
24221
|
+
this.listenEvents();
|
24201
24222
|
// emit values to trigger changes and create chart accounts metafields
|
24202
24223
|
this.get('transaction').emitValues();
|
24203
24224
|
// disable amount field because we calculate the value automatically and this field is visible as disabled
|
24204
24225
|
this.get(['transaction', 'amount']).disable();
|
24205
|
-
|
24226
|
+
// franked/unfranked fields are required
|
24227
|
+
this.transactionForm.getAmountComponents().forEach(control => {
|
24228
|
+
control.addValidators(Validators.required);
|
24229
|
+
control.setValue(null);
|
24230
|
+
});
|
24206
24231
|
}
|
24207
24232
|
listenEvents() {
|
24208
24233
|
this.listenHoldingChanges();
|
24209
24234
|
this.listenDateChanges();
|
24235
|
+
this.listenAmountChanges();
|
24210
24236
|
}
|
24211
24237
|
get transactionForm() {
|
24212
24238
|
return this.get('transaction');
|
@@ -24214,6 +24240,15 @@ class HoldingReinvestForm extends AbstractForm {
|
|
24214
24240
|
get holdingForm() {
|
24215
24241
|
return this.get('holding');
|
24216
24242
|
}
|
24243
|
+
/**
|
24244
|
+
* calculated automatically as cashVariance=transactionAmount-frankedAmount-unfrankedAmount
|
24245
|
+
*/
|
24246
|
+
listenAmountChanges() {
|
24247
|
+
this.transactionForm.valueChanges.subscribe(() => {
|
24248
|
+
const sum = this.transactionForm.getAmountComponents().reduce((acc, control) => acc + control.value, 0);
|
24249
|
+
this.get('cashVariance').setValue(this.get(['transaction', 'amount']).value - sum);
|
24250
|
+
});
|
24251
|
+
}
|
24217
24252
|
/**
|
24218
24253
|
* Set transaction amount based on holding quantity and price
|
24219
24254
|
*/
|
@@ -24239,8 +24274,15 @@ class HoldingReinvestForm extends AbstractForm {
|
|
24239
24274
|
* @TODO Alex (TT-2847): attach file to both (transaction and holding) when files system refactored
|
24240
24275
|
*/
|
24241
24276
|
submit() {
|
24277
|
+
const value = this.transactionForm.getRawValue();
|
24278
|
+
console.log(value.amount);
|
24279
|
+
console.log(this.get('cashVariance').value);
|
24242
24280
|
return super.submit({
|
24243
|
-
transaction: this.transactionForm.submit({
|
24281
|
+
transaction: this.transactionForm.submit({
|
24282
|
+
type: TransactionTypeEnum.CREDIT,
|
24283
|
+
description: `Reinvestment - ${value.incomeSource.name}`,
|
24284
|
+
amount: value.amount - this.get('cashVariance').value
|
24285
|
+
}),
|
24244
24286
|
holding: this.holdingForm.submit()
|
24245
24287
|
});
|
24246
24288
|
}
|
@@ -24386,5 +24428,5 @@ var MessagesEnum;
|
|
24386
24428
|
* Generated bundle index. Do not edit.
|
24387
24429
|
*/
|
24388
24430
|
|
24389
|
-
export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetForm, BudgetMessagesEnum, BudgetRule, BudgetService, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsInvoiceEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsUnallocatableListEnum, ChartAccountsValue, 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, CorelogicService, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, 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, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GoogleService, HeaderTitleService, Holding, HoldingCollection, HoldingForm, HoldingImport, HoldingImportForm, HoldingImportMessagesEnum, HoldingImportService, HoldingIncomeForm, HoldingMessagesEnum, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleForm, HoldingSaleMessagesEnum, HoldingSaleService, HoldingService, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, JsPdf, JwtService, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanFrequencyEnum, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MixpanelService, 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, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentForm, PropertyDocumentMessagesEnum, PropertyDocumentService, 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, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceListEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessLossesCollection, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, 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, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, 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, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, alphaSpaceValidator, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, minDateValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
24431
|
+
export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetForm, BudgetMessagesEnum, BudgetRule, BudgetService, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsInvoiceEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsUnallocatableListEnum, ChartAccountsValue, 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, CorelogicService, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, 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, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GoogleService, HeaderTitleService, Holding, HoldingCollection, HoldingForm, HoldingImport, HoldingImportForm, HoldingImportMessagesEnum, HoldingImportService, HoldingIncomeForm, HoldingMessagesEnum, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleForm, HoldingSaleMessagesEnum, HoldingSaleService, HoldingService, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, JsPdf, JwtService, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanFrequencyEnum, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MixpanelService, 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, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentForm, PropertyDocumentMessagesEnum, PropertyDocumentService, 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, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceListEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessLossesCollection, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, 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, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, 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, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, alphaSpaceValidator, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, minDateValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
24390
24432
|
//# sourceMappingURL=taxtank-core.mjs.map
|