taxtank-core 0.21.9 → 0.21.10

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.
@@ -12,6 +12,13 @@ export declare enum ChartAccountsHeadingListEnum {
12
12
  HOME_OFFICE_RUNNING = 17,
13
13
  TOOLS_EQUIPMENT = 18,
14
14
  HOME_OFFICE_OCCUPANCY = 19,
15
+ AWARD_OVERTIME_MEAL_ALLOWANCE_EXPENSE = 20,
16
+ NEWSPAPER = 21,
17
+ PRINTING_POSTAGE_STATIONERY = 22,
18
+ SEMINARS_ETC = 23,
19
+ TELEPHONE = 24,
20
+ UNION_FEES = 25,
21
+ OTHER = 26,
15
22
  DONATIONS = 27,
16
23
  PSI = 30,
17
24
  BONUSES = 34,
@@ -1,5 +1,5 @@
1
1
  import { AbstractForm } from '../../abstract.form';
2
- import { MyTaxDeductions } from '../../../models/report/my-tax/my-tax-deductions/my-tax-deductions';
2
+ import { MyTaxDeductions } from '../../../models/report/my-tax';
3
3
  export declare class MyTaxDeductionsForm extends AbstractForm<MyTaxDeductions> {
4
4
  constructor(deductions: MyTaxDeductions);
5
5
  }
@@ -1,11 +1,21 @@
1
1
  import { TransactionCollection } from '../../../../collections/transaction/transaction.collection';
2
2
  import { DepreciationCollection } from '../../../../collections/depreciation.collection';
3
+ import { TaxSummary } from '../../../tax-summary/tax-summary';
4
+ import { TaxSummarySection } from '../../../tax-summary/tax-summary-section';
3
5
  export declare class MyTaxRent {
4
6
  propertyExpenses: TransactionCollection;
7
+ taxSummaryPropertySection: TaxSummarySection;
5
8
  grossRentAmount: number;
6
9
  interestDeductionsAmount: number;
7
10
  capitalWorksDeductionsAmount: number;
8
11
  otherRentalDeductionsAmount: number;
9
12
  netRent: number;
10
- constructor(transactions: TransactionCollection, depreciations: DepreciationCollection);
13
+ constructor(transactions: TransactionCollection, depreciations: DepreciationCollection, taxSummary: TaxSummary);
14
+ /**
15
+ * @Todo Vik remove when TT-2009 will be implemented.
16
+ * We use tax summary data here because claim amount from depreciation is different
17
+ * from the claim amount that we get from tax summary (depreciation claim amount is not affected by property share,
18
+ * property contract date, e.t.c.). Details in the TT-2009 task
19
+ */
20
+ private calculateOtherRentalDeductionsAmount;
11
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.21.9",
3
+ "version": "0.21.10",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^12.2.3 || ~13.0.0",