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
/
VITA
/
Views
/
Cooperative
/
Edit File Name :
Details.cshtml
@model RER_Project.DataAccess.ViewModels.Cooperative.CooperativeAllDetailViewModel <div class="wrapper wrapper-content animated"> <div class="row"> <div class="col-lg-12"> <div class="ibox float-e-margins"> <div class="ibox-content"> <h3><u>Cooperative Details</u></h3> <div class="row"> <div class="col-lg-4"> <span style="font-size:medium">Coop. Name : <strong> @Model.CooperativeDetailInfo.coop_name </strong></span> </div> <div class="col-lg-4"> <span style="font-size:medium">Coop. Type : <strong> @Model.CooperativeDetailInfo.coop_type_name</strong></span> </div> <div class="col-lg-4"> <span style="font-size:medium">Coop. Contact No. : <strong> @Model.CooperativeDetailInfo.coop_contact_no</strong></span> </div> </div> <br /> <div class="row"> <div class="col-lg-4"> <span style="font-size:medium">Province : <strong> @Model.CooperativeDetailInfo.province</strong></span> </div> <div class="col-lg-4"> <span style="font-size:medium">District : <strong> @Model.CooperativeDetailInfo.district</strong></span> </div> <div class="col-lg-4"> <span style="font-size:medium">Municipality : <strong> @Model.CooperativeDetailInfo.municipality</strong></span> </div> </div> <br /> <div class="row"> <div class="col-lg-4"> <span style="font-size:medium">Ward : <strong> @Model.CooperativeDetailInfo.ward_no</strong></span> </div> <div class="col-lg-4"> <span style="font-size:medium">Registration No : <strong> @Model.CooperativeDetailInfo.registration_no</strong></span> </div> <div class="col-lg-4"> <span style="font-size:medium">Registration Date : <strong> @Model.CooperativeDetailInfo.registration_date_nepali BS</strong></span> </div> </div> <br /> <div class="row"> <div class="col-lg-4"> <span style="font-size:medium">PAN No. : <strong> @Model.CooperativeDetailInfo.pan_no</strong></span> </div> <div class="col-lg-4"> <span style="font-size:medium">PAN Registration Date : <strong> @Model.CooperativeDetailInfo.pan_registration_date_nepali BS</strong></span> </div> <div class="col-lg-4"> <span style="font-size:medium">Working Area: <strong> @Model.CooperativeDetailInfo.working_areas</strong></span> </div> </div> <br /> <div class="row"> <div class="col-lg-4"> <span style="font-size:medium">Chair Person. : <strong> @Model.CooperativeDetailInfo.chair_person_name</strong></span> </div> <div class="col-lg-4"> <span style="font-size:medium">Chair Person Mobile No. : <strong> @Model.CooperativeDetailInfo.mobile_no BS</strong></span> </div> </div> <br /> <div class="row"> <div class="col-lg-4"> <span style="font-size:medium">Manager Name. : <strong> @Model.CooperativeDetailInfo.manager_name</strong></span> </div> <div class="col-lg-4"> <span style="font-size:medium">Manager Mobile No. : <strong> @Model.CooperativeDetailInfo.manager_mobile_no BS</strong></span> </div> </div> <br /> <br /> <h3><u>Cooperative Additional Details</u></h3> <table class="table table-responsive table-bordered" > <thead> <tr> <th style="white-space:nowrap;">Fiscal Year</th> <th style="white-space:nowrap;"># of Male</th> <th style="white-space:nowrap;"># of Female</th> <th style="white-space:nowrap;"># of Branch</th> <th style="white-space:nowrap;"># of Employee</th> <th >Share Capital (Rs)</th> <th>General Reserve (Rs) </th> <th >Other Reserve (Rs) </th> <th >Saving Amount (Rs) </th> <th>External Loan (Rs) </th> <th>Loan OutStanding (Rs) </th> <th >Total Assets (Rs) </th> <th>Total Income (Rs)</th> <th >Total Expense (Rs)</th> </tr> </thead> <tbody> @foreach (var item in Model.CooperativeAdditionalDetailView) { <tr> <td ><strong>@item.FiscalYearName</strong></td> <td><strong>@item.MaleMemberCount</strong></td> <td><strong>@item.FemaleMemberCount</strong></td> <td><strong>@item.BranchCount</strong></td> <td><strong>@item.EmployeeCount</strong></td> <td> <strong> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0.00}", Convert.ToDouble(item.ShareCapitalAmount)) </strong> </td> <td> <strong> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0.00}", Convert.ToDouble(item.GeneralReserve)) </strong> </td> <td> <strong> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0.00}", Convert.ToDouble(item.OtherReserve)) </strong> </td> <td> <strong> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0.00}", Convert.ToDouble(item.SavingAmount)) </strong> </td> <td> <strong> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0.00}", Convert.ToDouble(item.ExternalLoanAmount)) </strong> </td> <td> <strong> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0.00}", Convert.ToDouble(item.LoanOutstandingAmount)) </strong> </td> <td> <strong> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0.00}", Convert.ToDouble(item.TotalAssetsAmount)) </strong> </td> <td> <strong> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0.00}", Convert.ToDouble(item.TotalIncomeAmount)) </strong> </td> <td> <strong> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0.00}", Convert.ToDouble(item.TotalExpensesAmount)) </strong> </td> </tr> } </tbody> </table> <br /> </div> </div> </div> </div> </div>
Save