adjust the display order of value metrics

This commit is contained in:
MaysWind
2026-04-18 15:34:01 +08:00
parent d73704af66
commit e89aa10137
3 changed files with 30 additions and 30 deletions
@@ -68,18 +68,6 @@
<td>{{ tt('Median Amount') }}</td>
<td class="text-end">{{ formatAmountToLocalizedNumeralsWithCurrency(filteredTransactionsStatistic.medianAmount) }}</td>
</tr>
<tr>
<td>{{ tt('90th Percentile Amount') }}</td>
<td class="text-end">{{ formatAmountToLocalizedNumeralsWithCurrency(filteredTransactionsStatistic.p90Amount) }}</td>
</tr>
<tr>
<td>{{ tt('Top 5 Amount Share') }}</td>
<td class="text-end">{{ isDefined(filteredTransactionsStatistic.top5AmountShare) ? formatPercentToLocalizedNumerals(filteredTransactionsStatistic.top5AmountShare, 2, '<0.01') : '-' }}</td>
</tr>
<tr>
<td>{{ tt('Transactions for 80% of Amount') }}</td>
<td class="text-end">{{ isDefined(filteredTransactionsStatistic.transactionsFor80PercentAmount) ? formatPercentToLocalizedNumerals(filteredTransactionsStatistic.transactionsFor80PercentAmount, 2, '<0.01') : '-' }}</td>
</tr>
<tr>
<td>{{ tt('Minimum Amount') }}</td>
<td class="text-end">{{ formatAmountToLocalizedNumeralsWithCurrency(filteredTransactionsStatistic.minimumAmount) }}</td>
@@ -88,6 +76,10 @@
<td>{{ tt('Maximum Amount') }}</td>
<td class="text-end">{{ formatAmountToLocalizedNumeralsWithCurrency(filteredTransactionsStatistic.maximumAmount) }}</td>
</tr>
<tr>
<td>{{ tt('90th Percentile Amount') }}</td>
<td class="text-end">{{ formatAmountToLocalizedNumeralsWithCurrency(filteredTransactionsStatistic.p90Amount) }}</td>
</tr>
<tr>
<td>{{ tt('Range (Max - Min)') }}</td>
<td class="text-end">{{ formatAmountToLocalizedNumeralsWithCurrency(filteredTransactionsStatistic.range) }}</td>
@@ -96,6 +88,14 @@
<td>{{ tt('Interquartile Range (Q3 - Q1)') }}</td>
<td class="text-end">{{ formatAmountToLocalizedNumeralsWithCurrency(filteredTransactionsStatistic.interquartileRange) }}</td>
</tr>
<tr>
<td>{{ tt('Top 5 Amount Share') }}</td>
<td class="text-end">{{ isDefined(filteredTransactionsStatistic.top5AmountShare) ? formatPercentToLocalizedNumerals(filteredTransactionsStatistic.top5AmountShare, 2, '<0.01') : '-' }}</td>
</tr>
<tr>
<td>{{ tt('Transactions for 80% of Amount') }}</td>
<td class="text-end">{{ isDefined(filteredTransactionsStatistic.transactionsFor80PercentAmount) ? formatPercentToLocalizedNumerals(filteredTransactionsStatistic.transactionsFor80PercentAmount, 2, '<0.01') : '-' }}</td>
</tr>
<tr>
<td>{{ tt('Variance') }}</td>
<td class="text-end">{{ isDefined(filteredTransactionsStatistic.variance) ? formatNumberToLocalizedNumerals(filteredTransactionsStatistic.variance, 2) : '-' }}</td>