taxtank-core 0.28.51 → 0.28.53
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 +27 -22
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/forms/abstract.form.js +1 -1
- package/esm2015/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-details/my-tax-business-details.form.js +4 -5
- package/esm2015/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-losses/my-tax-business-losses.form.js +5 -1
- package/esm2015/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-details/my-tax-business-details.js +2 -1
- package/esm2015/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-losses/my-tax-business-losses.js +22 -19
- package/fesm2015/taxtank-core.js +27 -22
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/forms/abstract.form.d.ts +1 -1
- package/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-losses/my-tax-business-losses.d.ts +5 -3
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export declare abstract class AbstractForm<Model> extends FormGroup {
|
|
|
9
9
|
/**
|
|
10
10
|
* Initial form value for comparison with changes to check saved/unsaved state
|
|
11
11
|
*/
|
|
12
|
-
|
|
12
|
+
initialValue: Model;
|
|
13
13
|
protected modelClass: Type<Model>;
|
|
14
14
|
model: Model;
|
|
15
15
|
submitted: boolean;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { TransactionCollection } from '../../../../../collections/transaction/transaction.collection';
|
|
2
2
|
import { DepreciationCollection } from '../../../../../collections/depreciation.collection';
|
|
3
|
-
import { Collection } from '../../../../../collections/collection';
|
|
4
3
|
import { SoleBusinessLoss } from '../../../../sole';
|
|
4
|
+
import { SoleBusinessLossesCollection } from '../../../../../collections';
|
|
5
|
+
import { TaxSummary } from '../../../../tax-summary/tax-summary';
|
|
5
6
|
/**
|
|
6
7
|
* Sole business information related to expense transactions (losses)
|
|
7
8
|
* https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/4644110466/Tax+Return+MyTax+-+Online+Form (section "Business income or losses")
|
|
@@ -17,6 +18,7 @@ export declare class MyTaxBusinessLosses {
|
|
|
17
18
|
interestExpensesAustraliaAmount: number;
|
|
18
19
|
interestExpensesOverseasAmount: number;
|
|
19
20
|
kmsTravelledExpensesAmount: number;
|
|
21
|
+
logbookExpensesAmount: number;
|
|
20
22
|
otherExpensesAmount: number;
|
|
21
23
|
totalNonPrimaryProductionExpensesAmount: number;
|
|
22
24
|
depreciationExpensesAmount: number;
|
|
@@ -25,6 +27,6 @@ export declare class MyTaxBusinessLosses {
|
|
|
25
27
|
priorYearsNonPrimaryLossesAmount: number;
|
|
26
28
|
netNonPrimaryIncomeOrLossesAmount: number;
|
|
27
29
|
currentYearNetNonPrimaryIncomeOrLossesAmount: number;
|
|
28
|
-
|
|
29
|
-
|
|
30
|
+
deferredLossesAmount: number;
|
|
31
|
+
constructor(transactions: TransactionCollection, depreciations: DepreciationCollection, businessLosses: SoleBusinessLossesCollection, currentLoss: SoleBusinessLoss, taxSummary: TaxSummary);
|
|
30
32
|
}
|