create consumer pos list page

This commit is contained in:
2026-04-14 15:56:32 +03:30
parent 9eb5c35285
commit 28575bd3d1
31 changed files with 502 additions and 32 deletions
+2
View File
@@ -2,6 +2,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';
import { CONSUMER_POSES_ROUTES } from './modules/poses/constants';
import { CONSUMER_SALE_INVOICES_ROUTES } from './modules/saleInvoices/constants';
export const CONSUMER_ROUTES = {
@@ -17,5 +18,6 @@ export const CONSUMER_ROUTES = {
...CONSUMER_BUSINESS_ACTIVITIES_ROUTES,
...CONSUMER_CUSTOMERS_ROUTES,
...CONSUMER_SALE_INVOICES_ROUTES,
...CONSUMER_POSES_ROUTES,
],
} as Route;