feat(server): wip sales tax liability summary report

This commit is contained in:
Ahmed Bouhuolia
2023-08-31 02:19:18 +02:00
parent 6535424d0f
commit 6baec8dd96
11 changed files with 535 additions and 13 deletions

View File

@@ -1,6 +1,10 @@
import { Knex } from 'knex';
export interface ITaxRate {}
export interface ITaxRate {
name: string;
code: string;
rate: number;
}
export interface ICommonTaxRateDTO {
name: string;