feat: add sales tax summary report to reports list

This commit is contained in:
Ahmed Bouhuolia
2023-09-02 01:51:28 +02:00
parent 801ea5dfdb
commit bb7cf41e3e
3 changed files with 28 additions and 35 deletions

View File

@@ -741,6 +741,21 @@ export const SidebarMenu = [
},
],
},
{
text: 'Taxes',
type: ISidebarMenuItemType.Group,
children: [
{
text: 'Sales Tax Liability Summary',
href: '/financial-reports/sales-tax-liability-summary',
type: ISidebarMenuItemType.Link,
permission: {
subject: AbilitySubject.Report,
ability: ReportsAction.READ_SALES_TAX_LIABILITY_SUMMARY,
},
},
],
},
{
text: <T id={'sidebar.inventory'} />,
type: ISidebarMenuItemType.Group,