Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit e88db3f7 authored by Franz KOBER josef's avatar Franz KOBER josef
Browse files

fix to read xml without airdrag

parent ca9551a0
No related branches found
No related tags found
No related merge requests found
......@@ -187,15 +187,15 @@ namespace VECTO3GUI.ViewModel.Impl
var inputData = JobViewModel.InputDataProvider as IDeclarationInputDataProvider;
_airdragData = inputData?.JobInputData.Vehicle.Components.AirdragInputData;
SetAirdragValues(_airdragData);
UseMeasurementData = _airdragData != null;
UseMeasurementData = _airdragData.AirDragArea != null;
NoAirdragData = !UseMeasurementData;
IsEditable = false;
}
private void SetAirdragValues(IAirdragDeclarationInputData airdrag)
{
UseMeasuredValues = airdrag != null;
if (airdrag == null)
UseMeasuredValues = airdrag.AirDragArea != null;
if (airdrag.AirDragArea == null)
{
_componentData = new AirdragComponentData(this, true);
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment