taxtank-core 0.30.20 → 0.30.22
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/esm2020/lib/forms/abstract.form.mjs +9 -1
- package/esm2020/lib/forms/sole/bas-report.form.mjs +5 -1
- package/esm2020/lib/forms/transaction/allocation-rule.form.mjs +14 -2
- package/esm2020/lib/models/client/client-income-types.mjs +7 -1
- package/esm2020/lib/models/endpoint/endpoints.const.mjs +4 -1
- package/esm2020/lib/models/transaction/allocation-rule.mjs +1 -13
- package/fesm2015/taxtank-core.mjs +34 -13
- package/fesm2015/taxtank-core.mjs.map +1 -1
- package/fesm2020/taxtank-core.mjs +34 -13
- package/fesm2020/taxtank-core.mjs.map +1 -1
- package/lib/forms/abstract.form.d.ts +4 -0
- package/lib/forms/sole/bas-report.form.d.ts +1 -2
- package/lib/forms/transaction/allocation-rule.form.d.ts +1 -0
- package/lib/models/client/client-income-types.d.ts +4 -0
- package/lib/models/transaction/allocation-rule.d.ts +0 -1
- package/package.json +1 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { AbstractForm } from '../abstract.form';
|
|
2
2
|
import { BasReport } from '../../models';
|
|
3
|
-
import { TransactionAllocationCollection, TransactionCollection } from '../../collections';
|
|
4
|
-
import { DepreciationCollection } from '../../collections/depreciation.collection';
|
|
3
|
+
import { TransactionAllocationCollection, TransactionCollection, DepreciationCollection } from '../../collections';
|
|
5
4
|
/**
|
|
6
5
|
* business activity statement report
|
|
7
6
|
* https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/268533936/BAS+Report
|
|
@@ -26,6 +26,7 @@ export declare class AllocationRuleForm extends AbstractForm<AllocationRule> imp
|
|
|
26
26
|
* Depends on transaction type and tank type
|
|
27
27
|
*/
|
|
28
28
|
private updateChartAccountsCategories;
|
|
29
|
+
get tankTypeLabel(): string;
|
|
29
30
|
private setupFieldsByType;
|
|
30
31
|
private setupFieldsByTankType;
|
|
31
32
|
}
|
|
@@ -12,7 +12,6 @@ export declare class AllocationRule extends AllocationRuleBase {
|
|
|
12
12
|
type: AllocationRuleTypeEnum;
|
|
13
13
|
conditionOperator: AllocationRuleConditionOperatorEnum;
|
|
14
14
|
get typeLabel(): string;
|
|
15
|
-
get tankTypeLabel(): string;
|
|
16
15
|
isIncome(): boolean;
|
|
17
16
|
isExpense(): boolean;
|
|
18
17
|
isTransfer(): boolean;
|