e937c994d7
- Implemented Cardex routes and integrated with the main application routing. - Created filters component for Cardex to filter inventory and product data. - Developed invoices component to display supplier invoices with detailed views. - Enhanced Products module with pagination and state management using a store. - Updated Suppliers module to include invoice management and detailed supplier views. - Refactored state management in Products and Suppliers to utilize signals for reactive updates. - Added new models and services to support the Cardex functionality. - Improved UI components for better user experience in displaying data.
6 lines
103 B
TypeScript
6 lines
103 B
TypeScript
const baseUrl = '/api/v1/cardex';
|
|
|
|
export const CARDEX_API_ROUTES = {
|
|
cardex: () => `${baseUrl}`,
|
|
};
|