fix(pedimentos): standardize ID naming convention and enhance row selection functionality in data table

This commit is contained in:
Galindo97
2026-01-21 17:32:37 -06:00
parent e28a81c07c
commit 18559025b1
5 changed files with 168 additions and 17 deletions

View File

@@ -16,7 +16,7 @@ router = TenantCRUDRoutes(
prefix="", # No prefix here, will be added in main router
tags=["a76 / pedimentos"], # Tag for Swagger documentation
resource_name="Pedimento",
id_name="pedimento_id",
id_name="id", # Use standard REST convention
enable_list=True, # Enable GET / with pagination
enable_filters=True, # Enable status, client_id, year filters
default_page_size=50,