fix : corrections de tous les retours

This commit is contained in:
tristan
2026-02-13 17:07:15 +01:00
parent f58dc36a0d
commit 09d108a1d5
33 changed files with 352 additions and 120 deletions
@@ -83,14 +83,14 @@ onMounted(async () => {
})
watch(
() => receptionId,
async (id) => {
if (!id || !receptionIri.value) {
[() => receptionId, () => bovineType.value],
async ([id, types]) => {
if (!id || !receptionIri.value || types.length === 0) {
return
}
const selectionMap: Record<string, number | null> = {}
for (const type of bovineType.value) {
for (const type of types) {
selectionMap[String(type.id)] = 0
}
@@ -105,7 +105,7 @@ watch(
}
Object.assign(bovineQuantities, selectionMap)
const existingOther = await reception.bovineDetail
const existingOther = reception.bovineDetail
const parsedOther =
typeof existingOther === 'string' && existingOther.trim() !== ''
? Number(existingOther)