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
/
map
/
Views
/
MrcMidQuestionnaires
/
View File Name :
_MrcQuestionnairesReportPartialView.cshtml
@model RER_Project.DataAccess.ViewModels.MRC_MID.MrcMidReportViewModel <h3><u>Status of Foreign Employment</u></h3> <div class="row"> <div class="col-lg-8"> <table class="table table-bordered"> <thead> <tr> <th> People who had gone to foreign employment </th> <th> People who didn't go to foreign employment </th> <th>Total Number of Outcome Monitored</th> </tr> </thead> <tbody> @if (Model.FnQuestionnairesAggregration != null) { <tr> <td>@Model.FnQuestionnairesAggregration.gone_for_foreign_employment</td> <td>@Model.FnQuestionnairesAggregration.not_gone_for_foreign_employment</td> <td> @Model.FnQuestionnairesAggregration.total_monitored </td> </tr> } </tbody> </table> </div> </div> <h3><u>2. Reason of who didn't go to foreign employment </u></h3> <div class="row"> <div class="col-lg-8"> <table class="table table-bordered"> <thead> <tr> <th> Started Own Business </th> <th> Cancelled the Decision </th> <th>Still in Process</th> <th> Other Reason</th> </tr> </thead> <tbody> @if (Model.FnQuestionnairesAggregration != null) { <tr> <td>@Model.FnQuestionnairesAggregration.started_own_enterprise</td> <td>@Model.FnQuestionnairesAggregration.cancelled_the_decision</td> <td> @Model.FnQuestionnairesAggregration.still_in_processs </td> <td> @Model.FnQuestionnairesAggregration.other_reason </td> </tr> } </tbody> </table> </div> </div> <h3><u> 3. Status of Left Document At Home </u></h3> <div class="row"> <div class="col-lg-8"> <table class="table table-bordered"> <thead> <tr> <th> Migrant Left documents at their home. </th> <th> Migrant Not Left Documents at their home </th> </tr> </thead> <tbody> @if (Model.FnQuestionnairesAggregration != null) { <tr> <td>@Model.FnQuestionnairesAggregration.left_document</td> <td>@Model.FnQuestionnairesAggregration.not_left_document</td> </tr> } </tbody> </table> </div> </div> <h3><u>4. Bargaining amount during paid to Manpower Company </u></h3> <div class="row"> <div class="col-lg-8"> <table class="table table-bordered"> <thead> <tr> <th> Number of bargain person </th> <th> Total Bargain Amount </th> </tr> </thead> <tbody> @if (Model.FnQuestionnairesAggregration != null) { <tr> <td>@Model.FnQuestionnairesAggregration.no_who_bargain_cost</td> <td> Rs. @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0.00}", Convert.ToDouble(Model.FnQuestionnairesAggregration.actual_payment)) </td> </tr> } </tbody> </table> </div> </div> <h3><u>5. Migrant Reported Payment Amount </u></h3> <div class="row"> <div class="col-lg-8"> <table class="table table-bordered"> <thead> <tr> <th> Amount </th> <th> # Migrant Reported Payment. </th> </tr> </thead> <tbody> @if (Model.FnQuestionnairesAggregration != null) { <tr> <td> <span><strong>< = Rs 10,000</strong></span> </td> <td> <strong> @Model.FnQuestionnairesAggregration.less_than_10000</strong> </td> </tr> <tr> <td> <span><strong>Rs 10,000 - Rs 20,000</strong></span> </td> <td> <strong> @Model.FnQuestionnairesAggregration.between_10000_and_20000</strong> </td> </tr> <tr> <td> <span><strong>Rs 20,000 - Rs 50,000</strong></span> </td> <td> <strong>@Model.FnQuestionnairesAggregration.between_20000_and_50000</strong> </td> </tr> <tr> <td> <span><strong>Rs 50000 - Rs 1,00,000</strong></span> </td> <td> <strong> @Model.FnQuestionnairesAggregration.between_50000_and_100000</strong> </td> </tr> <tr> <td> <span><strong>Rs 1,00,000 - Rs 2,00,000</strong></span> </td> <td> <strong> @Model.FnQuestionnairesAggregration.between_100000_and_200000</strong> </td> </tr> <tr> <td> <span><strong> > Rs 2,00,000</strong></span> </td> <td> <strong> @Model.FnQuestionnairesAggregration.greater_than_200000</strong> </td> </tr> <tr> <td> <span><strong> Don't Know</strong></span> </td> <td> <strong> @Model.FnQuestionnairesAggregration.donot_know_cost_count</strong> </td> </tr> <tr> <td> <span><strong> Total </strong></span> </td> <td> <strong> @(Model.FnQuestionnairesAggregration.donot_know_cost_count+ Model.FnQuestionnairesAggregration.less_than_10000 + Model.FnQuestionnairesAggregration.between_10000_and_20000 + Model.FnQuestionnairesAggregration.between_20000_and_50000 + Model.FnQuestionnairesAggregration.between_50000_and_100000 + Model.FnQuestionnairesAggregration.between_100000_and_200000 + Model.FnQuestionnairesAggregration.greater_than_200000) </strong> </td> </tr> } </tbody> </table> </div> </div>