From 69aa75a50a626f3c3048b166b16f995b656eb9de Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner <lorenz.stechauner@necronda.net> Date: Thu, 9 May 2024 23:42:08 +0200 Subject: [PATCH] =?UTF-8?q?PaymentVariantSummary:=20Use=20'=E2=80=93'=20in?= =?UTF-8?q?stead=20of=20'~'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elwig/Documents/PaymentVariantSummary.cshtml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Elwig/Documents/PaymentVariantSummary.cshtml b/Elwig/Documents/PaymentVariantSummary.cshtml index 97600e0..195266c 100644 --- a/Elwig/Documents/PaymentVariantSummary.cshtml +++ b/Elwig/Documents/PaymentVariantSummary.cshtml @@ -102,7 +102,7 @@ var maxWei = weiRows.Max(r => r.Ungeb.Price); } <th class="lborder tborder">Preis (abgewertet):</th> - <td colspan="2" class="center tborder">@(minWei != maxWei ? $"{minWei:N4}~{maxWei:N4}" : $"{minWei:N4}") @Model.CurrencySymbol/kg</td> + <td colspan="2" class="center tborder">@(minWei != maxWei ? $"{minWei:N4}–{maxWei:N4}" : $"{minWei:N4}") @Model.CurrencySymbol/kg</td> </tr> <tr> <th colspan="2">Mehrwertsteuer:</th> @@ -114,7 +114,7 @@ var maxPrice = quwRows.Max(r => r.Ungeb.Price); } <th class="lborder">Preis (ungeb., nicht abgew.):</th> - <td colspan="2" class="center">@(minPrice != maxPrice ? $"{minPrice:N4}~{maxPrice:N4}" : $"{minPrice:N4}") @Model.CurrencySymbol/kg</td> + <td colspan="2" class="center">@(minPrice != maxPrice ? $"{minPrice:N4}–{maxPrice:N4}" : $"{minPrice:N4}") @Model.CurrencySymbol/kg</td> </tr> <tr> <th colspan="2">Bruttosumme:</th> @@ -129,7 +129,7 @@ } <th class="lborder">Gebunden-Zuschlag:</th> <td colspan="2" class="center"> - @(minGeb != maxGeb ? $"{minGeb:N4}~{maxGeb:N4} {Model.CurrencySymbol}/kg" : minGeb == 0 ? "-" : $"{minGeb:N4} {Model.CurrencySymbol}/kg") + @(minGeb != maxGeb ? $"{minGeb:N4}–{maxGeb:N4} {Model.CurrencySymbol}/kg" : minGeb == 0 ? "-" : $"{minGeb:N4} {Model.CurrencySymbol}/kg") </td> </tr> <tr>