PaymentVariantSummary: Use '–' instead of '~'
All checks were successful
Test / Run tests (push) Successful in 1m56s
All checks were successful
Test / Run tests (push) Successful in 1m56s
This commit is contained in:
@ -102,7 +102,7 @@
|
|||||||
var maxWei = weiRows.Max(r => r.Ungeb.Price);
|
var maxWei = weiRows.Max(r => r.Ungeb.Price);
|
||||||
}
|
}
|
||||||
<th class="lborder tborder">Preis (abgewertet):</th>
|
<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>
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">Mehrwertsteuer:</th>
|
<th colspan="2">Mehrwertsteuer:</th>
|
||||||
@ -114,7 +114,7 @@
|
|||||||
var maxPrice = quwRows.Max(r => r.Ungeb.Price);
|
var maxPrice = quwRows.Max(r => r.Ungeb.Price);
|
||||||
}
|
}
|
||||||
<th class="lborder">Preis (ungeb., nicht abgew.):</th>
|
<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>
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">Bruttosumme:</th>
|
<th colspan="2">Bruttosumme:</th>
|
||||||
@ -129,7 +129,7 @@
|
|||||||
}
|
}
|
||||||
<th class="lborder">Gebunden-Zuschlag:</th>
|
<th class="lborder">Gebunden-Zuschlag:</th>
|
||||||
<td colspan="2" class="center">
|
<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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
Reference in New Issue
Block a user