taxtank-core 2.1.60 → 2.1.62
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 +157 -2
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1738,7 +1738,6 @@ class AllocationGroup extends AbstractModel {
|
|
|
1738
1738
|
category: transaction.chartAccounts.name,
|
|
1739
1739
|
tankType: transaction.tankType,
|
|
1740
1740
|
amount: transaction.netAmount,
|
|
1741
|
-
// foreignAmount: transaction.foreignAmount,
|
|
1742
1741
|
childTransactions: transaction.transactions,
|
|
1743
1742
|
allocations,
|
|
1744
1743
|
bankTransactions
|
|
@@ -7202,7 +7201,6 @@ class Transaction extends Transaction$1 {
|
|
|
7202
7201
|
business: this.business,
|
|
7203
7202
|
currency: this.currency,
|
|
7204
7203
|
exchangeRate: this.exchangeRate,
|
|
7205
|
-
// foreignAmount: this.foreignAmount,
|
|
7206
7204
|
});
|
|
7207
7205
|
}
|
|
7208
7206
|
/**
|
|
@@ -11034,6 +11032,7 @@ class BankAccount extends BankAccount$1 {
|
|
|
11034
11032
|
this.bankAccountProperties = [];
|
|
11035
11033
|
this.businessAllocations = [];
|
|
11036
11034
|
this.balances = [];
|
|
11035
|
+
this.currentBalance = 0;
|
|
11037
11036
|
this.currency = 'AUD';
|
|
11038
11037
|
this.exchangeRate = 1;
|
|
11039
11038
|
}
|
|
@@ -21152,6 +21151,162 @@ var Currencies = [
|
|
|
21152
21151
|
{
|
|
21153
21152
|
code: "EUR",
|
|
21154
21153
|
name: "Euro"
|
|
21154
|
+
},
|
|
21155
|
+
{
|
|
21156
|
+
code: "GBP",
|
|
21157
|
+
name: "Pound Sterling"
|
|
21158
|
+
},
|
|
21159
|
+
{
|
|
21160
|
+
code: "NZD",
|
|
21161
|
+
name: "New Zealand Dollar"
|
|
21162
|
+
},
|
|
21163
|
+
{
|
|
21164
|
+
code: "CNY",
|
|
21165
|
+
name: "Yuan Renminbi"
|
|
21166
|
+
},
|
|
21167
|
+
{
|
|
21168
|
+
code: "HKD",
|
|
21169
|
+
name: "Hong Kong Dollar"
|
|
21170
|
+
},
|
|
21171
|
+
{
|
|
21172
|
+
code: "JPY",
|
|
21173
|
+
name: "Yen"
|
|
21174
|
+
},
|
|
21175
|
+
{
|
|
21176
|
+
code: "SGD",
|
|
21177
|
+
name: "Singapore Dollar"
|
|
21178
|
+
},
|
|
21179
|
+
{
|
|
21180
|
+
code: "CAD",
|
|
21181
|
+
name: "Canadian Dollar"
|
|
21182
|
+
},
|
|
21183
|
+
{
|
|
21184
|
+
code: "CHF",
|
|
21185
|
+
name: "Swedish Krona"
|
|
21186
|
+
},
|
|
21187
|
+
{
|
|
21188
|
+
code: "NOK",
|
|
21189
|
+
name: "Danish Krone"
|
|
21190
|
+
},
|
|
21191
|
+
{
|
|
21192
|
+
code: "KRW",
|
|
21193
|
+
name: "Won"
|
|
21194
|
+
},
|
|
21195
|
+
{
|
|
21196
|
+
code: "TWD",
|
|
21197
|
+
name: "New Taiwan Dollar"
|
|
21198
|
+
},
|
|
21199
|
+
{
|
|
21200
|
+
code: "INR",
|
|
21201
|
+
name: "Indian Rupee"
|
|
21202
|
+
},
|
|
21203
|
+
{
|
|
21204
|
+
code: "IDR",
|
|
21205
|
+
name: "Rupiah"
|
|
21206
|
+
},
|
|
21207
|
+
{
|
|
21208
|
+
code: "THB",
|
|
21209
|
+
name: "Baht"
|
|
21210
|
+
},
|
|
21211
|
+
{
|
|
21212
|
+
code: "VND",
|
|
21213
|
+
name: "Dong"
|
|
21214
|
+
},
|
|
21215
|
+
{
|
|
21216
|
+
code: "MYR",
|
|
21217
|
+
name: "Malaysian Ringgit"
|
|
21218
|
+
},
|
|
21219
|
+
{
|
|
21220
|
+
code: "PHP",
|
|
21221
|
+
name: "Philippine Peso"
|
|
21222
|
+
},
|
|
21223
|
+
{
|
|
21224
|
+
code: "BRL",
|
|
21225
|
+
name: "Brazilian Real"
|
|
21226
|
+
},
|
|
21227
|
+
{
|
|
21228
|
+
code: "MXN",
|
|
21229
|
+
name: "Mexican Peso"
|
|
21230
|
+
},
|
|
21231
|
+
{
|
|
21232
|
+
code: "CLP",
|
|
21233
|
+
name: "Chilean Peso"
|
|
21234
|
+
},
|
|
21235
|
+
{
|
|
21236
|
+
code: "AED",
|
|
21237
|
+
name: "UAE Dirham"
|
|
21238
|
+
},
|
|
21239
|
+
{
|
|
21240
|
+
code: "SAR",
|
|
21241
|
+
name: "Saudi Riyal"
|
|
21242
|
+
},
|
|
21243
|
+
{
|
|
21244
|
+
code: "RUB",
|
|
21245
|
+
name: "Russian Ruble"
|
|
21246
|
+
},
|
|
21247
|
+
{
|
|
21248
|
+
code: "UAH",
|
|
21249
|
+
name: "Hryvnia"
|
|
21250
|
+
},
|
|
21251
|
+
{
|
|
21252
|
+
code: "KZT",
|
|
21253
|
+
name: "Tenge"
|
|
21254
|
+
},
|
|
21255
|
+
{
|
|
21256
|
+
code: "UZS",
|
|
21257
|
+
name: "Som"
|
|
21258
|
+
},
|
|
21259
|
+
{
|
|
21260
|
+
code: "AZN",
|
|
21261
|
+
name: "Manat"
|
|
21262
|
+
},
|
|
21263
|
+
{
|
|
21264
|
+
code: "GEL",
|
|
21265
|
+
name: "Lari"
|
|
21266
|
+
},
|
|
21267
|
+
{
|
|
21268
|
+
code: "AMD",
|
|
21269
|
+
name: "Dram"
|
|
21270
|
+
},
|
|
21271
|
+
{
|
|
21272
|
+
code: "KGS",
|
|
21273
|
+
name: "Som"
|
|
21274
|
+
},
|
|
21275
|
+
{
|
|
21276
|
+
code: "TJS",
|
|
21277
|
+
name: "Somoni"
|
|
21278
|
+
},
|
|
21279
|
+
{
|
|
21280
|
+
code: "MDL",
|
|
21281
|
+
name: "Leu"
|
|
21282
|
+
},
|
|
21283
|
+
{
|
|
21284
|
+
code: "FJD",
|
|
21285
|
+
name: "Fiji Dollar"
|
|
21286
|
+
},
|
|
21287
|
+
{
|
|
21288
|
+
code: "PGK",
|
|
21289
|
+
name: "Kina"
|
|
21290
|
+
},
|
|
21291
|
+
{
|
|
21292
|
+
code: "SBD",
|
|
21293
|
+
name: "Solomon Islands Dollar"
|
|
21294
|
+
},
|
|
21295
|
+
{
|
|
21296
|
+
code: "VUV",
|
|
21297
|
+
name: "Vatu"
|
|
21298
|
+
},
|
|
21299
|
+
{
|
|
21300
|
+
code: "WST",
|
|
21301
|
+
name: "Tala"
|
|
21302
|
+
},
|
|
21303
|
+
{
|
|
21304
|
+
code: "TOP",
|
|
21305
|
+
name: "Pa’anga"
|
|
21306
|
+
},
|
|
21307
|
+
{
|
|
21308
|
+
code: "XPF",
|
|
21309
|
+
name: "CFP Franc"
|
|
21155
21310
|
}
|
|
21156
21311
|
];
|
|
21157
21312
|
|