column header

This commit is contained in:
Frede Hundewadt 2023-11-03 15:17:46 +01:00
parent 16b90c08a0
commit 2645399b06
3 changed files with 10 additions and 8 deletions

View file

@ -23,12 +23,12 @@
<th scope="col">Demo</th> <th scope="col">Demo</th>
<th scope="col">Salg</th> <th scope="col">Salg</th>
<th scope="col">Note</th> <th scope="col">Note</th>
<th scope="col">SAS</th> <th scope="col" class="text-end">SAS</th>
<th scope="col">Beløb</th> <th scope="col" class="text-end">NORMAL</th>
<th scope="col"><i style="font-size:1.3em;" class="bi-phone"></i></th> <th scope="col" class="text-center"><i style="font-size:1.3em;" class="bi-phone"></i></th>
<th scope="col"><i class="bi-lightning-charge"></i></th> <th scope="col" class="text-center"><i class="bi-lightning-charge"></i></th>
<th scope="col"><i class="bi-calculator"></i></th> <th scope="col" class="text-center"><i class="bi-calculator"></i></th>
<th scope="col"><i class="bi-truck"></i></th> <th scope="col" class="text-center"><i class="bi-truck"></i></th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -41,7 +41,7 @@
<td class="text-sm-start">@activity.Sales</td> <td class="text-sm-start">@activity.Sales</td>
<td class="text-sm-start">@activity.OfficeNote</td> <td class="text-sm-start">@activity.OfficeNote</td>
<td class="text-sm-end">@($"{activity.SasAmount:N2}")</td> <td class="text-sm-end">@($"{activity.SasAmount:N2}")</td>
<td class="text-sm-center">@(activity.StatusTypeEnum.Contains("Quote") ? "{0:N2}" : $"{activity.OrderAmount - activity.SasAmount:N2}")</td> <td class="text-sm-end">@(activity.StatusTypeEnum.Contains("Quote") ? "{0:N2}" : $"{activity.OrderAmount - activity.SasAmount:N2}")</td>
<td class="align-middle text-sm-center"> <td class="align-middle text-sm-center">
@if (activity.OurRef.Contains("T:") || activity.OurRef.Contains("TLF:")) @if (activity.OurRef.Contains("T:") || activity.OurRef.Contains("TLF:"))
{<i class="bi-phone"></i>} {<i class="bi-phone"></i>}

View file

@ -15,6 +15,7 @@
<th>Kunde</th> <th>Kunde</th>
<th>Konto</th> <th>Konto</th>
<th>Dato</th> <th>Dato</th>
<th>EOrdre</th>
<th>Sælger</th> <th>Sælger</th>
<th>Oprettet af</th> <th>Oprettet af</th>
</tr> </tr>
@ -26,6 +27,7 @@
<td>@order.CompanyName</td> <td>@order.CompanyName</td>
<td>@order.Account</td> <td>@order.Account</td>
<td>@order.OrderDate</td> <td>@order.OrderDate</td>
<td>@order.ESalesNumber</td>
<td>@order.SalesRep</td> <td>@order.SalesRep</td>
<td>@order.CreatedBy</td> <td>@order.CreatedBy</td>
</tr> </tr>

View file

@ -1,7 +1,7 @@
{ {
"appInfo": { "appInfo": {
"name": "Wonky Online", "name": "Wonky Online",
"version": "279.0", "version": "281.0",
"rc": true, "rc": true,
"sandBox": true, "sandBox": true,
"image": "grumpy-coder.png", "image": "grumpy-coder.png",