8c07dc7c3f
- Introduced PUBLIC_SALE_INVOICES_ROUTES for handling sale invoice routes. - Created PublicSaleInvoicesService to fetch single invoice data from the API. - Implemented PublicSaleInvoiceStore for managing invoice state. - Added PublicSaleInvoiceComponent to display invoice details. - Updated app routes to include public sale invoices. - Removed pre-invoice dialog component and its associated files. - Enhanced order submitted dialog with QR code for invoice sharing. - Updated sale invoice single view to reflect new data structure. - Refactored page data list component for improved layout and functionality.
21 lines
650 B
TypeScript
21 lines
650 B
TypeScript
import { posAuthNamedRoutes } from '@/domains/pos/modules/auth/constants';
|
|
import { POS_ROUTES } from '@/domains/pos/routes';
|
|
import { PUBLIC_SALE_INVOICES_ROUTES } from '@/modules/saleInvoices/constants';
|
|
import { Notfound } from '@/pages/notfound/notfound.component';
|
|
import { Routes } from '@angular/router';
|
|
|
|
export const appRoutes: Routes = [
|
|
{
|
|
path: '',
|
|
loadComponent: () =>
|
|
import('@/domains/pos/layouts/layout.component').then((m) => m.PosLayoutComponent),
|
|
children: [POS_ROUTES],
|
|
},
|
|
{
|
|
...posAuthNamedRoutes.login,
|
|
path: 'auth',
|
|
},
|
|
...PUBLIC_SALE_INVOICES_ROUTES,
|
|
{ path: '**', component: Notfound },
|
|
];
|