taxtank-core 0.33.6 → 0.33.7
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/src/lib/collections/bank-account.collection.mjs +5 -41
- package/esm2022/src/lib/collections/depreciation.collection.mjs +6 -18
- package/esm2022/src/lib/collections/property/property.collection.mjs +8 -4
- package/esm2022/src/lib/collections/transaction/transaction.collection.mjs +3 -15
- package/esm2022/src/lib/db/Enums/bank/bank-account-type.enum.mjs +2 -2
- package/esm2022/src/lib/db/Models/bank/bank-account.mjs +1 -1
- package/esm2022/src/lib/db/Models/transaction/transaction-base.mjs +6 -40
- package/esm2022/src/lib/forms/property/property-share.form.mjs +2 -2
- package/esm2022/src/lib/models/bank/bank-account.mjs +6 -3
- package/esm2022/src/lib/models/bank/type-loan.const.mjs +2 -5
- package/esm2022/src/lib/models/depreciation/depreciation.mjs +8 -22
- package/esm2022/src/lib/models/property/property.mjs +1 -4
- package/esm2022/src/lib/models/report/reports.const.mjs +17 -17
- package/esm2022/src/lib/models/transaction/transaction.mjs +1 -19
- package/esm2022/src/lib/services/http/transaction/transaction.service.mjs +1 -18
- package/fesm2022/taxtank-core.mjs +53 -195
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/collections/bank-account.collection.d.ts +1 -21
- package/src/lib/collections/depreciation.collection.d.ts +1 -1
- package/src/lib/collections/property/property.collection.d.ts +1 -1
- package/src/lib/db/Enums/bank/bank-account-type.enum.d.ts +1 -0
- package/src/lib/db/Models/bank/bank-account.d.ts +0 -1
- package/src/lib/db/Models/transaction/transaction-base.d.ts +0 -9
- package/src/lib/models/bank/bank-account.d.ts +1 -0
- package/src/lib/models/bank/type-loan.const.d.ts +0 -3
- package/src/lib/models/depreciation/depreciation.d.ts +3 -11
- package/src/lib/models/property/property.d.ts +0 -1
- package/src/lib/models/transaction/transaction.d.ts +1 -6
- package/src/lib/services/http/transaction/transaction.service.d.ts +0 -6
package/package.json
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
import { Collection } from './collection';
|
2
|
-
import { BankAccountTypeEnum } from '../db/Enums';
|
3
2
|
import { TankTypeEnum } from '../db/Enums/tank-type.enum';
|
4
3
|
import { BankAccount, BankAccountProperty, Property } from '../models';
|
5
4
|
import { CollectionDictionary } from './collection-dictionary';
|
@@ -8,14 +7,6 @@ import { LoanCollection } from './loan';
|
|
8
7
|
* Collection of bank accounts.
|
9
8
|
*/
|
10
9
|
export declare class BankAccountCollection extends Collection<BankAccount> {
|
11
|
-
/**
|
12
|
-
* get list of bank accounts with passed types
|
13
|
-
*/
|
14
|
-
getByType(types: BankAccountTypeEnum | BankAccountTypeEnum[], isExclude?: boolean): BankAccount[];
|
15
|
-
/**
|
16
|
-
* get amount of current loans
|
17
|
-
*/
|
18
|
-
getCurrentLoanAmount(): number;
|
19
10
|
/**
|
20
11
|
* get collection filtered by property id
|
21
12
|
*/
|
@@ -30,23 +21,12 @@ export declare class BankAccountCollection extends Collection<BankAccount> {
|
|
30
21
|
* get collection of active bank accounts
|
31
22
|
*/
|
32
23
|
getActive(): BankAccountCollection;
|
33
|
-
/**
|
34
|
-
* Get collection of loan bank accounts
|
35
|
-
*/
|
36
24
|
getLoanAccounts(): BankAccountCollection;
|
25
|
+
getDebitAccounts(): BankAccountCollection;
|
37
26
|
get loans(): LoanCollection;
|
38
|
-
getSavingsAccounts(): BankAccountCollection;
|
39
27
|
getOpeningBalance(): number;
|
40
28
|
get currentBalance(): number;
|
41
29
|
get bankShortNames(): string;
|
42
|
-
/**
|
43
|
-
* Get Collection of bank accounts with property tank type
|
44
|
-
*/
|
45
|
-
getPropertyBankAccounts(): BankAccountCollection;
|
46
|
-
/**
|
47
|
-
* Get Collection of bank accounts with work tank type
|
48
|
-
*/
|
49
|
-
getWorkBankAccounts(): BankAccountCollection;
|
50
30
|
/**
|
51
31
|
* Get Collection of bank accounts by tank type
|
52
32
|
*/
|
@@ -7,7 +7,7 @@ import { ChartAccountsCategoryEnum } from '../db/Enums';
|
|
7
7
|
import { VehicleClaim } from '../models';
|
8
8
|
export declare class DepreciationCollection extends Collection<Depreciation> {
|
9
9
|
getSoleDepreciations(): this;
|
10
|
-
|
10
|
+
getCurrentYearBuy(): this;
|
11
11
|
/**
|
12
12
|
* Get total amount of all depreciations in the collection
|
13
13
|
*/
|
@@ -20,7 +20,7 @@ export declare class PropertyCollection extends Collection<Property> {
|
|
20
20
|
get purchasePrice(): number;
|
21
21
|
get growthPercent(): number;
|
22
22
|
get marketValue(): number;
|
23
|
-
get
|
23
|
+
get sharedMarketValue(): number;
|
24
24
|
/**
|
25
25
|
* Get list of unique property categories from collection
|
26
26
|
*/
|
@@ -25,17 +25,8 @@ export declare abstract class TransactionBase extends ObservableModel {
|
|
25
25
|
* @TODO remove when AllocateForm is refactored and not merging with Transaction class which cause the issue
|
26
26
|
*/
|
27
27
|
set tankType(tankType: TankTypeEnum);
|
28
|
-
/**
|
29
|
-
* Check if current tank is Property
|
30
|
-
*/
|
31
28
|
isPropertyTank(): boolean;
|
32
|
-
/**
|
33
|
-
* Check if current tank is Work
|
34
|
-
*/
|
35
29
|
isWorkTank(): boolean;
|
36
|
-
/**
|
37
|
-
* Check if current tank is Sole
|
38
|
-
*/
|
39
30
|
isSoleTank(): boolean;
|
40
31
|
isHoldingTank(): boolean;
|
41
32
|
isOtherTank(): boolean;
|
@@ -10,8 +10,8 @@ import { Expense } from '../../interfaces';
|
|
10
10
|
* @TODO Alex: clarify grouping rules and refactor
|
11
11
|
*/
|
12
12
|
export declare class Depreciation extends DepreciationBase implements Expense {
|
13
|
-
static
|
14
|
-
static
|
13
|
+
static writtenOffThreshold: number;
|
14
|
+
static lowValuePoolThreshold: number;
|
15
15
|
purchaseDate: Date;
|
16
16
|
date: Date;
|
17
17
|
lowValuePoolDate: Date;
|
@@ -22,9 +22,6 @@ export declare class Depreciation extends DepreciationBase implements Expense {
|
|
22
22
|
chartAccounts: ChartAccounts;
|
23
23
|
bankTransaction: BankTransaction;
|
24
24
|
type: DepreciationTypeEnum;
|
25
|
-
/**
|
26
|
-
* @TODO remove after ? signs removed from db models
|
27
|
-
*/
|
28
25
|
amount: number;
|
29
26
|
isCapital(): boolean;
|
30
27
|
isBorrowingExpense(): boolean;
|
@@ -41,10 +38,6 @@ export declare class Depreciation extends DepreciationBase implements Expense {
|
|
41
38
|
* Check if depreciation chart accounts heading related to vehicles category
|
42
39
|
*/
|
43
40
|
isVehicleDepreciation(): boolean;
|
44
|
-
/**
|
45
|
-
* Get depreciation purchase date
|
46
|
-
*/
|
47
|
-
getDate(): Date;
|
48
41
|
/**
|
49
42
|
* @TODO Vik: Research a problem with depreciations without current year forecast
|
50
43
|
*/
|
@@ -52,7 +45,6 @@ export declare class Depreciation extends DepreciationBase implements Expense {
|
|
52
45
|
getForecastByYear(year: number): DepreciationForecast;
|
53
46
|
getClaimAmountByYear(year: number): number;
|
54
47
|
getCloseBalanceByYear(year: number): number;
|
55
|
-
isBuildingAtCost(): boolean;
|
56
48
|
/**
|
57
49
|
* Create a new transaction from current depreciation
|
58
50
|
*/
|
@@ -66,5 +58,5 @@ export declare class Depreciation extends DepreciationBase implements Expense {
|
|
66
58
|
/**
|
67
59
|
* assets purchased in the current financial year
|
68
60
|
*/
|
69
|
-
|
61
|
+
isCurrentYearBuy(): boolean;
|
70
62
|
}
|
@@ -49,7 +49,6 @@ export declare class Property extends PropertyBase {
|
|
49
49
|
get forecastedRentalReturn(): number;
|
50
50
|
get forecastedTaxPosition(): number;
|
51
51
|
get forecastedCashPosition(): number;
|
52
|
-
get marketValueGrowth(): number;
|
53
52
|
get myShare(): PropertyShare;
|
54
53
|
get claimPercent(): number;
|
55
54
|
get claimCoefficient(): number;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Transaction as TransactionBase } from '../../db/Models/transaction/transaction';
|
2
|
-
import {
|
2
|
+
import { ChartAccountsMetaFieldListEnum } from '../../db/Enums';
|
3
3
|
import { TransactionOperationEnum } from '../../db/Enums/transaction-operation.enum';
|
4
4
|
import { Property } from '../property';
|
5
5
|
import { ChartAccounts } from '../chart-accounts';
|
@@ -43,11 +43,6 @@ export declare class Transaction extends TransactionBase implements Expense {
|
|
43
43
|
isExpense(): boolean;
|
44
44
|
isPersonal(): boolean;
|
45
45
|
isInterest(): boolean;
|
46
|
-
get chartAccountsCategories(): ChartAccountsCategoryEnum[];
|
47
|
-
/**
|
48
|
-
* Get transaction date
|
49
|
-
*/
|
50
|
-
getDate(): Date;
|
51
46
|
/**
|
52
47
|
* Check if transaction type is vehicle
|
53
48
|
*/
|
@@ -69,12 +69,6 @@ export declare class TransactionService extends RestService<TransactionBase, Tra
|
|
69
69
|
* @param model
|
70
70
|
*/
|
71
71
|
delete(model: Transaction): Observable<void>;
|
72
|
-
/**
|
73
|
-
* @TODO Alex wrong place for this logic, move to model
|
74
|
-
* calculate gross income amount based on transaction amount and taxes (fees)
|
75
|
-
* @param transaction Transaction instance for calculation
|
76
|
-
*/
|
77
|
-
calculateGrossAmount(transaction: Transaction): number;
|
78
72
|
/**
|
79
73
|
* Listen to EventDispatcherService event related to Depreciation changing
|
80
74
|
*/
|