taxtank-core 0.28.32 → 0.28.33
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 +8 -14
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/collections/transaction/transaction-base.collection.js +3 -3
- package/esm2015/lib/db/Models/transaction/transaction-base.js +1 -1
- package/esm2015/lib/forms/abstract.form.js +2 -1
- package/esm2015/lib/forms/sole/sole-business-loss.form.js +4 -4
- package/esm2015/lib/models/report/sole/sole-business/sole-business-loss-report.js +3 -7
- package/esm2015/lib/models/sole/sole-business-loss.js +1 -5
- package/fesm2015/taxtank-core.js +7 -15
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/forms/abstract.form.d.ts +1 -0
- package/lib/forms/sole/sole-business-loss.form.d.ts +1 -1
- package/lib/models/report/sole/sole-business/sole-business-loss-report.d.ts +0 -5
- package/lib/models/sole/sole-business-loss.d.ts +0 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { AbstractForm } from '../abstract.form';
|
|
|
2
2
|
import { SoleBusinessLoss } from '../../models';
|
|
3
3
|
export declare class SoleBusinessLossForm extends AbstractForm<SoleBusinessLoss> {
|
|
4
4
|
private loss;
|
|
5
|
-
constructor(loss: SoleBusinessLoss,
|
|
5
|
+
constructor(loss: SoleBusinessLoss, profit: number);
|
|
6
6
|
/**
|
|
7
7
|
* radio buttons can't work with object
|
|
8
8
|
* https://github.com/angular/components/issues/10495
|
|
@@ -15,11 +15,6 @@ export declare class SoleBusinessLossReport extends AbstractModel {
|
|
|
15
15
|
* Net income reduced by the opening balance amount, that will be carried over to the next year, if it is positive
|
|
16
16
|
*/
|
|
17
17
|
closeBalance: number;
|
|
18
|
-
/**
|
|
19
|
-
* Net income reduced by the opening balance amount
|
|
20
|
-
*/
|
|
21
|
-
taxableIncome: number;
|
|
22
18
|
netIncome: number;
|
|
23
19
|
constructor(loss: SoleBusinessLoss, transactions: TransactionCollection, depreciations: DepreciationCollection);
|
|
24
|
-
calculateTaxableIncome(): number;
|
|
25
20
|
}
|
|
@@ -4,6 +4,5 @@ import { SoleBusinessLossOffsetRule } from './sole-business-loss-offset-rule';
|
|
|
4
4
|
export declare class SoleBusinessLoss extends SoleBusinessLossBase {
|
|
5
5
|
business: SoleBusiness;
|
|
6
6
|
offsetRule: SoleBusinessLossOffsetRule;
|
|
7
|
-
openBalance: number;
|
|
8
7
|
get hasOffset(): boolean;
|
|
9
8
|
}
|