{{ isEditMode ? "Modifiez les informations de l'entrepôt ci-dessous." : "Informations détaillées, produits stockés et mouvements." }}
Chargement des informations de l'entrepôt...
{{ warehouse.name }}
{{ warehouse.country_code || "-" }}
{{ warehouse.address_line1 || "-" }}
{{ warehouse.address_line2 || "-" }}
{{ warehouse.postal_code || "-" }}
{{ warehouse.city || "-" }}
| Produit | Quantité | Stock de sécurité | Actions |
|---|---|---|---|
|
{{
item.product?.nom || `Produit #${item.product_id}`
}}
Réf: {{ item.product?.reference || "-" }}
|
{{ item.qty_on_hand_base }} | {{ item.safety_stock_base }} |
| Date | Type | Produit | Entrée / Sortie | Quantité |
|---|---|---|---|---|
| {{ formatDate(movement.moved_at || movement.created_at) }} | {{ movement.move_type || "-" }} | {{ movement.product?.nom || `Produit #${movement.product_id}` }} | {{ isIncoming(movement) ? "Entrée" : "Sortie" }} | {{ movement.qty_base }} |