Update 20250107
This commit is contained in:
@@ -15,11 +15,12 @@ using System.Windows.Forms;
|
||||
using BroadcastListener.Interfaces;
|
||||
using static BroadcastListener.Classes.Factory;
|
||||
using BroadcastListener.Classes;
|
||||
using Syncfusion.WinForms.Controls;
|
||||
|
||||
namespace OnDoc.UIControls.Administrator
|
||||
{
|
||||
|
||||
public partial class AdminDokTypGenerierung : Form
|
||||
public partial class AdminDokTypGenerierung : SfForm
|
||||
{
|
||||
DB db = new DB(AppParams.connectionstring);
|
||||
|
||||
@@ -29,6 +30,10 @@ namespace OnDoc.UIControls.Administrator
|
||||
public AdminDokTypGenerierung()
|
||||
{
|
||||
InitializeComponent();
|
||||
this.Style.TitleBar.BackColor = Theaming.Titelbar();
|
||||
this.Style.TitleBar.ForeColor = Theaming.TitelFontColor();
|
||||
this.Style.ShadowOpacity = Theaming.ShadowOpacity;
|
||||
this.Style.InactiveShadowOpacity = Theaming.InactivShadowOpacity;
|
||||
}
|
||||
|
||||
private void AdminDokTypGenerierung_Load(object sender, EventArgs e)
|
||||
@@ -120,7 +125,7 @@ namespace OnDoc.UIControls.Administrator
|
||||
db.Get_Tabledata_for_Update("Select * from dokumenttyp where dokumenttypnr=" + dokumenttypnr.ToString(), false, true);
|
||||
DataRow r = db.daten.Tables[0].Rows[0];
|
||||
|
||||
r["mutierer"] = AppParams.CurrentMitarbieter;
|
||||
r["mutierer"] = AppParams.CurrentMitarbeiter;
|
||||
r["mutiert_am"] = DateTime.Now;
|
||||
r["BearbeitungDirket"] = chkbearbeitungdirekt.Checked == true;
|
||||
r["interop"] = chkinterop.Checked == true;
|
||||
@@ -147,6 +152,11 @@ namespace OnDoc.UIControls.Administrator
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
|
||||
private void cbbearbeitungzwingend_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user