99 Commits

Author SHA1 Message Date
edgar.mendez
93a2527e60 feat: update company management components and services
- Upgrade vue-tsc to version 3.2.6 in package.json.
- Refactor Companies.vue to replace address column with domains_count and update company service references.
- Modify CompaniesForm.vue to include new fields for email, primary domain, and certificate files, and adjust validation logic.
- Revamp companies.service.ts to implement new API endpoints for tenant management and improve error handling.
- Introduce companies.mapper.ts for payload transformation between form data and API requirements.
- Update companies.types.ts to reflect changes in data structure and types for better type safety.
2026-03-21 18:04:08 -06:00
6fe7c82c6d Merge pull request 'activos-fijos' (#18) from activos-fijos into qa
Reviewed-on: #18
2026-03-10 23:16:42 +00:00
0463191414 Merge pull request 'feat: add departments and employees management components' (#17) from feature-comercial-module-ts into qa
Reviewed-on: #17
2026-03-10 23:15:05 +00:00
a8ccb20f94 FIX:Errores de ts 2026-03-10 16:17:10 -06:00
ad264107f6 feat: add departments and employees management components
- Implement DepartmentsService for CRUD operations on departments.
- Create Employees.vue for managing employee listings, including viewing, editing, and deleting employees.
- Add EmployeesForm.vue for creating and editing employee details with validation.
- Introduce employees.interfaces.ts to define employee-related TypeScript interfaces.
- Implement EmployeesService for API interactions related to employees.
- Add positions.interface.ts and positions.services.ts for managing job positions.
2026-03-10 16:13:26 -06:00
318afd56c1 maquetación activos fijos 2026-03-10 16:04:35 -06:00
2fb87c7811 Merge pull request 'feat: add Companies management module with CRUD functionality and routing' (#15) from feature-comercial-module-ts into qa
Reviewed-on: #15
2026-03-10 17:58:23 +00:00
ecc053c138 feat: add Companies management module with CRUD functionality and routing 2026-03-10 11:36:27 -06:00
40f614226e Merge pull request 'feat: implement technical and financial approval workflows for requisitions' (#14) from feature-comercial-module-ts into qa
Reviewed-on: #14
2026-03-04 22:47:18 +00:00
8abf849306 feat: implement technical and financial approval workflows for requisitions
- Added approval and rejection dialogs for technical and financial requisitions in Requisitions.vue.
- Updated requisition statuses to include 'pending_technical', 'rejected_technical', 'pending_financial', and 'rejected_financial'.
- Enhanced requisition store to handle approval and rejection logic, including saving to localStorage.
- Modified requisition interface to include approval and rejection records.
- Updated initial requisition data to reflect new approval statuses and added comments field for requisition items.
2026-03-04 16:44:25 -06:00
585ac6bf4a Merge pull request 'feat: add WarehouseOutInventory component and related services' (#12) from feature-comercial-module-ts into qa
Reviewed-on: #12
2026-03-04 15:06:24 +00:00
b55c6c1ef0 feat: add WarehouseOutInventory component and related services
- Created a new component for managing warehouse inventory exits (WarehouseOutInventory.vue).
- Implemented inventory movement services to handle API requests for inventory movements.
- Added new interfaces for inventory movements and stock management.
- Updated routing to include the new inventory exit page.
- Enhanced existing services to support inventory exit functionality.
- Added validation and user feedback for inventory exit operations.
2026-03-04 09:04:39 -06:00
3b682872e5 Merge pull request 'feature-comercial-module-ts' (#11) from feature-comercial-module-ts into qa
Reviewed-on: #11
2026-02-27 19:37:23 +00:00
983c3265bc feat: remove index.html and restructure RH components
- Deleted the index.html file from the RH components.
- Created new DepartmentForm.vue and Departments.vue components for managing departments.
- Updated the router to reflect the new path for Departments component.
- Added DepartmentsService for API interactions related to departments.
- Introduced types for departments in departments.interface.ts.
- Updated WarehouseAddInventory.vue to change background color classes.
- Configured TypeScript paths in tsconfig.app.json for easier imports.
- Enhanced Vite configuration to support aliasing for src directory.
2026-02-27 13:33:59 -06:00
2bdccbe6c6 feat: enhance warehouse inventory management by adding product selection modal and manual entry mode 2026-02-27 12:10:04 -06:00
0071b7f4dc feat: add commercial classifications management and integrate SAT code products in product form 2026-02-26 17:24:39 -06:00
7bd247f0c5 feat: implement units of measure management with CRUD operations and SAT unit integration 2026-02-25 17:39:44 -06:00
3cb7264b0a feat: update supplier interface to include contact email and phone number 2026-02-24 16:03:10 -06:00
2f3a4d7da4 feat: implement requisition management module with CRUD operations
- Added Requisitions.vue component for managing requisitions, including search, filter, and pagination functionalities.
- Created requisitionStore.ts for state management using Pinia, including actions for fetching, creating, updating, and canceling requisitions.
- Defined requisition interfaces in requisition.interfaces.ts to structure requisition data.
- Integrated PrimeVue components for UI elements such as DataTable, Dropdown, and Dialogs.
- Implemented cancelation logic with user confirmation and validation for cancelation reasons.
2026-02-24 14:39:57 -06:00
522235d441 Refactor supplier and unit of measure components and services
- Updated SupplierModal.vue to include new fields for supplier information and improved form validation.
- Enhanced Suppliers.vue to handle loading states and improved supplier data fetching logic.
- Removed old supplierServices and unitOfMeasureService files, replacing them with updated service files that align with new interfaces.
- Created new interfaces for suppliers and unit of measure to standardize data handling across the application.
- Adjusted the store files to reference the new service files and interfaces.
- Improved error handling and logging in service methods for better debugging.
2026-02-24 09:08:44 -06:00
df0b707064 CTL-51: feat(catalog): implement model document service and store
- Added model-document.services.ts for handling API interactions related to model documents.
- Created modelDocumentStore.ts using Pinia for state management of model documents, including actions for fetching, creating, updating, and deleting documents.
- Defined model document types in modelDocument.interface.ts for better type safety and clarity.
- Removed obsolete index.html file from warehouse components.
- Updated router to include a new route for model documents.
2026-02-16 14:34:18 -06:00
48b28f55ca Merge pull request 'feature-comercial-module-ts' (#10) from feature-comercial-module-ts into qa
Reviewed-on: #10
2026-02-13 19:52:10 +00:00
d1c203cd0e feat(warehouse): add inventory management features
- Implemented getWarehouseById method in warehouseService to fetch warehouse details by ID.
- Added new types for warehouse inventory management in warehouse.d.ts and warehouse.inventory.d.ts.
- Created WarehouseAddInventory.vue component for handling inventory entries with serial number management.
- Developed inventoryWarehouseServices for adding inventory through API.
- Updated router to include the new inventory management component.
- Added Docker configuration files for production deployment.
- Created Nginx configuration for serving the application.
- Added .dockerignore and .env.production for environment-specific settings.
2026-02-13 13:49:41 -06:00
71454dda61 feat(purchases): add purchase details, form, and listing components
- Implemented PurchaseDetails.vue for displaying detailed purchase information.
- Created PurchaseForm.vue for submitting new purchase requests with supplier and item management.
- Developed Purchases.vue for listing all purchase orders with actions for approval, rejection, and conversion.
- Added purchaseServices.ts for API interactions related to purchases.
- Defined types for purchase forms and purchases in respective TypeScript files.
- Integrated PrimeVue components for UI consistency and functionality.
2026-02-10 02:02:58 -06:00
4a624f490c feat: add supplier management module with CRUD operations and UI components 2026-02-04 15:15:45 -06:00
9661275bc5 feat: add modal for batch inventory item addition with responsive design and Tailwind CSS 2026-02-03 16:33:41 -06:00
19753a0f48 feat: add modal for batch inventory item addition with responsive design and Tailwind CSS 2026-01-30 15:38:06 -06:00
Edgar Mendez Mendoza
730cae825c feat: Implement Store Details page with navigation and display of store information 2026-01-30 10:50:11 -06:00
Edgar Mendez Mendoza
fa161a9e0e feat: update sidebar roles link, refactor role navigation, and add user management component
- Changed the sidebar link for roles from '/users/roles' to '/roles'.
- Updated the navigation in RoleForm component to redirect to 'RoleIndex' instead of 'Roles'.
- Introduced a new UserIndex component for user management, including user listing, filtering, and actions.
- Modified the index.html structure to accommodate the new UserIndex component and improved layout for user management.
- Updated router configuration to include the new UserIndex route and adjusted roles routing structure.
2025-11-13 09:20:53 -06:00
Edgar Mendez Mendoza
29d4f5c9c7 feat: Enhance Role Management with Permissions Loading and State Handling 2025-11-12 15:28:33 -06:00
Edgar Mendez Mendoza
59ddae0d46 feat: Add user roles management with CRUD operations and permissions handling 2025-11-12 13:08:15 -06:00
Edgar Mendez Mendoza
1465f065b1 feat: Implement store management with CRUD operations, including dialog for creating and editing stores 2025-11-12 10:27:29 -06:00
Edgar Mendez Mendoza
c6eaa2ef75 feat: Implement Stores management page with search, filters, and data table 2025-11-11 11:31:42 -06:00
Edgar Mendez Mendoza
1b64767aac feat: Add Stores management component and routing to sidebar 2025-11-11 11:26:06 -06:00
Edgar Mendez Mendoza
f98c2ba580 feat: Add is_active field and classifications management to product and commercial classification components 2025-11-10 17:11:11 -06:00
Edgar Mendez Mendoza
73fb017ca6 feat: Implement product management module with CRUD functionality
- Added ProductsIndex.vue for displaying and managing products.
- Created index.html for the product management interface.
- Developed productService.ts for API interactions related to products.
- Established productStore.ts using Pinia for state management of products.
- Defined product types in product.d.ts for TypeScript support.
- Integrated toast notifications and confirmation dialogs for user feedback.
- Implemented pagination and search functionality in the product table.
- Added form for creating and editing products with validation.
2025-11-10 13:11:38 -06:00
Edgar Mendez Mendoza
498a15efd4 feat: add commercial classification management with CRUD operations and routing 2025-11-08 11:23:17 -06:00
Edgar Mendez Mendoza
aeea112abd feat: add unit of measure management with CRUD operations and routing 2025-11-08 09:39:19 -06:00
Edgar Mendez Mendoza
d134db42b6 fix: add missing newline at end of WarehouseForm.vue template 2025-11-07 16:55:43 -06:00
Edgar Mendez Mendoza
eeead68189 feat: integrate classification store and enhance warehouse management components 2025-11-07 12:45:32 -06:00
Edgar Mendez Mendoza
3bea03f9db feat: add warehouse management components and services
- Implemented WarehouseForm.vue for creating new warehouses with form validation and category assignment.
- Developed WarehouseIndex.vue for displaying a list of warehouses with search and filter functionalities.
- Created warehouseClasificationService.ts for handling warehouse classification API interactions.
- Defined types for warehouse classifications in warehouse.clasification.d.ts.
- Established a Pinia store (warehouseStore.ts) for managing warehouse state and actions.
- Added an index.html file for the warehouse management interface layout.
2025-11-07 12:14:40 -06:00
Edgar Mendez Mendoza
857c149b87 feat: enhance authentication flow with improved user data handling and API integration 2025-11-06 12:51:09 -06:00
Edgar Mendez Mendoza
e1521ef9c7 feat: refactor authentication module and integrate axios for API calls
- Added axios as a dependency for handling HTTP requests.
- Refactored the authentication logic by moving it to a new module structure.
- Replaced the old auth store with a composable useAuth for better state management.
- Created a new Login.vue component for the login page with improved UI.
- Implemented an AuthService for handling authentication-related API calls.
- Removed the old Login.vue and uth.ts files to clean up the codebase.
- Updated router to use the new login component and auth composable.
- Added interceptors to handle token management and error responses globally.
2025-11-06 12:16:25 -06:00
Edgar Mendez Mendoza
83835c22a5 feat: implement authentication flow with login page and router setup 2025-11-06 11:46:13 -06:00
Edgar Mendez Mendoza
8941568e08 feat: add blank module component with customizable card layout 2025-11-06 10:56:40 -06:00
Edgar Mendez Mendoza
f151070db0 feat: enhance layout and sidebar with new menu items and animations 2025-11-06 10:18:57 -06:00
Edgar Mendez Mendoza
06c212821a feat: restructure project for GOLS Control Frontend
- Updated README.md to reflect new project structure and conventions.
- Refactored component imports and paths to align with new layout.
- Removed legacy components (AppConfig.vue, AppTopbar.vue) and created new layout components (MainLayout.vue, Sidebar.vue, TopBar.vue).
- Implemented warehouse module with components for inventory management (WarehouseDashboard.vue, InventoryTable.vue).
- Added composables and services for warehouse logic and API interactions.
- Introduced shared components (KpiCard.vue) for KPI display.
- Enhanced API service for handling HTTP requests.
- Defined TypeScript types for warehouse entities and global application types.
2025-11-06 09:30:47 -06:00
Edgar Mendez Mendoza
47e43ae84e feat: update color scheme to use blue primary palette and remove unused styles 2025-11-05 22:40:59 -06:00
Edgar Mendez Mendoza
dd9ae71bd6 feat: integrate PrimeVue and TailwindCSS for enhanced UI components
- Added dependencies for PrimeVue, PrimeUI themes, and TailwindCSS in package.json.
- Replaced HelloWorld component with ColorDemo in App.vue to showcase color customization.
- Updated HelloWorld component to use PrimeVue Button component.
- Configured main.ts to set up PrimeVue with a custom theme and dark mode support.
- Enhanced vite.config.ts to include TailwindCSS and auto-import for PrimeVue components.
- Created ColorDemo.vue for color customization interface.
- Added main.css for global styles, including Tailwind and PrimeUI styles.
- Implemented AppConfig.vue and AppTopbar.vue for layout and theme configuration.
- Developed useLayout composable for managing color themes and dark mode toggle.
2025-11-05 22:14:50 -06:00
Edgar Mendez Mendoza
d058a27882 WIP 2025-11-05 21:41:29 -06:00