feat(auth): synchronize access token from cookies to localStorage if not present
refactor(dashboard): create dynamic columns for CodePedimentoRegimen with onSuccess callback feat(dashboard): implement create, edit, and delete dialogs for CodePedimentoRegimen feat(dialogs): add reusable dialog components for confirmation and details display style(alert-dialog): improve styling and structure for alert dialog components style(dialog): enhance styling and structure for dialog components
This commit is contained in:
@@ -3,7 +3,7 @@ from pydantic import ConfigDict
|
||||
from typing import Optional
|
||||
|
||||
class CodePedimentoRegimenDTO(BaseModel):
|
||||
id: int
|
||||
id: Optional[int] = None
|
||||
pedimento_code: str = Field(..., min_length=1, max_length=3)
|
||||
regimen_code: Optional[str] = Field(None, min_length=1, max_length=3)
|
||||
type_code: Optional[str] = Field(None, min_length=1, max_length=1)
|
||||
|
||||
Reference in New Issue
Block a user