PaymentVariantSummary: Show net/gross modifier in statistics
All checks were successful
Test / Run tests (push) Successful in 2m18s
All checks were successful
Test / Run tests (push) Successful in 2m18s
This commit is contained in:
@ -49,14 +49,20 @@
|
|||||||
<td class="center">@(Model.BillingData.ConsiderContractPenalties ? "Ja" : "Nein")</td>
|
<td class="center">@(Model.BillingData.ConsiderContractPenalties ? "Ja" : "Nein")</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Datum:</th>
|
<th style="overflow: visible;">Nto./bto.-Zuschl:</th>
|
||||||
<td colspan="3">@($"{Model.Variant.Date:dd.MM.yyyy}")</td>
|
<td colspan="3" class="center">
|
||||||
|
@($"{Utils.GetSign(Model.BillingData.NetWeightModifier)}{Math.Abs(Model.BillingData.NetWeightModifier) * 100:N2}") % /
|
||||||
|
@($"{Utils.GetSign(Model.BillingData.GrossWeightModifier)}{Math.Abs(Model.BillingData.GrossWeightModifier) * 100:N2}") %
|
||||||
|
</td>
|
||||||
<th colspan="2" class="lborder">Strafen bei Unterlieferungen (GA):</th>
|
<th colspan="2" class="lborder">Strafen bei Unterlieferungen (GA):</th>
|
||||||
<td class="center">@(Model.BillingData.ConsiderTotalPenalty ? "Ja" : "Nein")</td>
|
<td class="center">@(Model.BillingData.ConsiderTotalPenalty ? "Ja" : "Nein")</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Überw.:</th>
|
<th style="overflow: visible;">Datum/Überw.:</th>
|
||||||
<td colspan="3">@($"{Model.Variant.TransferDate:dd.MM.yyyy}")</td>
|
<td colspan="3" class="center">
|
||||||
|
@($"{Model.Variant.Date:dd.MM.yyyy}") /
|
||||||
|
@($"{Model.Variant.TransferDate:dd.MM.yyyy}")
|
||||||
|
</td>
|
||||||
<th colspan="2" class="lborder">Automatische Nachzeichnung der GA:</th>
|
<th colspan="2" class="lborder">Automatische Nachzeichnung der GA:</th>
|
||||||
<td class="center">@(Model.BillingData.ConsiderAutoBusinessShares ? "Ja" : "Nein")</td>
|
<td class="center">@(Model.BillingData.ConsiderAutoBusinessShares ? "Ja" : "Nein")</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
Reference in New Issue
Block a user