diff --git a/src/app/forms/custom-sections/tyres-section/tyres-section-summary/tyres-section-summary.component.html b/src/app/forms/custom-sections/tyres-section/tyres-section-summary/tyres-section-summary.component.html index 150693c4e..a798de33e 100644 --- a/src/app/forms/custom-sections/tyres-section/tyres-section-summary/tyres-section-summary.component.html +++ b/src/app/forms/custom-sections/tyres-section/tyres-section-summary/tyres-section-summary.component.html @@ -28,12 +28,12 @@ T{{ axle.axleNumber }} - {{ axle.tyres_tyreCode }} - {{ axle.tyres_tyreSize }} - {{ axle.tyres_plyRating }} - {{ axle.tyres_dataTrAxles }} - {{ $any(axle).tyres_speedCategorySymbol }} - {{ axle.tyres_fitmentCode }} + {{ axle.tyres_tyreCode | defaultNullOrEmpty }} + {{ axle.tyres_tyreSize | defaultNullOrEmpty }} + {{ axle.tyres_plyRating | defaultNullOrEmpty }} + {{ axle.tyres_dataTrAxles | defaultNullOrEmpty }} + {{ $any(axle).tyres_speedCategorySymbol | defaultNullOrEmpty }} + {{ axle.tyres_fitmentCode | defaultNullOrEmpty }} diff --git a/src/app/forms/custom-sections/tyres-section/tyres-section-view/tyres-section-view.component.html b/src/app/forms/custom-sections/tyres-section/tyres-section-view/tyres-section-view.component.html index c493959af..66d7497f5 100644 --- a/src/app/forms/custom-sections/tyres-section/tyres-section-view/tyres-section-view.component.html +++ b/src/app/forms/custom-sections/tyres-section/tyres-section-view/tyres-section-view.component.html @@ -36,15 +36,15 @@ - T{{axle.axleNumber}} - {{ axle.tyres_tyreCode }} - {{ axle.tyres_tyreSize }} - {{ axle.tyres_plyRating }} - {{ axle.tyres_dataTrAxles }} + T{{axle.axleNumber | defaultNullOrEmpty }} + {{ axle.tyres_tyreCode | defaultNullOrEmpty }} + {{ axle.tyres_tyreSize | defaultNullOrEmpty }} + {{ axle.tyres_plyRating | defaultNullOrEmpty }} + {{ axle.tyres_dataTrAxles | defaultNullOrEmpty }} - {{ $any(axle).tyres_speedCategorySymbol }} + {{ $any(axle).tyres_speedCategorySymbol | defaultNullOrEmpty }} - {{ axle.tyres_fitmentCode }} + {{ axle.tyres_fitmentCode | defaultNullOrEmpty }} diff --git a/src/app/forms/custom-sections/weights-section/weights-section-summary/weights-section-summary.component.html b/src/app/forms/custom-sections/weights-section/weights-section-summary/weights-section-summary.component.html index 01b7dd832..9b6b47109 100644 --- a/src/app/forms/custom-sections/weights-section/weights-section-summary/weights-section-summary.component.html +++ b/src/app/forms/custom-sections/weights-section/weights-section-summary/weights-section-summary.component.html @@ -30,16 +30,16 @@ Axle {{ axle.axleNumber }} - {{ axle.weights_gbWeight }} - {{ $any(axle).weights_eecWeight }} - {{ axle.weights_designWeight }} + {{ axle.weights_gbWeight | defaultNullOrEmpty }} + {{ $any(axle).weights_eecWeight | defaultNullOrEmpty }} + {{ axle.weights_designWeight | defaultNullOrEmpty }} - {{ $any(axle).weights_kerbWeight }} - {{ $any(axle).weights_ladenWeight }} - {{ axle.weights_gbWeight }} - {{ axle.weights_designWeight }} + {{ $any(axle).weights_kerbWeight | defaultNullOrEmpty }} + {{ $any(axle).weights_ladenWeight | defaultNullOrEmpty }} + {{ axle.weights_gbWeight | defaultNullOrEmpty }} + {{ axle.weights_designWeight | defaultNullOrEmpty }} @@ -47,28 +47,28 @@ Gross - {{ vm.techRecord_grossGbWeight }} - {{ vm.techRecord_grossEecWeight }} - {{ vm.techRecord_grossDesignWeight }} + {{ vm.techRecord_grossGbWeight | defaultNullOrEmpty }} + {{ vm.techRecord_grossEecWeight | defaultNullOrEmpty }} + {{ vm.techRecord_grossDesignWeight | defaultNullOrEmpty }} Gross - {{ vm.techRecord_grossKerbWeight }} - {{ vm.techRecord_grossLadenWeight }} - {{ vm.techRecord_grossGbWeight }} - {{ vm.techRecord_grossDesignWeight }} + {{ vm.techRecord_grossKerbWeight | defaultNullOrEmpty }} + {{ vm.techRecord_grossLadenWeight | defaultNullOrEmpty }} + {{ vm.techRecord_grossGbWeight | defaultNullOrEmpty }} + {{ vm.techRecord_grossDesignWeight | defaultNullOrEmpty }} Train - {{ vm.techRecord_trainGbWeight }} - {{ vm.techRecord_trainEecWeight }} - {{ vm.techRecord_trainDesignWeight }} + {{ vm.techRecord_trainGbWeight | defaultNullOrEmpty }} + {{ vm.techRecord_trainEecWeight | defaultNullOrEmpty }} + {{ vm.techRecord_trainDesignWeight | defaultNullOrEmpty }} @@ -77,17 +77,17 @@ Train - {{ vm.techRecord_maxTrainGbWeight }} - {{ vm.techRecord_trainDesignWeight }} + {{ vm.techRecord_maxTrainGbWeight | defaultNullOrEmpty }} + {{ vm.techRecord_trainDesignWeight | defaultNullOrEmpty }} Max Train - {{ vm.techRecord_maxTrainGbWeight }} - {{ vm.techRecord_maxTrainEecWeight }} - {{ vm.techRecord_maxTrainDesignWeight }} + {{ vm.techRecord_maxTrainGbWeight | defaultNullOrEmpty }} + {{ vm.techRecord_maxTrainEecWeight | defaultNullOrEmpty }} + {{ vm.techRecord_maxTrainDesignWeight | defaultNullOrEmpty }} @@ -100,7 +100,7 @@ Unladen Weight
- {{ vm.techRecord_unladenWeight }} kg + {{ vm.techRecord_unladenWeight | defaultNullOrEmpty }} kg
diff --git a/src/app/forms/custom-sections/weights-section/weights-section-view/weights-section-view.component.html b/src/app/forms/custom-sections/weights-section/weights-section-view/weights-section-view.component.html index 5d1975104..fb12daaf3 100644 --- a/src/app/forms/custom-sections/weights-section/weights-section-view/weights-section-view.component.html +++ b/src/app/forms/custom-sections/weights-section/weights-section-view/weights-section-view.component.html @@ -16,34 +16,34 @@ Axle {{axle.axleNumber}} - {{ $any(axle).weights_kerbWeight }} - {{ $any(axle).weights_ladenWeight }} - {{ axle.weights_gbWeight }} - {{ $any(axle).weights_eecWeight }} - {{ axle.weights_designWeight }} + {{ $any(axle).weights_kerbWeight | defaultNullOrEmpty }} + {{ $any(axle).weights_ladenWeight | defaultNullOrEmpty }} + {{ axle.weights_gbWeight | defaultNullOrEmpty }} + {{ $any(axle).weights_eecWeight | defaultNullOrEmpty }} + {{ axle.weights_designWeight | defaultNullOrEmpty }} Gross - {{ $any(vm).techRecord_grossKerbWeight }} - {{ $any(vm).techRecord_grossLadenWeight }} - {{ vm.techRecord_grossGbWeight }} - {{ $any(vm).techRecord_grossEecWeight }} - {{ vm.techRecord_grossDesignWeight }} + {{ $any(vm).techRecord_grossKerbWeight | defaultNullOrEmpty }} + {{ $any(vm).techRecord_grossLadenWeight | defaultNullOrEmpty }} + {{ vm.techRecord_grossGbWeight | defaultNullOrEmpty }} + {{ $any(vm).techRecord_grossEecWeight | defaultNullOrEmpty }} + {{ vm.techRecord_grossDesignWeight | defaultNullOrEmpty }} Train - {{ $any(vm).techRecord_trainGbWeight }} - {{ $any(vm).techRecord_maxTrainGbWeight }} - {{ $any(vm).techRecord_trainEecWeight }} - {{ $any(vm).techRecord_trainDesignWeight }} + {{ $any(vm).techRecord_trainGbWeight | defaultNullOrEmpty }} + {{ $any(vm).techRecord_maxTrainGbWeight | defaultNullOrEmpty }} + {{ $any(vm).techRecord_trainEecWeight | defaultNullOrEmpty }} + {{ $any(vm).techRecord_trainDesignWeight | defaultNullOrEmpty }} Max Train - {{ vm.techRecord_maxTrainGbWeight }} - {{ vm.techRecord_maxTrainEecWeight }} - {{ $any(vm).techRecord_maxTrainDesignWeight }} + {{ vm.techRecord_maxTrainGbWeight | defaultNullOrEmpty }} + {{ vm.techRecord_maxTrainEecWeight | defaultNullOrEmpty }} + {{ $any(vm).techRecord_maxTrainDesignWeight | defaultNullOrEmpty }} @@ -52,7 +52,7 @@
Unladen weight
- {{ vm.techRecord_unladenWeight | defaultNullOrEmpty }} + {{ vm.techRecord_unladenWeight | defaultNullOrEmpty }} kg