Update 5.5.2022

This commit is contained in:
2022-05-05 15:57:15 +02:00
parent b587e0da18
commit 8f75d67c73
37 changed files with 18017 additions and 53 deletions

View File

@@ -9,6 +9,7 @@ namespace QW2021C.Administration
{
public partial class MergeAthlethen : System.Web.UI.Page
{
Helper.Log log = new Helper.Log();
protected void Page_Load(object sender, EventArgs e)
{
{
@@ -86,6 +87,15 @@ namespace QW2021C.Administration
license = "";
}
db.merge_athlete(id_athlete, teilnehemernr, license);
if (license !="")
{
log.insert_entry(1, Convert.ToInt32(Session["UserID"]), "Lizenzenn zusammengeführt:" + teilnehemernr+" / "+license);
}
else
{
log.insert_entry(1, Convert.ToInt32(Session["UserID"]), "Lizenzenn Zusaemmenführung aufgehoben:" + teilnehemernr + " / " + license);
}
}
}