feat: tax rates crud service

This commit is contained in:
Ahmed Bouhuolia
2023-08-11 16:00:39 +02:00
parent 04d134806b
commit d6f56568a3
12 changed files with 189 additions and 50 deletions

View File

@@ -4,6 +4,7 @@ export interface ITaxRate {}
export interface ICommonTaxRateDTO {
name: string;
code: string;
rate: number;
IsNonRecoverable: boolean;
IsCompound: boolean;