132 lines
4.5 KiB
Plaintext
132 lines
4.5 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>Apply new Certificate of Incentive</h3></div>
|
|||
|
|
<div class="card-body">
|
|||
|
|
|
|||
|
|
@using (Html.BeginForm("Index", "Welcome", FormMethod.Post, new { id = "formAssignment" }))
|
|||
|
|
{@(Html.DevExtreme().Form<ProjectProfile>
|
|||
|
|
()
|
|||
|
|
.ID("form")
|
|||
|
|
.ColCount(2)
|
|||
|
|
|
|||
|
|
.Items(items =>
|
|||
|
|
{
|
|||
|
|
items.AddGroup()
|
|||
|
|
.Caption("Project Details")
|
|||
|
|
.Items(groupItems =>
|
|||
|
|
{
|
|||
|
|
groupItems.AddSimpleFor(m => m.ProjectName);
|
|||
|
|
groupItems.AddSimpleFor(m => m.CompanyTIN).Editor(t => t.TextBox().Value(ViewData["CompanyTIN"].ToString()).ReadOnly(true));
|
|||
|
|
groupItems.AddSimpleFor(m => m.Sector);
|
|||
|
|
groupItems.AddSimpleFor(m => m.ProductionCapacity);
|
|||
|
|
groupItems.AddSimpleFor(m => m.Activity);
|
|||
|
|
groupItems.AddSimpleFor(m => m.District);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
});
|
|||
|
|
items.AddGroup()
|
|||
|
|
.Caption("Employment & Contact Details")
|
|||
|
|
.Items(groupItems =>
|
|||
|
|
{
|
|||
|
|
groupItems.AddSimpleFor(m => m.WomenForeign);
|
|||
|
|
groupItems.AddSimpleFor(m => m.MenForeign);
|
|||
|
|
groupItems.AddSimpleFor(m => m.MenLocal);
|
|||
|
|
groupItems.AddSimpleFor(m => m.WomenLocal);
|
|||
|
|
groupItems.AddSimpleFor(m => m.ContactPerson);
|
|||
|
|
groupItems.AddSimpleFor(m => m.Position);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
});
|
|||
|
|
items.AddGroup()
|
|||
|
|
.Caption("Implementation Details")
|
|||
|
|
.Items(groupItems =>
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
groupItems.AddSimpleFor(m => m.ImplementationStartDate);
|
|||
|
|
groupItems.AddSimpleFor(m => m.ImplementationEndDate);
|
|||
|
|
groupItems.AddSimpleFor(m => m.PostalAddress);
|
|||
|
|
|
|||
|
|
groupItems.AddSimpleFor(m => m.Telephone);
|
|||
|
|
groupItems.AddSimpleFor(m => m.PlotNumber);
|
|||
|
|
groupItems.AddSimpleFor(m => m.Street);
|
|||
|
|
|
|||
|
|
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
items.AddGroup()
|
|||
|
|
.Caption("Contact Details")
|
|||
|
|
.Items(groupItems =>
|
|||
|
|
{
|
|||
|
|
groupItems.AddSimpleFor(m => m.ProjectName);
|
|||
|
|
groupItems.AddSimpleFor(m => m.CompanyTIN).Editor(t => t.TextBox().Value(ViewData["CompanyTIN"].ToString()).ReadOnly(true));
|
|||
|
|
groupItems.AddSimpleFor(m => m.Sector);
|
|||
|
|
groupItems.AddSimpleFor(m => m.ProductionCapacity);
|
|||
|
|
groupItems.AddSimpleFor(m => m.Region);
|
|||
|
|
groupItems.AddSimpleFor(m => m.District);
|
|||
|
|
|
|||
|
|
|
|||
|
|
groupItems.AddButton().HorizontalAlignment(HorizontalAlignment.Right)
|
|||
|
|
.ButtonOptions(b => b.Text("Next")
|
|||
|
|
.Type(ButtonType.Success)
|
|||
|
|
.UseSubmitBehavior(true)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
})
|
|||
|
|
.FormData(Model)
|
|||
|
|
)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
</div>
|
|||
|
|
|