init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,37 @@
|
|||
@using Kreta.Web.Areas.Adatszolgaltatasok.Models
|
||||
@using Kreta.Web.Helpers
|
||||
@using Kreta.Web.Controllers
|
||||
@model KozmuszamlaModel
|
||||
|
||||
@{
|
||||
var formName = "kozmuszamlaNewModifyForm";
|
||||
}
|
||||
|
||||
@using (Html.KretaForm(formName))
|
||||
{
|
||||
|
||||
<div class="container-fluid details">
|
||||
@Html.HiddenFor(x => x.Id)
|
||||
<div class="row">
|
||||
@Html.KretaDatePickerFor(x => x.BefizetesDatuma).RenderWithName(3, 3)
|
||||
@Html.KretaDatePickerFor(x => x.FizetesiHatarido).RenderWithName(3, 3)
|
||||
</div>
|
||||
<div class="row">
|
||||
@Html.KretaSelectorFor(m => m.Fizetve, EnumController.Cache.IgenNemSelectList).RenderWithName(3, 3)
|
||||
@Html.KretaTextBoxFor(x => x.InvaliditasOka).RenderWithName(3, 3)
|
||||
</div>
|
||||
<div class="row">
|
||||
@Html.KretaDatePickerFor(x => x.Kelte).RenderWithName(3, 3)
|
||||
@Html.KretaTextBoxFor(x => x.Kibocsato).RenderWithName(3, 3)
|
||||
</div>
|
||||
<div class="row">
|
||||
@Html.KretaComboBoxFor(x => x.KozmuszamlaTipusId, Model.KozmuszamlaTipusList).RenderWithName(3, 3)
|
||||
@Html.KretaNumericFor(x => x.Osszeg).Min(0.01).Max(99999999.99).Decimals(2).RenderWithName(3, 3)
|
||||
</div>
|
||||
<div class="row">
|
||||
@Html.KretaComboBoxFor(x => x.PenznemId, Model.PenznemTipusList).RenderWithName(3, 3)
|
||||
@Html.KretaComboBoxFor(x => x.MerohelyId, Model.MerohelyList).RenderWithName(3, 3)
|
||||
</div>
|
||||
</div>
|
||||
@Html.KretaValidationSummary()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue