New source control repo for Biskilog POS - secure hub to store & manage source code. Streamlines dev process, tracks changes, & improves collaboration. Ensures reliable software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
1.2 KiB

@using Biskilog_Accounting.Shared.Interfaces
@inject ICalculator m_calculator
<RadzenCard Style="margin-bottom:10px;">
<div class="row" style="margin:8px;display:grid;justify-content:center;">
@if (RecentTrans)
{
<h5>Transaction summary for the past @(TotalNbrTransactions) transactions</h5>
}else{
<h5>Transaction summary for the period between : @(StartRange.ToString("dd MMM, yyyy")) to @(EndRange.ToString("dd MMM, yyyy"))</h5>
}
</div>
<div class="row" style="margin:8px;">
<small>Total number of transactions made during the period : <b>@(TotalNbrTransactions)</b> </small>
</div>
<div class="row" style="margin:8px;">
<small>Total Revenue Generated during the period : <b>@(m_calculator.FormatMoneyWithCurrency(TotalRevenue))</b></small>
</div>
<div class="row" style="margin:8px;">
<small>Total number of cancelled transactions during the period : <b>@(TotalNbrCancelledRevenue)</b> </small>
</div>
<div class="row" style="margin:8px;">
<small>Total Revenue lost to cancelled receipts during the period : <b>@(m_calculator.FormatMoneyWithCurrency(TotalCancelledRevenue))</b></small>
</div>
</RadzenCard>