taxtank-core 1.0.60 → 1.0.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/README.md +5 -5
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +20 -5
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/forms/chart-accounts/chart-accounts-depreciation.form.d.ts +7 -0
- package/src/lib/forms/chart-accounts/index.d.ts +1 -0
- package/src/lib/services/http/chart-accounts/chart-accounts-messages.enum.d.ts +2 -1
package/package.json
CHANGED
@@ -0,0 +1,7 @@
|
|
1
|
+
import { AbstractForm } from '../abstract.form';
|
2
|
+
import { ChartAccountsDepreciation } from '../../models';
|
3
|
+
export declare class ChartAccountsDepreciationForm extends AbstractForm<ChartAccountsDepreciation> {
|
4
|
+
private chartAccountsDepreciation;
|
5
|
+
constructor(chartAccountsDepreciation?: ChartAccountsDepreciation);
|
6
|
+
submit(): ChartAccountsDepreciation;
|
7
|
+
}
|
@@ -2,5 +2,6 @@ export declare enum ChartAccountsMessagesEnum {
|
|
2
2
|
CREATED = "Chart accounts created",
|
3
3
|
UPDATED = "Chart accounts updated",
|
4
4
|
DELETED = "Chart accounts deleted",
|
5
|
-
|
5
|
+
DELETE_CONFIRM = "Are you sure you want to delete chart accounts?",
|
6
|
+
DELETE_ERROR = "This category has allocated transactions, You\u2019ll need to unallocate these transactions too make changes"
|
6
7
|
}
|