@model ParcelWeb.Core.Dto.Reports.WalletLedgerOutputReportDto @{ ViewBag.Title = "CustomerLedger"; }

Wallet Ledger

@using (Html.BeginForm("WalletLedger", "Reports", FormMethod.Post, new { Id = "myform" })) {
@*Apply*@ Clear
}
@* ------------------- *@
@if (Model.data != null && Model.data.Count != 0) {
@if (Model.data.Count == 0) { } else { foreach (var item in Model.data) { } }
Date TXN Type Ref No# Transaction Id Credit Debit Balance Description
Opening Balance @Html.DisplayFor(model => model.OpeningBalance)

No Transections Please Recharge your Wallet

@item.createdAt @item.Gateway @item.TRXId @item.Credit @item.Debit @item.Amount @item.Description
Closing Balance @Html.DisplayFor(model => model.ClosingBalance)
}
@section Scripts { @Scripts.Render("~/bundles/jqueryval") }