99 lines
3.3 KiB
Plaintext
99 lines
3.3 KiB
Plaintext
|
|
|
|||
|
|
@using OSS.Models
|
|||
|
|
|
|||
|
|
@model CompanyProfile
|
|||
|
|
@{
|
|||
|
|
/**/
|
|||
|
|
|
|||
|
|
ViewBag.Title = "ValidateTIN";
|
|||
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
<div class="page-header">
|
|||
|
|
<div class="row align-items-end">
|
|||
|
|
<div class="col-lg-8">
|
|||
|
|
<div class="page-header-title">
|
|||
|
|
<i class="ik ik-check-square bg-blue"></i>
|
|||
|
|
<div class="d-inline">
|
|||
|
|
<h5>New Application</h5>
|
|||
|
|
<span>lorem ipsum dolor sit amet, consectetur adipisicing elit</span>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
<div class="col-lg-4">
|
|||
|
|
<nav class="breadcrumb-container" aria-label="breadcrumb">
|
|||
|
|
<ol class="breadcrumb">
|
|||
|
|
<li class="breadcrumb-item">
|
|||
|
|
<a href="../index.html"><i class="ik ik-home"></i></a>
|
|||
|
|
</li>
|
|||
|
|
<li class="breadcrumb-item"><a href="#">Company Profile</a></li>
|
|||
|
|
<li class="breadcrumb-item active" aria-current="page">Validate Brela</li>
|
|||
|
|
</ol>
|
|||
|
|
</nav>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
<div class="row">
|
|||
|
|
<div class="col-md-12">
|
|||
|
|
<div class="card">
|
|||
|
|
<div class="card-header"><h3>Attachment Form</h3></div>
|
|||
|
|
<div class="card-body">
|
|||
|
|
|
|||
|
|
@using (Html.BeginForm("Index", "Welcome", FormMethod.Post, new { id = "formAssignment" }))
|
|||
|
|
{@(Html.DevExtreme().Form<FinancingProfile>
|
|||
|
|
()
|
|||
|
|
.ID("form")
|
|||
|
|
.ColCount(2)
|
|||
|
|
|
|||
|
|
.Items(items =>
|
|||
|
|
{
|
|||
|
|
items.AddGroup()
|
|||
|
|
.Caption("Source of Foreign Financing")
|
|||
|
|
.Items(groupItems =>
|
|||
|
|
{
|
|||
|
|
groupItems.AddSimpleFor(m => m.ForeignEquity);
|
|||
|
|
groupItems.AddSimpleFor(m => m.CompanyTIN);
|
|||
|
|
groupItems.AddSimpleFor(m => m.ForeignLoan);
|
|||
|
|
groupItems.AddSimpleFor(m => m.SourceCountryEquity);
|
|||
|
|
groupItems.AddSimpleFor(m => m.SourceCountryLoan);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
});
|
|||
|
|
items.AddGroup()
|
|||
|
|
.Caption("Source of Local Financing")
|
|||
|
|
.Items(groupItems =>
|
|||
|
|
{
|
|||
|
|
groupItems.AddSimpleFor(m => m.LocalEquity);
|
|||
|
|
groupItems.AddSimpleFor(m => m.CompanyTIN);
|
|||
|
|
groupItems.AddSimpleFor(m => m.LocalLoan);
|
|||
|
|
groupItems.AddSimpleFor(m => m.FixedAsset);
|
|||
|
|
groupItems.AddSimpleFor(m => m.WorkingCapital);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
})
|
|||
|
|
.FormData(Model)
|
|||
|
|
)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
|
|||
|
|
|