Uecko_ERP/docs/customer-invoices/proforma-list-contract.md
david 1bf85a05ff feat: implement proforma deletion and listing enhancements
- Added endpoint for retrieving deleted proformas with logical deletion.
- Updated proforma listing to support active, archived, and deleted scopes.
- Refactored repository and service layers to accommodate new proforma list scope.
- Enhanced UI to display separate views for active, archived, and deleted proformas.
- Updated localization files to reflect changes in proforma management.
- Improved query handling to filter proformas based on their status and scope.
2026-07-29 22:40:38 +02:00

27 lines
479 B
Markdown

# Proformas activas
## Endpoint
- `GET /proformas`
## Semántica
- Devuelve solo proformas con `archived_at IS NULL`.
- Devuelve solo proformas con `deleted_at IS NULL`.
- No admite filtros frontend sobre `archived_at` ni `deleted_at`.
## Query soportada
- `q`
- `status`
- `pageNumber`
- `pageSize`
- `orderBy`
- `order`
## UI
- Ruta frontend: `/proformas`
- Mantiene búsqueda, paginación, orden y selector de estado.
- No muestra selector visual de archivadas/todas.