taxtank-core 0.29.3 → 0.29.5
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 +14 -17
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/collections/sole/sole-business-losses.collection.js +2 -2
- package/esm2015/lib/collections/tax-summary/tax-return-categories.const.js +6 -6
- package/esm2015/lib/collections/transaction/transaction.collection.js +3 -3
- package/esm2015/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-income-or-losses.form.js +1 -4
- package/esm2015/lib/forms/sole/sole-business-loss.form.js +3 -3
- package/esm2015/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-losses/my-tax-business-losses.js +4 -4
- package/esm2015/lib/models/report/sole/sole-business/sole-business-loss-report.js +3 -3
- package/fesm2015/taxtank-core.js +13 -17
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/collections/transaction/transaction.collection.d.ts +1 -1
- package/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-income-or-losses.form.d.ts +0 -3
- package/lib/models/report/sole/sole-business/sole-business-loss-report.d.ts +2 -3
- package/package.json +1 -1
|
@@ -98,5 +98,5 @@ export declare class TransactionCollection extends ExportableCollection<Transact
|
|
|
98
98
|
/**
|
|
99
99
|
* @TODO vik business transactions calculated differently, separated collection?
|
|
100
100
|
*/
|
|
101
|
-
getBusinessClaimAmount(
|
|
101
|
+
getBusinessClaimAmount(allocations: TransactionAllocationCollection, businessId?: number): number;
|
|
102
102
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { AbstractForm } from '../../../abstract.form';
|
|
2
2
|
import { MyTaxBusinessDetails, MyTaxBusinessIncome, MyTaxBusinessLosses } from '../../../../models/report';
|
|
3
|
-
/**
|
|
4
|
-
* @Todo waiting for the Sole tank implementation
|
|
5
|
-
*/
|
|
6
3
|
export declare class MyTaxBusinessIncomeOrLossesForm extends AbstractForm<object> {
|
|
7
4
|
constructor(businessDetails: MyTaxBusinessDetails, businessIncome: MyTaxBusinessIncome, businessLosses: MyTaxBusinessLosses);
|
|
8
5
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { SoleBusinessLoss } from '../../../sole';
|
|
2
|
-
import { TransactionCollection } from '../../../../collections';
|
|
3
|
-
import {
|
|
4
|
-
import { AbstractModel } from '../../../../db/Models/abstract-model';
|
|
2
|
+
import { TransactionCollection, DepreciationCollection } from '../../../../collections';
|
|
3
|
+
import { AbstractModel } from '../../../../db/Models';
|
|
5
4
|
import { TransactionAllocation } from '../../../transaction';
|
|
6
5
|
/**
|
|
7
6
|
* Class with business loss details
|