|
|
@@ -37,7 +37,9 @@ namespace GreenTree.Nachtragsmanagement.Web.Models.Site
|
|
|
if (DeviationDescriptions == null)
|
|
|
return String.Empty;
|
|
|
else
|
|
|
- return String.Join("</br>--------------</br>", DeviationDescriptions);
|
|
|
+ return String.Join("</br>--------------</br>",
|
|
|
+ Deviations
|
|
|
+ .Select(d => String.Format("{0} - {1}", d.CustomNumber, d.Description)));
|
|
|
}
|
|
|
}
|
|
|
public decimal? DeviationValue { get; set; }
|