Distinguer matériel de stock nul et matériel non présent

This commit is contained in:
Jean-Christophe Engel 2025-04-04 11:07:41 +02:00
parent f8e5d43888
commit c681b47e7f
5 changed files with 58 additions and 24 deletions

View file

@ -21,17 +21,17 @@
},
"stock": {
"description": "Quantité en stock",
"type" : "integer",
"type" : ["integer", "null"],
"minimum": 0
},
"out": {
"description": "Quantité sortie temporairement",
"type" : "integer",
"type" : ["integer", "null"],
"minimum": 0
},
"notowned": {
"description": "Quantité présente temporairement",
"type" : "integer",
"type" : ["integer", "null"],
"minimum": 0
}
},