taxtank-core 0.30.10 → 0.30.11
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/models/depreciation/depreciation.mjs +2 -1
- package/esm2020/lib/services/toast/toast.service.mjs +2 -2
- package/fesm2015/taxtank-core.mjs +3 -2
- package/fesm2015/taxtank-core.mjs.map +1 -1
- package/fesm2020/taxtank-core.mjs +2 -1
- package/fesm2020/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4862,6 +4862,7 @@ class Depreciation extends Depreciation$1 {
|
|
|
4862
4862
|
return plainToClass(Transaction, Object.assign(params, this, {
|
|
4863
4863
|
amount: -this.currentYearForecast?.amount || 0,
|
|
4864
4864
|
claimAmount: -this.currentYearForecast?.claimAmount || 0,
|
|
4865
|
+
claimPercent: this.currentYearForecast?.claimPercent || 0,
|
|
4865
4866
|
}));
|
|
4866
4867
|
}
|
|
4867
4868
|
/**
|
|
@@ -8859,7 +8860,7 @@ class ToastService {
|
|
|
8859
8860
|
warning(message) {
|
|
8860
8861
|
this.add(plainToClass(Toast, {
|
|
8861
8862
|
type: ToastTypeEnum.WARNING,
|
|
8862
|
-
title: '
|
|
8863
|
+
title: 'Notification!',
|
|
8863
8864
|
message,
|
|
8864
8865
|
}));
|
|
8865
8866
|
}
|