diff --git a/frontend/components/reception/reception-form.vue b/frontend/components/reception/reception-form.vue index 5100ca7..14e684e 100644 --- a/frontend/components/reception/reception-form.vue +++ b/frontend/components/reception/reception-form.vue @@ -421,14 +421,15 @@ watch( if (!isLiotCarrier.value) { return } + if (isHydrating.value) { + return + } const selected = filteredVehicles.value.find( (vehicle) => String(vehicle.id) === form.vehicleId ) if (selected) { form.licensePlate = selected.plate allowAnyLicensePlate.value = false - } else if (form.vehicleId === '') { - form.licensePlate = '' } } ) diff --git a/frontend/components/reception/reception-product-received.vue b/frontend/components/reception/reception-product-received.vue index 20ec5ed..de451d4 100644 --- a/frontend/components/reception/reception-product-received.vue +++ b/frontend/components/reception/reception-product-received.vue @@ -3,7 +3,7 @@