set consumer customer and saleInvoices

This commit is contained in:
2026-04-08 18:15:27 +03:30
parent 8990edf064
commit 359d8cc0a9
39 changed files with 947 additions and 26 deletions
+2
View File
@@ -1,6 +1,7 @@
import { Route } from '@angular/router';
import { CONSUMER_ACCOUNTS_ROUTES } from './modules/accounts/constants';
import { CONSUMER_BUSINESS_ACTIVITIES_ROUTES } from './modules/businessActivities/constants';
import { CONSUMER_CUSTOMERS_ROUTES } from './modules/customers/constants';
export const CONSUMER_ROUTES = {
path: 'consumer',
@@ -13,5 +14,6 @@ export const CONSUMER_ROUTES = {
},
...CONSUMER_ACCOUNTS_ROUTES,
...CONSUMER_BUSINESS_ACTIVITIES_ROUTES,
...CONSUMER_CUSTOMERS_ROUTES,
],
} as Route;