init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Web.Mvc;
|
||||
|
||||
namespace Kreta.Web.Areas.Hianyzas.Models.Mulasztasok
|
||||
{
|
||||
public class MulasztasNaploNezetModel
|
||||
{
|
||||
public DateTime Datum { get; set; }
|
||||
|
||||
public int PagerValue { get; set; }
|
||||
|
||||
public int OsztalyCsoportId { get; set; }
|
||||
|
||||
public List<SelectListItem> OsztalyCsoportList { get; set; }
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,27 @@
|
|||
using System;
|
||||
using Kreta.Web.Attributes;
|
||||
|
||||
namespace Kreta.Web.Areas.Hianyzas.Models.Mulasztasok
|
||||
{
|
||||
public class MulasztasokDatumNezetGridModel : CsoportMulasztasokGridModel
|
||||
{
|
||||
[KretaDisplayName(5632)] /*Mulasztás dátuma*/
|
||||
public DateTime MulasztasDatuma { get; set; }
|
||||
|
||||
[KretaDisplayName(5633)] /*Mulasztás napja*/
|
||||
public string MulasztasNapja { get; set; }
|
||||
|
||||
[KretaDisplayName(5634)] /*Mulasztások száma*/
|
||||
public int MulasztasokSzama { get; set; }
|
||||
|
||||
public int OsztalyCsoportId { get; set; }
|
||||
|
||||
public int? TanuloId { get; set; }
|
||||
|
||||
public bool IsMulasztasKezelheto { get; set; } = true;
|
||||
|
||||
public string ApiControllerName { get; set; } = Constants.ApiControllers.MulasztasokApi;
|
||||
|
||||
public int? SzervezetTipusId { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,135 @@
|
|||
using Kreta.BusinessLogic.Interfaces;
|
||||
using Kreta.Web.Attributes;
|
||||
|
||||
namespace Kreta.Web.Areas.Hianyzas.Models.Mulasztasok
|
||||
{
|
||||
public class MulasztasokNaploNezetGridModel : IKretaIdentity
|
||||
{
|
||||
|
||||
public string ID { get; set; }
|
||||
|
||||
#region TanuloNev + Tooltip
|
||||
|
||||
public int TanuloId { get; set; }
|
||||
|
||||
[KretaDisplayName(455)] /*Tanuló neve*/
|
||||
public string TanuloNev { get; set; }
|
||||
|
||||
public string OsztalyNev { get; set; }
|
||||
|
||||
public string AnyjaNeve { get; set; }
|
||||
|
||||
public string SzuletesiIdoFormatted { get; set; }
|
||||
|
||||
#endregion TanuloNev + Tooltip
|
||||
|
||||
#region Mulasztások
|
||||
|
||||
[KretaDisplayName(1723)] /*Igazolt?*/
|
||||
public string Igazolt { get; set; }
|
||||
|
||||
[KretaDisplayName(1723)] /*Igazolt?*/
|
||||
public bool? Igazolt_BOOL { get; set; }
|
||||
|
||||
[KretaDisplayName(1723)] /*Igazolt?*/
|
||||
public string Igazolt_BNAME { get; set; }
|
||||
|
||||
[KretaDisplayName(485)] /*Igazolás típusa*/
|
||||
public int? IgazolasTipus { get; set; }
|
||||
|
||||
[KretaDisplayName(485)] /*Igazolás típusa*/
|
||||
public string IgazolasTipus_DNAME { get; set; }
|
||||
|
||||
public bool Valid { get; set; }
|
||||
|
||||
[KretaDisplayName(97)] /*Megjegyzés*/
|
||||
public string Megjegyzes { get; set; }
|
||||
|
||||
#endregion Mulasztások
|
||||
|
||||
public string OraMinusz2Column { get; set; }
|
||||
|
||||
public string OraMinusz1Column { get; set; }
|
||||
|
||||
public string Ora0Column { get; set; }
|
||||
|
||||
public string Ora1Column { get; set; }
|
||||
|
||||
public string Ora2Column { get; set; }
|
||||
|
||||
public string Ora3Column { get; set; }
|
||||
|
||||
public string Ora4Column { get; set; }
|
||||
|
||||
public string Ora5Column { get; set; }
|
||||
|
||||
public string Ora6Column { get; set; }
|
||||
|
||||
public string Ora7Column { get; set; }
|
||||
|
||||
public string Ora8Column { get; set; }
|
||||
|
||||
public string Ora9Column { get; set; }
|
||||
|
||||
public string Ora10Column { get; set; }
|
||||
|
||||
public string Ora11Column { get; set; }
|
||||
|
||||
public string Ora12Column { get; set; }
|
||||
|
||||
public string Ora13Column { get; set; }
|
||||
|
||||
public string Ora14Column { get; set; }
|
||||
|
||||
public string Ora15Column { get; set; }
|
||||
|
||||
public string Ora16Column { get; set; }
|
||||
|
||||
public string Ora17Column { get; set; }
|
||||
|
||||
public string Ora18Column { get; set; }
|
||||
|
||||
public string Ora19Column { get; set; }
|
||||
|
||||
public string Ora20Column { get; set; }
|
||||
|
||||
public string Ora21Column { get; set; }
|
||||
|
||||
public string Ora22Column { get; set; }
|
||||
|
||||
public string Ora23Column { get; set; }
|
||||
|
||||
public string Ora24Column { get; set; }
|
||||
|
||||
public string Foglalkozas1Column { get; set; }
|
||||
|
||||
public string Foglalkozas2Column { get; set; }
|
||||
|
||||
public string Foglalkozas3Column { get; set; }
|
||||
|
||||
public string Foglalkozas4Column { get; set; }
|
||||
|
||||
public string Foglalkozas5Column { get; set; }
|
||||
|
||||
public string Foglalkozas6Column { get; set; }
|
||||
|
||||
public string Foglalkozas7Column { get; set; }
|
||||
|
||||
public string Foglalkozas8Column { get; set; }
|
||||
|
||||
public string Foglalkozas9Column { get; set; }
|
||||
|
||||
public string Foglalkozas10Column { get; set; }
|
||||
public string Foglalkozas11Column { get; set; }
|
||||
public string Foglalkozas12Column { get; set; }
|
||||
public string Foglalkozas13Column { get; set; }
|
||||
public string Foglalkozas14Column { get; set; }
|
||||
public string Foglalkozas15Column { get; set; }
|
||||
public string Foglalkozas16Column { get; set; }
|
||||
public string Foglalkozas17Column { get; set; }
|
||||
public string Foglalkozas18Column { get; set; }
|
||||
public string Foglalkozas19Column { get; set; }
|
||||
public string Foglalkozas20Column { get; set; }
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
namespace Kreta.Web.Areas.Hianyzas.Models.Mulasztasok
|
||||
{
|
||||
public class MulasztasokNaploNezetOra
|
||||
{
|
||||
//NOTE: Óra sorszáma/Óra kezdete
|
||||
public string Nev { get; set; }
|
||||
|
||||
public string OsztalyCsoportNev { get; set; }
|
||||
|
||||
public string TantargyNev { get; set; }
|
||||
|
||||
public string TanarNev { get; set; }
|
||||
|
||||
public int? MulasztasTipus { get; set; }
|
||||
|
||||
public bool? IsIgazolt { get; set; }
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,87 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.BusinessLogic.Interfaces;
|
||||
using Kreta.Resources;
|
||||
using Kreta.Web.Attributes;
|
||||
|
||||
namespace Kreta.Web.Areas.Hianyzas.Models.Mulasztasok
|
||||
{
|
||||
public class MulasztasokTanuloNezetGridModel : IKretaIdentity
|
||||
{
|
||||
public string ID { get; set; }
|
||||
|
||||
public int TanuloId { get; set; }
|
||||
|
||||
[KretaDisplayName(455)] /*Tanuló neve*/
|
||||
public string TanuloNev { get; set; }
|
||||
public int OsztalyCsoportId { get; set; }
|
||||
|
||||
//Tanórai hiányzás
|
||||
[Display(Name = nameof(HianyzasResource.Osszes), ResourceType = typeof(HianyzasResource))]
|
||||
public int TanoraiHianyzasOsszes { get; set; }
|
||||
|
||||
[Display(Name = nameof(HianyzasResource.Igazolt), ResourceType = typeof(HianyzasResource))]
|
||||
public int TanoraiHianyzasIgazolt { get; set; }
|
||||
|
||||
[Display(Name = nameof(HianyzasResource.Igazolatlan), ResourceType = typeof(HianyzasResource))]
|
||||
public int TanoraiHianyzasIgazolatlan { get; set; }
|
||||
|
||||
[Display(Name = nameof(HianyzasResource.Igazolando), ResourceType = typeof(HianyzasResource))]
|
||||
public int TanoraiHianyzasIgazolando { get; set; }
|
||||
|
||||
[Display(Name = nameof(OrarendResource.Potlas), ResourceType = typeof(OrarendResource))]
|
||||
public int Potlas { get; set; }
|
||||
|
||||
[Display(Name = nameof(OrarendResource.Szabadsag), ResourceType = typeof(OrarendResource))]
|
||||
public int Szabadsag { get; set; }
|
||||
|
||||
[Display(Name = nameof(OrarendResource.Tappenz), ResourceType = typeof(OrarendResource))]
|
||||
public int Tappenz { get; set; }
|
||||
|
||||
[Display(Name = nameof(OrarendResource.Betegszabadsag), ResourceType = typeof(OrarendResource))]
|
||||
public int BetegSzabadsag { get; set; }
|
||||
|
||||
//Tanórán kívüli
|
||||
[Display(Name = nameof(HianyzasResource.Osszes), ResourceType = typeof(HianyzasResource))]
|
||||
public int TanoranKivuliHianyzasOsszes { get; set; }
|
||||
|
||||
//Tanórán kívüli
|
||||
[Display(Name = nameof(HianyzasResource.Igazolt), ResourceType = typeof(HianyzasResource))]
|
||||
public int TanoranKivuliHianyzasIgazolt { get; set; }
|
||||
|
||||
//Tanórán kívüli
|
||||
[Display(Name = nameof(HianyzasResource.Igazolatlan), ResourceType = typeof(HianyzasResource))]
|
||||
public int TanoranKivuliHianyzasIgazolatlan { get; set; }
|
||||
|
||||
[Display(Name = nameof(HianyzasResource.Igazolando), ResourceType = typeof(HianyzasResource))]
|
||||
public int TanoranKivuliHianyzasIgazolando { get; set; }
|
||||
|
||||
//Tanórai késés
|
||||
[Display(Name = nameof(HianyzasResource.Osszes), ResourceType = typeof(HianyzasResource))]
|
||||
public string TanoraiKesesOsszes { get; set; }
|
||||
|
||||
[Display(Name = nameof(HianyzasResource.Igazolt), ResourceType = typeof(HianyzasResource))]
|
||||
public string TanoraiKesesIgazolt { get; set; }
|
||||
|
||||
[Display(Name = nameof(HianyzasResource.Igazolatlan), ResourceType = typeof(HianyzasResource))]
|
||||
public string TanoraiKesesIgazolatlan { get; set; }
|
||||
|
||||
[Display(Name = nameof(HianyzasResource.Igazolando), ResourceType = typeof(HianyzasResource))]
|
||||
public string TanoraiKesesIgazolando { get; set; }
|
||||
|
||||
//Tanórai késésekből számítandó hiányzás
|
||||
[Display(Name = nameof(HianyzasResource.Osszes), ResourceType = typeof(HianyzasResource))]
|
||||
public int SzamitottKesesOsszes { get; set; }
|
||||
|
||||
[Display(Name = nameof(HianyzasResource.Igazolt), ResourceType = typeof(HianyzasResource))]
|
||||
public int SzamitottKesesIgazolt { get; set; }
|
||||
|
||||
[Display(Name = nameof(HianyzasResource.Igazolatlan), ResourceType = typeof(HianyzasResource))]
|
||||
public int SzamitottKesesIgazolatlan { get; set; }
|
||||
|
||||
[Display(Name = nameof(HianyzasResource.Igazolando), ResourceType = typeof(HianyzasResource))]
|
||||
public int SzamitottKesesIgazolando { get; set; }
|
||||
public bool GridHasDelete { get; set; } = true;
|
||||
public string ApiControllerName { get; set; } = Constants.ApiControllers.MulasztasokApi;
|
||||
public int? SzervezetTipusId { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using System;
|
||||
|
||||
namespace Kreta.Web.Areas.Hianyzas.Models.Mulasztasok
|
||||
{
|
||||
public class TanuloMulasztasaiPopupModel : CsoportMulasztasokGridModel
|
||||
{
|
||||
public DateTime MulasztasDatuma { get; set; }
|
||||
|
||||
public int OsztalyCsoportId { get; set; }
|
||||
|
||||
public int TanuloId { get; set; }
|
||||
|
||||
public bool Kezeletlen { get; set; }
|
||||
|
||||
public string ApiControllerName { get; set; }
|
||||
|
||||
public int? SzervezetTipusId { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue