63 lines
1.8 KiB
Plaintext
63 lines
1.8 KiB
Plaintext
@model MileageTraker.Web.ViewModels.Vehicle.VehicleMileageViewModel
|
|
@{
|
|
ViewBag.Title = "Vehicle Mileage Report";
|
|
var queryParams = new { Model.Query.Year, Model.Query.Month, Model.Query.LogType, Model.Query.MonthRange, Model.Query.VehicleId, Model.Query.EmployeeName };
|
|
}
|
|
|
|
@{ Html.RenderPartial("BackToLogs"); }
|
|
|
|
@Html.Partial("_StatusMessage")
|
|
|
|
<h2><i class="fa fa-road"></i> @ViewBag.Title</h2>
|
|
|
|
<div class="btn-toolbar clearfix">
|
|
@Html.ActionLink("Export", "ExportMonthlyVehicleMileage", Model.Query, new { @class = "btn" })
|
|
</div>
|
|
|
|
@Html.DisplayFor(m => m.Query)
|
|
|
|
<table class="table">
|
|
<tr>
|
|
<th>
|
|
Vehicle Id
|
|
</th>
|
|
<th>
|
|
Prog
|
|
</th>
|
|
<th>
|
|
Total Miles
|
|
</th>
|
|
<th>
|
|
Total Gas Purchased
|
|
</th>
|
|
<th>
|
|
Miles Per Gallon
|
|
</th>
|
|
</tr>
|
|
@foreach (var item in Model.Items)
|
|
{
|
|
<tr>
|
|
<td>
|
|
@Html.ActionLink(item.VehicleId, "Details", "Vehicle", new { id = item.VehicleId }, null)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayTextFor(i => item.Prog)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayTextFor(i => item.Miles)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayTextFor(i => item.GasPurchased)
|
|
</td>
|
|
<td>@(item.MilesPerGallon > 0 ? string.Format("{0:0.000}", item.MilesPerGallon) : "")</td>
|
|
</tr>
|
|
}
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="2" style="text-align: right"><strong>Total:</strong></td>
|
|
<td><strong>@Html.DisplayTextFor(m => m.TotalMiles)</strong></td>
|
|
<td><strong>@Html.DisplayTextFor(m => m.TotalGasPurchased)</strong></td>
|
|
<td></td>
|
|
</tr>
|
|
</tfoot>
|
|
</table> |