CASH-2942: Update vinRequired property on vehicle update

This commit is contained in:
credelinghuys 2026-06-24 12:41:11 -04:00
parent e5a4830993
commit 8a678a6a41

View file

@ -498,6 +498,9 @@ export const mutations = {
state.order.vehicle.carId = vehicleInfo.carId;
state.order.vehicle.category = vehicleInfo.category;
state.order.vehicle.vin = vehicleInfo.vin;
if (vehicleInfo.vinRequired !== undefined) {
state.order.vehicle.vinRequired = vehicleInfo.vinRequired;
}
state.order.vehicle.imageUrl = vehicleInfo.imageUrl;
state.order.vehicle.imageVifNumber = vehicleInfo.imageVifNumber;