taxtank-core 0.33.37 → 0.33.40
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/src/lib/collections/sole/sole-invoice.collection.mjs +3 -2
- package/esm2022/src/lib/db/Enums/sole/sole-invoice-state.enum.mjs +3 -2
- package/esm2022/src/lib/forms/transaction/transaction.form.mjs +2 -1
- package/esm2022/src/lib/services/http/transaction/transaction.service.mjs +11 -17
- package/esm2022/src/lib/services/report/property/property-transaction-report.service.mjs +2 -2
- package/fesm2022/taxtank-core.mjs +15 -18
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/db/Enums/sole/sole-invoice-state.enum.d.ts +2 -1
- package/src/lib/services/http/transaction/transaction.service.d.ts +3 -8
package/package.json
CHANGED
@@ -22,14 +22,8 @@ export declare class TransactionService extends RestService<TransactionBase, Tra
|
|
22
22
|
* Listen events from Event Dispatcher services
|
23
23
|
*/
|
24
24
|
listenEvents(): void;
|
25
|
-
|
26
|
-
|
27
|
-
*/
|
28
|
-
getAll(): Observable<Transaction[]>;
|
29
|
-
/**
|
30
|
-
* current year transactions
|
31
|
-
*/
|
32
|
-
get(): Observable<Transaction[]>;
|
25
|
+
protected fetch(path?: string, cache?: boolean): Observable<Transaction[]>;
|
26
|
+
getCurrentYear(): Observable<Transaction[]>;
|
33
27
|
/**
|
34
28
|
* Add single new transaction
|
35
29
|
* @param model New Transaction instance for saving
|
@@ -47,6 +41,7 @@ export declare class TransactionService extends RestService<TransactionBase, Tra
|
|
47
41
|
* Get list of property holding costs (transactions related to vacant land property)
|
48
42
|
*/
|
49
43
|
getPropertyHoldingCosts(propertyId: number): Observable<Transaction[]>;
|
44
|
+
getWithoutTaxFreeProperty(): Observable<Transaction[]>;
|
50
45
|
/**
|
51
46
|
* get list of taxable transactions with tank type 'Work'
|
52
47
|
*/
|