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
/
Cooperative
/
Edit File Name :
CooperativeFiscalList.cshtml
@model RER_Project.DataAccess.ViewModels.Cooperative.CooperativeDetailsVM @{ var coopId = @ViewContext.RouteData.Values["coopId"]; } @using RER_Project.Core.Helpers @using RER_Project.BusinessLayer.BusinessService @{ var meta = AppUserService.GetCurrent(); } <div class="row wrapper border-bottom white-bg page-heading"> <div class="col-md-12"> <strong><span style="font-size:medium">Cooperative Details (Add / Edit)</span></strong><br /> <div class="form-group"> <div class="form-horizontal"> <div class="form-group"> </div> </div> </div> <br /> <span style="font-size: 100%;"> Cooperative Name: <strong>@Model.CooperativeShortInfo.CooperativeName</strong> </span> <span style="font-size: 100%;"> Coopertive Type: <strong>@Model.CooperativeShortInfo.CooperativeType</strong> </span> </div> <div class="col-md-12"> <br /> <span style="font-size: 100%;"> Province: <strong>@Model.CooperativeShortInfo.Province</strong> </span> <span style="font-size: 100%;"> District: <strong>@Model.CooperativeShortInfo.District</strong> </span> <span style="font-size: 100%;"> Municipality: <strong> @Model.CooperativeShortInfo.Municipality</strong> </span> <span style="font-size: 100%;"> Ward: <strong> @Model.CooperativeShortInfo.Ward</strong> </span> </div> </div> <div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-lg-12"> <div class="ibox float-e-margins"> <div class="ibox-content"> <div class="table-responsive" style="margin-top: 16px;"> <table class="footable table table-hover"> <thead> <tr> <th>Fiscal Year</th> <th>Action</th> </tr> </thead> <tbody> @foreach (var item in Model.FiscalYears) { <tr> <td><input type="hidden" id="FiscalYear" name="FiscalYear" value="@item.FiscalYearId">@item.FiscalYearNameNepali</td> @if (Model.CoopDetails != null) { if (Model.CoopDetails.Id != 0 && Model.CoopDetails.FiscalYearId == item.FiscalYearId) { <td> <a class="btn btn-default btn-xs" href="@("/cooperatives/details/add?coopId=" + coopId + "&fiscalYearId=" + item.FiscalYearId)" title="Edit">Edit</a> <a class="btn btn-default btn-xs" href="@("/cooperatives/details/addevent?coopId=" + coopId + "&fiscalYearId=" + item.FiscalYearId)" title="Edit">Edit Feek Event</a> @*<a class="btn btn-primary btn-xs" href="@("/cooperatives/details/export?coopId=" + coopId + "&fiscalYearId=" + item.FiscalYearId)" title="Create">Export Co-operative Details</a>*@ @*<a class="btn btn-default btn-xs" href="@("/pass-on/detail?fiscalYear=" + item.FiscalYearId + "&reportingPeriod="+coopId)" title="Detail">Detail</a>*@ </td> } else { <td> <a class="btn btn-default btn-xs" href="@("/cooperatives/details/add?coopId=" + coopId + "&fiscalYearId=" + item.FiscalYearId)" title="Create">Create</a> <a class="btn btn-default btn-xs" href="@("/cooperatives/details/addevent?coopId=" + coopId + "&fiscalYearId=" + item.FiscalYearId)" title="Create">Create Feek Event</a> @*<a class="btn btn-default btn-xs" href="@("/pass-on/detail?fiscalYear=" + item.FiscalYearId + "&reportingPeriod="+coopId)" title="Detail">Detail</a>*@ </td> } } else { <td> <a class="btn btn-default btn-xs" href="@("/cooperatives/details/add?coopId=" + coopId + "&fiscalYearId=" + item.FiscalYearId)" title="Create">Create</a> <a class="btn btn-default btn-xs" href="@("/cooperatives/details/addevent?coopId=" + coopId + "&fiscalYearId=" + item.FiscalYearId)" title="Create">Create Feek Event</a> @*<a class="btn btn-primary btn-xs" href="@("cooperative/details/export?fiscalYearId=" + item.FiscalYearId)">Export Co-operative Details</a>*@ @*<a href="#" onclick="exportExcel()" class="btn btn-primary btn-sm">Export Co-operative Details </a>*@ @*<a class="btn btn-default btn-xs" href="@("/pass-on/detail?fiscalYear=" + item.FiscalYearId + "&reportingPeriod="+coopId)" title="Detail">Detail</a>*@ </td> } </tr> } </tbody> </table> <div class="pull-right"> <a href="/cooperatives" class="btn btn-default">Back</a> </div> </div> </div> </div> </div> </div> </div> <script> $(document).ready(function () { window.initializeSelectApis(); }) //function exportExcel() { // debugger // window.location.href = `cooperative/details/export?fiscalYearId=${FiscalYearId}`; //} </script>
Save