taxtank-core 0.21.0 → 0.21.1
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/bundles/taxtank-core.umd.js +120 -40
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/collections/property/property.collection.js +24 -5
- package/esm2015/lib/models/badge/badge-color.enum.js +8 -0
- package/esm2015/lib/models/badge/badge.js +14 -0
- package/esm2015/lib/models/property/property.js +6 -1
- package/esm2015/lib/services/property/property-calculation/property-calculation.service.js +35 -1
- package/esm2015/public-api.js +4 -1
- package/fesm2015/taxtank-core.js +113 -38
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/collections/property/property.collection.d.ts +5 -0
- package/lib/models/badge/badge-color.enum.d.ts +6 -0
- package/lib/models/badge/badge.d.ts +10 -0
- package/lib/models/property/property.d.ts +5 -0
- package/lib/services/property/property-calculation/property-calculation.service.d.ts +10 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
package/fesm2015/taxtank-core.js
CHANGED
|
@@ -2310,6 +2310,11 @@ class Property extends Property$1 {
|
|
|
2310
2310
|
getOwnershipDuration(sale, unitOfTime = 'days') {
|
|
2311
2311
|
return moment(sale.contractDate).diff(moment(this.contractDate), unitOfTime);
|
|
2312
2312
|
}
|
|
2313
|
+
/**
|
|
2314
|
+
* Tax Position = Income - Expense - Interest - Depreciation
|
|
2315
|
+
* Where (Income - Expense - Interest) is cash position.
|
|
2316
|
+
* https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217415928/Dashboard+Property
|
|
2317
|
+
*/
|
|
2313
2318
|
getTaxPosition(transactions, depreciations) {
|
|
2314
2319
|
return transactions.cashPosition - Math.abs(depreciations.claimAmount);
|
|
2315
2320
|
}
|
|
@@ -3748,13 +3753,32 @@ class PropertyCollection extends Collection {
|
|
|
3748
3753
|
* Get property with the lowest tax position
|
|
3749
3754
|
*/
|
|
3750
3755
|
getBestPerformanceTaxProperty(transactions, depreciations) {
|
|
3756
|
+
const transactionsByProperty = transactions.groupBy('property.id');
|
|
3757
|
+
const depreciationsByProperty = depreciations.groupBy('property.id');
|
|
3751
3758
|
return this.items.reduce((min, current) => {
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
: min;
|
|
3759
|
+
const minTaxPosition = min.getTaxPosition(transactionsByProperty.get(min.id), depreciationsByProperty.get(min.id));
|
|
3760
|
+
const currentTaxPosition = current.getTaxPosition(transactionsByProperty.get(current.id), depreciationsByProperty.get(current.id));
|
|
3761
|
+
return minTaxPosition > currentTaxPosition ? current : min;
|
|
3756
3762
|
}, this.first);
|
|
3757
3763
|
}
|
|
3764
|
+
/**
|
|
3765
|
+
* Show best performance properties first
|
|
3766
|
+
* https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677997/Property+Tank+Dashboard
|
|
3767
|
+
*/
|
|
3768
|
+
sortByBestPerformance(transactions, depreciations) {
|
|
3769
|
+
const activeProperties = this.getActiveProperties();
|
|
3770
|
+
// nothing to sort when no active properties
|
|
3771
|
+
if (!activeProperties.length) {
|
|
3772
|
+
return this;
|
|
3773
|
+
}
|
|
3774
|
+
const bestProperties = uniqBy(this.create([
|
|
3775
|
+
activeProperties.getBestPerformanceGrowthProperty(),
|
|
3776
|
+
activeProperties.getBestPerformanceTaxProperty(transactions, depreciations)
|
|
3777
|
+
]).toArray(), 'id');
|
|
3778
|
+
const newItems = this.remove(bestProperties).toArray();
|
|
3779
|
+
newItems.unshift(...bestProperties);
|
|
3780
|
+
return this.create(newItems);
|
|
3781
|
+
}
|
|
3758
3782
|
}
|
|
3759
3783
|
|
|
3760
3784
|
/**
|
|
@@ -5940,6 +5964,26 @@ class AccountSetupItem extends AbstractModel {
|
|
|
5940
5964
|
}
|
|
5941
5965
|
}
|
|
5942
5966
|
|
|
5967
|
+
var BadgeColorEnum;
|
|
5968
|
+
(function (BadgeColorEnum) {
|
|
5969
|
+
BadgeColorEnum["DEFAULT"] = "default";
|
|
5970
|
+
BadgeColorEnum["GREEN"] = "green";
|
|
5971
|
+
BadgeColorEnum["GOLD"] = "gold";
|
|
5972
|
+
BadgeColorEnum["GRAY"] = "gray";
|
|
5973
|
+
})(BadgeColorEnum || (BadgeColorEnum = {}));
|
|
5974
|
+
|
|
5975
|
+
/**
|
|
5976
|
+
* Class for UI element badge
|
|
5977
|
+
*/
|
|
5978
|
+
class Badge extends AbstractModel {
|
|
5979
|
+
constructor(text, color) {
|
|
5980
|
+
super();
|
|
5981
|
+
this.text = '';
|
|
5982
|
+
this.text = text;
|
|
5983
|
+
this.color = color || BadgeColorEnum.DEFAULT;
|
|
5984
|
+
}
|
|
5985
|
+
}
|
|
5986
|
+
|
|
5943
5987
|
/**
|
|
5944
5988
|
* bank account collection UI class with frontend specific data
|
|
5945
5989
|
*/
|
|
@@ -6499,6 +6543,39 @@ var AlphabetColorsEnum;
|
|
|
6499
6543
|
AlphabetColorsEnum["Z"] = "#E3C9CE";
|
|
6500
6544
|
})(AlphabetColorsEnum || (AlphabetColorsEnum = {}));
|
|
6501
6545
|
|
|
6546
|
+
/**
|
|
6547
|
+
* List of objects grouped by passed property
|
|
6548
|
+
*/
|
|
6549
|
+
class Dictionary {
|
|
6550
|
+
constructor(items, path = 'id') {
|
|
6551
|
+
this.items = {};
|
|
6552
|
+
if (!items.length) {
|
|
6553
|
+
return;
|
|
6554
|
+
}
|
|
6555
|
+
// Do nothing if provided path was not found in the 1st item
|
|
6556
|
+
if (!hasIn(items[0], path.split('.')[0])) {
|
|
6557
|
+
return;
|
|
6558
|
+
}
|
|
6559
|
+
this.groupItems(items, path);
|
|
6560
|
+
}
|
|
6561
|
+
add(key, value) {
|
|
6562
|
+
this.items[key] = value;
|
|
6563
|
+
}
|
|
6564
|
+
get(key) {
|
|
6565
|
+
return this.items[key] ? this.items[key] : null;
|
|
6566
|
+
}
|
|
6567
|
+
groupItems(items, path) {
|
|
6568
|
+
items.forEach((item) => {
|
|
6569
|
+
let key = get(item, path);
|
|
6570
|
+
// if object does not have property for grouping it will be grouped as 'other'
|
|
6571
|
+
if (key === undefined) {
|
|
6572
|
+
key = 'other';
|
|
6573
|
+
}
|
|
6574
|
+
this.items[key] = item;
|
|
6575
|
+
});
|
|
6576
|
+
}
|
|
6577
|
+
}
|
|
6578
|
+
|
|
6502
6579
|
var DepreciationGroupEnum;
|
|
6503
6580
|
(function (DepreciationGroupEnum) {
|
|
6504
6581
|
DepreciationGroupEnum[DepreciationGroupEnum["BUILDING_IMPROVEMENTS"] = 0] = "BUILDING_IMPROVEMENTS";
|
|
@@ -6575,39 +6652,6 @@ class DepreciationReceipt extends DepreciationReceipt$1 {
|
|
|
6575
6652
|
}
|
|
6576
6653
|
}
|
|
6577
6654
|
|
|
6578
|
-
/**
|
|
6579
|
-
* List of objects grouped by passed property
|
|
6580
|
-
*/
|
|
6581
|
-
class Dictionary {
|
|
6582
|
-
constructor(items, path = 'id') {
|
|
6583
|
-
this.items = {};
|
|
6584
|
-
if (!items.length) {
|
|
6585
|
-
return;
|
|
6586
|
-
}
|
|
6587
|
-
// Do nothing if provided path was not found in the 1st item
|
|
6588
|
-
if (!hasIn(items[0], path.split('.')[0])) {
|
|
6589
|
-
return;
|
|
6590
|
-
}
|
|
6591
|
-
this.groupItems(items, path);
|
|
6592
|
-
}
|
|
6593
|
-
add(key, value) {
|
|
6594
|
-
this.items[key] = value;
|
|
6595
|
-
}
|
|
6596
|
-
get(key) {
|
|
6597
|
-
return this.items[key] ? this.items[key] : null;
|
|
6598
|
-
}
|
|
6599
|
-
groupItems(items, path) {
|
|
6600
|
-
items.forEach((item) => {
|
|
6601
|
-
let key = get(item, path);
|
|
6602
|
-
// if object does not have property for grouping it will be grouped as 'other'
|
|
6603
|
-
if (key === undefined) {
|
|
6604
|
-
key = 'other';
|
|
6605
|
-
}
|
|
6606
|
-
this.items[key] = item;
|
|
6607
|
-
});
|
|
6608
|
-
}
|
|
6609
|
-
}
|
|
6610
|
-
|
|
6611
6655
|
class Document$1 extends AbstractModel {
|
|
6612
6656
|
}
|
|
6613
6657
|
|
|
@@ -11183,6 +11227,37 @@ class PropertyCalculationService {
|
|
|
11183
11227
|
// Math abs is required for correct percentage calculation
|
|
11184
11228
|
return properties.purchasePrice - Math.abs(this.getLoanAmount(properties, bankAccounts, loans));
|
|
11185
11229
|
}
|
|
11230
|
+
/**
|
|
11231
|
+
* Get dictionary of badges for each property in collection
|
|
11232
|
+
*/
|
|
11233
|
+
getBadgesByProperty(properties, transactions, depreciations) {
|
|
11234
|
+
const badgesByProperty = new Dictionary([]);
|
|
11235
|
+
properties.toArray().forEach((property) => {
|
|
11236
|
+
badgesByProperty.add(property.id, this.getBadge(property, properties, transactions, depreciations));
|
|
11237
|
+
});
|
|
11238
|
+
return badgesByProperty;
|
|
11239
|
+
}
|
|
11240
|
+
/**
|
|
11241
|
+
* Get Badge for single property in collection
|
|
11242
|
+
*/
|
|
11243
|
+
getBadge(property, properties, transactions, depreciations) {
|
|
11244
|
+
// best performance properties could be only from active properties list
|
|
11245
|
+
const activeProperties = properties.getActiveProperties();
|
|
11246
|
+
const bestPerformanceGrowthProperty = activeProperties.getBestPerformanceGrowthProperty();
|
|
11247
|
+
const bestPerformanceTaxProperty = activeProperties.getBestPerformanceTaxProperty(transactions, depreciations);
|
|
11248
|
+
switch (true) {
|
|
11249
|
+
case !property.isActive:
|
|
11250
|
+
return new Badge('Inactive', BadgeColorEnum.GRAY);
|
|
11251
|
+
case property.id === bestPerformanceTaxProperty.id && property.id === bestPerformanceGrowthProperty.id:
|
|
11252
|
+
return new Badge('Best performance growth & tax', BadgeColorEnum.GOLD);
|
|
11253
|
+
case property.id === bestPerformanceTaxProperty.id:
|
|
11254
|
+
return new Badge('Best performance tax', BadgeColorEnum.GOLD);
|
|
11255
|
+
case property.id === bestPerformanceGrowthProperty.id:
|
|
11256
|
+
return new Badge('Best performance growth', BadgeColorEnum.GREEN);
|
|
11257
|
+
default:
|
|
11258
|
+
return new Badge('Monitoring performance');
|
|
11259
|
+
}
|
|
11260
|
+
}
|
|
11186
11261
|
}
|
|
11187
11262
|
PropertyCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11188
11263
|
PropertyCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' });
|
|
@@ -13262,5 +13337,5 @@ class MyTaxRentForm extends AbstractForm {
|
|
|
13262
13337
|
* Generated bundle index. Do not edit.
|
|
13263
13338
|
*/
|
|
13264
13339
|
|
|
13265
|
-
export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, Address, AddressService, AddressTypeEnum, AlphabetColorsEnum, AppEvent, AppEventTypeEnum, AssetEntityTypeEnum, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Bank, BankAccount, BankAccountAddManualForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountLoanForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionService, BankConnectionStatusEnum, BankLoginData, BankLoginForm, BankService, BankTransaction, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasiqConfig, BasiqJob, BasiqService, BasiqToken, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, ChartAccounts, ChartAccountsCategoryEnum, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsListEnum, ChartAccountsMetadata, ChartAccountsMetadataListEnum, ChartAccountsMetadataTypeEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartData, ChartSerie, Chat, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientDetails, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientIncomeTypes, ClientIncomeTypesForm, ClientIncomeTypesService, ClientInvite, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CorelogicService, CorelogicSuggestion, Country, DEDUCTION_CATEGORIES, DEFAULT_VEHICLE_EXPENSE, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReceipt, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderService, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeInvite, EmployeeInviteService, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FinancialYear, Firm, FirmService, FirmTypeEnum, HeaderTitleService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastService, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, InterceptorsModule, IntercomService, InviteStatusEnum, JwtService, KompassifyService, Loan, LoanBankTypeEnum, LoanCollection, LoanFrequencyEnum, LoanInterestTypeEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LogbookPeriod, LoginForm, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessOrLosses, MyTaxBusinessOrLossesForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEmployeeShareSchemes, MyTaxEmployeeShareSchemesForm, 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, PdfOrientationEnum, PdfSettings, Phone, PhoneTypeEnum, PreloaderService, Property, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentService, PropertyEquityChartData, PropertyEquityChartItem, PropertyForecast, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleService, PropertySaleTaxExemptionMetadata, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, SUBSCRIPTION_DESCRIPTION, SUBSCRIPTION_TITLE, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentStatusEnum, ServicePrice, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductIdEnum, ServiceProductStatusEnum, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, ShareFilterOptionsEnum, SoleForecast, SoleForecastService, SpareDocumentSpareTypeEnum, SseService, SubscriptionService, SubscriptionTypeEnum, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionEnum, TaxExemptionMetadata, TaxExemptionMetadataEnum, TaxExemptionService, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReview, TaxReviewCollection, TaxReviewHistoryService, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionCalculationService, TransactionCategoryEnum, TransactionCollection, TransactionMetadata, TransactionOperationEnum, TransactionReceipt, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, USER_ROLES, USER_WORK_POSITION, User, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserMedicareExemptionEnum, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, Vehicle, VehicleClaim, VehicleClaimForm, VehicleClaimMethodEnum, VehicleClaimService, VehicleCollection, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleService, WORK_TANK_LOGBOOK_PURPOSE_OPTIONS, XlsxService, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, createDate, displayMatOptions, enumToList, getDocIcon, passwordMatchValidator, passwordValidator, replace, roundTo, sort, sortDeep, taxReviewFilterPredicate };
|
|
13340
|
+
export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupService, Address, AddressService, AddressTypeEnum, AlphabetColorsEnum, AppEvent, AppEventTypeEnum, AssetEntityTypeEnum, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Badge, BadgeColorEnum, Bank, BankAccount, BankAccountAddManualForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountLoanForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection, BankConnectionService, BankConnectionStatusEnum, BankLoginData, BankLoginForm, BankService, BankTransaction, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasiqConfig, BasiqJob, BasiqService, BasiqToken, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, ChartAccounts, ChartAccountsCategoryEnum, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsListEnum, ChartAccountsMetadata, ChartAccountsMetadataListEnum, ChartAccountsMetadataTypeEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartData, ChartSerie, Chat, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientDetails, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientIncomeTypes, ClientIncomeTypesForm, ClientIncomeTypesService, ClientInvite, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CorelogicService, CorelogicSuggestion, Country, DEDUCTION_CATEGORIES, DEFAULT_VEHICLE_EXPENSE, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReceipt, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderService, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeInvite, EmployeeInviteService, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FinancialYear, Firm, FirmService, FirmTypeEnum, HeaderTitleService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastService, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, InterceptorsModule, IntercomService, InviteStatusEnum, JwtService, KompassifyService, Loan, LoanBankTypeEnum, LoanCollection, LoanFrequencyEnum, LoanInterestTypeEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LogbookPeriod, LoginForm, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessOrLosses, MyTaxBusinessOrLossesForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEmployeeShareSchemes, MyTaxEmployeeShareSchemesForm, 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, PdfOrientationEnum, PdfSettings, Phone, PhoneTypeEnum, PreloaderService, Property, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentService, PropertyEquityChartData, PropertyEquityChartItem, PropertyForecast, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale, PropertySaleService, PropertySaleTaxExemptionMetadata, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, SUBSCRIPTION_DESCRIPTION, SUBSCRIPTION_TITLE, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentStatusEnum, ServicePrice, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductIdEnum, ServiceProductStatusEnum, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, ShareFilterOptionsEnum, SoleForecast, SoleForecastService, SpareDocumentSpareTypeEnum, SseService, SubscriptionService, SubscriptionTypeEnum, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionEnum, TaxExemptionMetadata, TaxExemptionMetadataEnum, TaxExemptionService, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReview, TaxReviewCollection, TaxReviewHistoryService, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionCalculationService, TransactionCategoryEnum, TransactionCollection, TransactionMetadata, TransactionOperationEnum, TransactionReceipt, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, USER_ROLES, USER_WORK_POSITION, User, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserMedicareExemptionEnum, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, Vehicle, VehicleClaim, VehicleClaimForm, VehicleClaimMethodEnum, VehicleClaimService, VehicleCollection, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleService, WORK_TANK_LOGBOOK_PURPOSE_OPTIONS, XlsxService, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, createDate, displayMatOptions, enumToList, getDocIcon, passwordMatchValidator, passwordValidator, replace, roundTo, sort, sortDeep, taxReviewFilterPredicate };
|
|
13266
13341
|
//# sourceMappingURL=taxtank-core.js.map
|