taxtank-core 0.27.2 → 0.27.3
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 +253 -69
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/collections/depreciation.collection.js +10 -9
- package/esm2015/lib/db/Enums/depreciation-calculation.enum.js +2 -2
- package/esm2015/lib/db/Enums/sole-depreciation-method.enum.js +6 -0
- package/esm2015/lib/db/Models/sole/sole-business-activity.js +4 -0
- package/esm2015/lib/db/Models/sole/sole-business.js +1 -1
- package/esm2015/lib/db/Models/sole/sole-depreciation-method.js +4 -0
- package/esm2015/lib/db/Models/sole/sole-details.js +1 -1
- package/esm2015/lib/forms/sole/index.js +2 -1
- package/esm2015/lib/forms/sole/sole-business.form.js +3 -3
- package/esm2015/lib/forms/sole/sole-depreciation-method.form.js +10 -0
- package/esm2015/lib/models/depreciation/depreciation-group.enum.js +2 -1
- package/esm2015/lib/models/depreciation/depreciation-groups.const.js +7 -2
- package/esm2015/lib/models/depreciation/depreciation.js +32 -25
- package/esm2015/lib/models/endpoint/endpoints.const.js +6 -4
- package/esm2015/lib/models/event/app-event-type.enum.js +33 -31
- package/esm2015/lib/models/report/depreciation/depreciation-report-item.js +2 -2
- package/esm2015/lib/models/report/my-tax/my-tax-deductions/my-tax-deductions.js +2 -2
- package/esm2015/lib/models/sole/index.js +3 -1
- package/esm2015/lib/models/sole/sole-business-activity.js +4 -0
- package/esm2015/lib/models/sole/sole-business.js +5 -1
- package/esm2015/lib/models/sole/sole-depreciation-method.js +8 -0
- package/esm2015/lib/services/http/depreciation/depreciation.service.js +19 -1
- package/esm2015/lib/services/http/property/property.service.js +8 -1
- package/esm2015/lib/services/http/sole/index.js +3 -1
- package/esm2015/lib/services/http/sole/sole-business-activity/sole-business-activity.service.js +21 -0
- package/esm2015/lib/services/http/sole/sole-depreciation-method/sole-depreciation-method.service.js +62 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/taxtank-core.js +213 -71
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/collections/depreciation.collection.d.ts +2 -1
- package/lib/db/Enums/depreciation-calculation.enum.d.ts +2 -2
- package/lib/db/Enums/sole-depreciation-method.enum.d.ts +4 -0
- package/lib/db/Models/sole/sole-business-activity.d.ts +6 -0
- package/lib/db/Models/sole/sole-business.d.ts +2 -1
- package/lib/db/Models/sole/sole-depreciation-method.d.ts +10 -0
- package/lib/forms/sole/index.d.ts +1 -0
- package/lib/forms/sole/sole-business.form.d.ts +1 -1
- package/lib/forms/sole/sole-depreciation-method.form.d.ts +5 -0
- package/lib/models/depreciation/depreciation-group.enum.d.ts +2 -1
- package/lib/models/depreciation/depreciation.d.ts +9 -16
- package/lib/models/event/app-event-type.enum.d.ts +32 -30
- package/lib/models/sole/index.d.ts +2 -0
- package/lib/models/sole/sole-business-activity.d.ts +3 -0
- package/lib/models/sole/sole-business.d.ts +2 -0
- package/lib/models/sole/sole-depreciation-method.d.ts +4 -0
- package/lib/services/http/depreciation/depreciation.service.d.ts +8 -0
- package/lib/services/http/property/property.service.d.ts +1 -0
- package/lib/services/http/sole/index.d.ts +2 -0
- package/lib/services/http/sole/sole-business-activity/sole-business-activity.service.d.ts +11 -0
- package/lib/services/http/sole/sole-depreciation-method/sole-depreciation-method.service.d.ts +23 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -26,7 +26,8 @@ export declare class DepreciationCollection extends Collection<Depreciation> {
|
|
|
26
26
|
getCapitalDepreciations(): this;
|
|
27
27
|
getBorrowingExpenseDepreciations(): DepreciationCollection;
|
|
28
28
|
getWrittenOffDepreciations(): DepreciationCollection;
|
|
29
|
-
|
|
29
|
+
getLVPDepreciations(): this;
|
|
30
|
+
getSBPDepreciations(): this;
|
|
30
31
|
getCapitalProjects(): DepreciationCapitalProject[];
|
|
31
32
|
/**
|
|
32
33
|
* Get a new collection of depreciations related to vehicles
|
|
@@ -8,15 +8,16 @@ import { Transaction } from '../transaction/transaction';
|
|
|
8
8
|
import { Depreciation } from '../depreciation/depreciation';
|
|
9
9
|
import { AbstractModel } from '../abstract-model';
|
|
10
10
|
import { VehicleLogbook } from '../vehicle/vehicle-logbook';
|
|
11
|
+
import { SoleBusinessActivity } from './sole-business-activity';
|
|
11
12
|
export declare class SoleBusiness extends AbstractModel {
|
|
12
13
|
name?: string;
|
|
13
|
-
code?: string;
|
|
14
14
|
description?: string;
|
|
15
15
|
website?: string;
|
|
16
16
|
logo?: string;
|
|
17
17
|
id?: number;
|
|
18
18
|
deletedAt?: Date;
|
|
19
19
|
user?: User;
|
|
20
|
+
activity?: SoleBusinessActivity;
|
|
20
21
|
allocations?: SoleBusinessAllocation[];
|
|
21
22
|
losses?: SoleBusinessLoss[];
|
|
22
23
|
invoices?: SoleInvoice[];
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { User } from '../user/user';
|
|
2
|
+
import { SoleDepreciationMethodEnum } from '../../Enums/sole-depreciation-method.enum';
|
|
3
|
+
import { AbstractModel } from '../abstract-model';
|
|
4
|
+
export declare class SoleDepreciationMethod extends AbstractModel {
|
|
5
|
+
method?: SoleDepreciationMethodEnum;
|
|
6
|
+
closeBalance?: number;
|
|
7
|
+
id?: number;
|
|
8
|
+
financialYear?: number;
|
|
9
|
+
user?: User;
|
|
10
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AbstractForm } from '../abstract.form';
|
|
2
|
-
import { SoleBusiness } from '../../models
|
|
2
|
+
import { SoleBusiness } from '../../models';
|
|
3
3
|
export declare class SoleBusinessForm extends AbstractForm<SoleBusiness> {
|
|
4
4
|
constructor(business?: SoleBusiness);
|
|
5
5
|
}
|
|
@@ -8,6 +8,9 @@ import { IReceipt } from '../../interfaces/receipt.interface';
|
|
|
8
8
|
import { Transaction } from '../transaction/transaction';
|
|
9
9
|
import { Expense } from '../../interfaces/expense.interface';
|
|
10
10
|
import { DepreciationReceipt } from './depreciation-receipt';
|
|
11
|
+
/**
|
|
12
|
+
* @TODO Alex: clarify grouping rules and refactor
|
|
13
|
+
*/
|
|
11
14
|
export declare class Depreciation extends DepreciationBase implements Expense, IReceipt {
|
|
12
15
|
static WRITTEN_OFF_THRESHOLD: number;
|
|
13
16
|
static LOW_VALUE_POOL_THRESHOLD: number;
|
|
@@ -29,24 +32,14 @@ export declare class Depreciation extends DepreciationBase implements Expense, I
|
|
|
29
32
|
isCapital(): boolean;
|
|
30
33
|
isBorrowingExpense(): boolean;
|
|
31
34
|
isAsset(): boolean;
|
|
32
|
-
|
|
33
|
-
* check if depreciation should be displayed in written off category
|
|
34
|
-
* details in project documentation
|
|
35
|
-
* @TODO new FinancialYear(this.writeOffDate) === new FinancialYear()
|
|
36
|
-
*/
|
|
37
|
-
isWrittenOff(): boolean;
|
|
38
|
-
/**
|
|
39
|
-
* Check if depreciation is Plant & Equipment
|
|
40
|
-
*/
|
|
41
|
-
isPlantEquipment(): boolean;
|
|
42
|
-
/**
|
|
43
|
-
* check if depreciation should be displayed in low value pool
|
|
44
|
-
* details in project documentation
|
|
45
|
-
* @TODO new FinancialYear(this.writeOffDate) === new FinancialYear()
|
|
46
|
-
*/
|
|
47
|
-
isLowValuePool(): boolean;
|
|
35
|
+
isSBPCalculation(): boolean;
|
|
48
36
|
isPrimeCost(): boolean;
|
|
49
37
|
isDiminishing(): boolean;
|
|
38
|
+
isPlantEquipmentPool(): boolean;
|
|
39
|
+
isLVP(): boolean;
|
|
40
|
+
isSBP(): boolean;
|
|
41
|
+
isWrittenOff(): boolean;
|
|
42
|
+
get writeOffYear(): number;
|
|
50
43
|
/**
|
|
51
44
|
* Check if depreciation chart accounts heading related to vehicles category
|
|
52
45
|
*/
|
|
@@ -27,34 +27,36 @@ export declare enum AppEventTypeEnum {
|
|
|
27
27
|
MESSAGE_FILE_CREATED = 25,
|
|
28
28
|
MESSAGE_FILE_DELETED = 26,
|
|
29
29
|
NOTIFICATION_ADDED = 27,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
30
|
+
PROPERTY_DEPRECIATION_CALCULATION_UPDATED = 28,
|
|
31
|
+
PROPERTY_UPDATED_WITH_DOCUMENT = 29,
|
|
32
|
+
PROPERTY_DOCUMENT_ADDED = 30,
|
|
33
|
+
PROPERTY_MOVEMENT_CREATED = 31,
|
|
34
|
+
PROPERTY_MOVEMENT_UPDATED = 32,
|
|
35
|
+
PROPERTY_MOVEMENT_DELETED = 33,
|
|
36
|
+
PROPERTY_SHARE_UPDATED = 34,
|
|
37
|
+
PROPERTY_SALE_ADDED = 35,
|
|
38
|
+
PROPERTY_SALE_DELETED = 36,
|
|
39
|
+
PROPERTY_SUBSCRIPTION_ADDED = 37,
|
|
40
|
+
PROPERTY_SUBSCRIPTION_DELETED = 38,
|
|
41
|
+
PROPERTY_VALUATION_DOCUMENT_CREATED = 39,
|
|
42
|
+
SERVICE_SUBSCRIPTION_UPDATED = 40,
|
|
43
|
+
SOLE_DEPRECIATION_METHOD_UPDATED = 41,
|
|
44
|
+
TAX_REVIEW_UPDATED = 42,
|
|
45
|
+
TRANSACTION_CREATED = 43,
|
|
46
|
+
TRANSACTION_DELETED = 44,
|
|
47
|
+
TRANSACTION_UPDATED = 45,
|
|
48
|
+
TRANSACTION_UPDATED_WITH_RECEIPT = 46,
|
|
49
|
+
TRANSACTION_UPDATED_WITH_DELETED_RECEIPT = 47,
|
|
50
|
+
TRANSACTION_RECEIPT_CREATED = 48,
|
|
51
|
+
TRANSACTION_RECEIPT_DELETED = 49,
|
|
52
|
+
TRANSACTIONS_CREATED = 50,
|
|
53
|
+
USER_UPDATED = 51,
|
|
54
|
+
VEHICLE_CLAIM_UPDATED = 52,
|
|
55
|
+
VEHICLE_CLAIM_CREATED = 53,
|
|
56
|
+
VEHICLE_CLAIM_DETAILS_UPDATED = 54,
|
|
57
|
+
VEHICLE_CLAIM_DETAILS_CREATED = 55,
|
|
58
|
+
VEHICLE_LOGBOOK_CREATED = 56,
|
|
59
|
+
VEHICLE_LOGBOOK_UPDATED = 57,
|
|
60
|
+
VEHICLE_LOGBOOK_DELETED = 58,
|
|
61
|
+
VEHICLE_LOGBOOK_BEST_PERIOD_UPDATED = 59
|
|
60
62
|
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from './sole-business';
|
|
2
|
+
export * from './sole-business-activity';
|
|
2
3
|
export * from './sole-business-allocation';
|
|
3
4
|
export * from './sole-business-loss';
|
|
4
5
|
export * from './sole-contact';
|
|
6
|
+
export * from './sole-depreciation-method';
|
|
5
7
|
export * from './sole-details';
|
|
6
8
|
export * from './sole-invoice';
|
|
7
9
|
export * from './sole-invoice-item';
|
|
@@ -8,6 +8,7 @@ import { VehicleClaim } from '../vehicle';
|
|
|
8
8
|
import { Depreciation } from '../depreciation/depreciation';
|
|
9
9
|
import { Transaction } from '../transaction/transaction';
|
|
10
10
|
import { Photoable } from '../../interfaces/photoable';
|
|
11
|
+
import { SoleBusinessActivity } from '../../db/Models/sole/sole-business-activity';
|
|
11
12
|
export declare class SoleBusiness extends SoleBusinessBase implements Photoable {
|
|
12
13
|
/**
|
|
13
14
|
* Maximum number of businesses that a person can have, according to the ATO
|
|
@@ -21,6 +22,7 @@ export declare class SoleBusiness extends SoleBusinessBase implements Photoable
|
|
|
21
22
|
vehicleClaims: VehicleClaim[];
|
|
22
23
|
transactions: Transaction[];
|
|
23
24
|
depreciations: Depreciation[];
|
|
25
|
+
activity: SoleBusinessActivity;
|
|
24
26
|
getPhotoPlaceholder(): string;
|
|
25
27
|
getPhoto(): string;
|
|
26
28
|
}
|
|
@@ -47,6 +47,14 @@ export declare class DepreciationService extends RestService<DepreciationBase, D
|
|
|
47
47
|
*/
|
|
48
48
|
private listenVehicleClaimChanges;
|
|
49
49
|
private replaceInCache;
|
|
50
|
+
/**
|
|
51
|
+
* @TODO Alex: create common method resetCacheOn(events: AppEventType[])
|
|
52
|
+
*/
|
|
53
|
+
private listenSoleDepreciationMethodChanges;
|
|
54
|
+
/**
|
|
55
|
+
* @TODO Alex: create common method resetCacheOn(events: AppEventType[])
|
|
56
|
+
*/
|
|
57
|
+
private listenPropertyDepreciationCalculationChanges;
|
|
50
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<DepreciationService, never>;
|
|
51
59
|
static ɵprov: i0.ɵɵInjectableDeclaration<DepreciationService>;
|
|
52
60
|
}
|
|
@@ -26,6 +26,7 @@ export declare class PropertyService extends RestService<PropertyBase, Property>
|
|
|
26
26
|
private listenSalesAdded;
|
|
27
27
|
private listenSalesDeleted;
|
|
28
28
|
update(property: Property): Observable<Property>;
|
|
29
|
+
updateDepreciationCalculation(property: Property): Observable<Property>;
|
|
29
30
|
getByCategoryId(id: number): Observable<Property[]>;
|
|
30
31
|
/**
|
|
31
32
|
* Activate deactivated property
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from './sole-business/sole-business.service';
|
|
2
|
+
export * from './sole-business-activity/sole-business-activity.service';
|
|
2
3
|
export * from './sole-contact/sole-contact.service';
|
|
4
|
+
export * from './sole-depreciation-method/sole-depreciation-method.service';
|
|
3
5
|
export * from './sole-details/sole-details.service';
|
|
4
6
|
export * from './sole-invoice-template/sole-invoice-template.service';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { RestService } from '../../rest/rest.service';
|
|
2
|
+
import { SoleBusinessActivity as SoleBusinessActivityBase } from '../../../../db/Models/sole/sole-business-activity';
|
|
3
|
+
import { SoleBusinessActivity } from '../../../../models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SoleBusinessActivityService extends RestService<SoleBusinessActivityBase, SoleBusinessActivity> {
|
|
6
|
+
modelClass: typeof SoleBusinessActivity;
|
|
7
|
+
url: string;
|
|
8
|
+
isHydra: boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SoleBusinessActivityService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SoleBusinessActivityService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { SoleDepreciationMethod } from '../../../../models';
|
|
3
|
+
import { Observable, ReplaySubject } from 'rxjs';
|
|
4
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
5
|
+
import { ToastService } from '../../../toast/toast.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* @TODO Alex: extend rest service when refactored
|
|
9
|
+
*/
|
|
10
|
+
export declare class SoleDepreciationMethodService {
|
|
11
|
+
private http;
|
|
12
|
+
private environment;
|
|
13
|
+
private eventDispatcherService;
|
|
14
|
+
private toastService;
|
|
15
|
+
cache: SoleDepreciationMethod;
|
|
16
|
+
cacheSubject: ReplaySubject<SoleDepreciationMethod>;
|
|
17
|
+
url: string;
|
|
18
|
+
constructor(http: HttpClient, environment: any, eventDispatcherService: EventDispatcherService, toastService: ToastService);
|
|
19
|
+
get(): Observable<SoleDepreciationMethod>;
|
|
20
|
+
update(soleDepreciationMethod: SoleDepreciationMethod): Observable<SoleDepreciationMethod>;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SoleDepreciationMethodService, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SoleDepreciationMethodService>;
|
|
23
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -99,6 +99,7 @@ export * from './lib/db/Enums/registration-invite-status.enum';
|
|
|
99
99
|
export * from './lib/db/Enums/salary-forecast-frequency.enum';
|
|
100
100
|
export * from './lib/db/Enums/service-notification-status.enum';
|
|
101
101
|
export * from './lib/db/Enums/service-notification-type.enum';
|
|
102
|
+
export * from './lib/db/Enums/sole-depreciation-method.enum';
|
|
102
103
|
export * from './lib/db/Enums/subscription/service-payment-status.enum';
|
|
103
104
|
export * from './lib/db/Enums/subscription/service-price-recurring-interval.enum';
|
|
104
105
|
export * from './lib/db/Enums/subscription/service-price-type.enum';
|