taxtank-core 2.1.70 → 2.1.72
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/fesm2022/taxtank-core.mjs +2 -1
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/index.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -1743,6 +1743,7 @@ class AllocationGroup extends AbstractModel {
|
|
|
1743
1743
|
operation: transaction.operation,
|
|
1744
1744
|
description: transaction.description,
|
|
1745
1745
|
category: transaction.chartAccounts.name,
|
|
1746
|
+
currency: transaction.currency,
|
|
1746
1747
|
tankType: transaction.tankType,
|
|
1747
1748
|
amount: transaction.netAmount,
|
|
1748
1749
|
childTransactions: transaction.transactions,
|
|
@@ -25687,7 +25688,7 @@ class BankAccountsFilterForm extends AbstractForm {
|
|
|
25687
25688
|
searchQuery: new FormControl(''),
|
|
25688
25689
|
currencyType: new FormControl({
|
|
25689
25690
|
value: CurrencyTypeEnum.ALL,
|
|
25690
|
-
disabled: bankAccounts.items.
|
|
25691
|
+
disabled: !bankAccounts.items.some(bankAccount => bankAccount.isForeign),
|
|
25691
25692
|
}),
|
|
25692
25693
|
currencies: new FormControl({ value: [], disabled: true }),
|
|
25693
25694
|
});
|