feat: add article_ref field to MouvementStockResponse
This commit is contained in:
parent
62e347969c
commit
388618603b
1 changed files with 1 additions and 0 deletions
1
api.py
1
api.py
|
|
@ -1041,6 +1041,7 @@ class SortieStockRequest(BaseModel):
|
|||
class MouvementStockResponse(BaseModel):
|
||||
"""Réponse pour un mouvement de stock"""
|
||||
|
||||
article_ref: str = Field(..., description="Numéro d'article")
|
||||
numero: str = Field(..., description="Numéro du mouvement")
|
||||
type: int = Field(..., description="Type (0=Entrée, 1=Sortie)")
|
||||
type_libelle: str = Field(..., description="Libellé du type")
|
||||
|
|
|
|||
Loading…
Reference in a new issue