tiseza_oss_live/obj/Release/Package/PackageTmp/Views/AmendmentCOI/Index.cshtml

129 lines
5.6 KiB
Plaintext
Raw Normal View History

2025-11-15 11:14:31 +00:00

@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<link rel="stylesheet" type="text/css" href="~/Content/plugins/table/datatable/datatables.css">
<link rel="stylesheet" type="text/css" href="~/Content/plugins/table/datatable/custom_dt_html5.css">
<link rel="stylesheet" type="text/css" href="~/Content/plugins/table/datatable/dt-global_style.css">
<div class="col-lg-12 layout-spacing">
<div class="statbox widget box box-shadow">
<div class="widget-header">
<div class="row">
<div class="col-md-12 col-sm-12 col-12">
<br />
<h4 class="text-black font-weight-bold"> &nbsp; PROJECTS <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg> Amendment of Certificate </h4>
<hr class="text-black /">
</div>
</div>
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
<div class="widget-content widget-content-area br-6">
<div class="d-flex justify-content-end">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="/Company/LltdGaranteeDetails/" class="btn btn-info btn-lg mt-2 text-right" type="submit">Apply for amendment </a>
</div>
<h4 class="text-primary"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right-circle"><circle cx="12" cy="12" r="10"></circle><polyline points="12 16 16 12 12 8"></polyline><line x1="8" y1="12" x2="16" y2="12"></line></svg>&nbsp;&nbsp;Lodged Applications</h4>
<hr class="text-black/ ">
<br />
@(Html.DevExtreme().DataGrid()
.ID("gridContainer")
.ShowBorders(true)
.Columns(columns =>
{
columns.Add().DataField("CMName");
columns.Add().DataField("CompanyTypeName");
columns.Add().DataField("TrackingNo");
columns.Add().DataField("ControlNo");
columns.Add().DataField("ApplicationStatusName");
columns.Add().DataField("AmountTotal").Visible(true).DataField("AmountTotal")
.Caption("Print").CellTemplate(@Html.ActionLink(" View Result", "PrintCertificate", "CompanyAPI",
new { TrackingNo = "APP_ID" }, new { target = "_blank", @class = "btn btn-outline-primary" })
.ToHtmlString()
.Replace("APP_ID", "<%= data.TrackingNo %>"));
;
}).RemoteOperations(true)
.AllowColumnResizing(true)
.ShowRowLines(true)
.SearchPanel(f => f.Visible(true)
.SearchVisibleColumnsOnly(true)
.HighlightSearchText(true)
).Paging(p => p.PageSize(5))
.SearchPanel(t => t.SearchVisibleColumnsOnly(true).Visible(true))
.DataSource(d => d.StaticJson().Url("/ApplicationStatusAPI/GetFinishedCMApp").Key("InvoiceNo"))
)
</div>
</div>
<hr />
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
<div class="widget-content widget-content-area br-6">
<h4 class="text-primary"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right-circle"><circle cx="12" cy="12" r="10"></circle><polyline points="12 16 16 12 12 8"></polyline><line x1="8" y1="12" x2="16" y2="12"></line></svg>&nbsp;&nbsp;Incomplete Applications</h4>
<hr class="text-black" />
@(Html.DevExtreme().DataGrid()
.ID("gridContainer1")
.ShowBorders(true)
.Columns(columns =>
{
columns.Add().DataField("CMName");
columns.Add().DataField("CompanyTypeName");
columns.Add().DataField("TrackingNo");
columns.Add().DataField("ControlNo");
columns.Add().DataField("InvoiceNo");
columns.Add().DataField("PaymentStatus");
columns.Add().DataField("AmountTotal").Visible(true).DataField("AmountTotal")
.Caption("Print").CellTemplate(@Html.ActionLink(" Processing", "DisplayResultClearance", "Company",
new { TrackingNo = "APP_ID" }, new { @class = "btn btn-outline-warning" })
.ToHtmlString()
.Replace("APP_ID", "<%= data.TrackingNo %>"));
;
}).RemoteOperations(true)
.AllowColumnResizing(true)
.ShowRowLines(true)
.SearchPanel(f => f.Visible(true)
.SearchVisibleColumnsOnly(true)
.HighlightSearchText(true)
).Paging(p => p.PageSize(5))
.SearchPanel(t => t.SearchVisibleColumnsOnly(true).Visible(true))
.DataSource(d => d.StaticJson().Url("/ApplicationStatusAPI/GetProcessingCMApp").Key("InvoiceNo"))
)
</div>
</div>
</div>
</div>
</div>