update 20250119
This commit is contained in:
@@ -262,23 +262,31 @@ namespace OnDoc.UIControls
|
||||
{
|
||||
|
||||
}
|
||||
Logging.Logging.Debug("Profilnr", "OnDOc", profilnr.ToString());
|
||||
if (profilnr != 0)
|
||||
{
|
||||
|
||||
db.Get_Tabledata("Select * from profil where profilnr=" + profilnr, false, true);
|
||||
int ulinks = 0;
|
||||
int urechts = 0;
|
||||
try
|
||||
{
|
||||
ulinks = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["unterschriftlinks"].ToString());
|
||||
ulinks = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["unterschriftlinks"]);
|
||||
cbboxunterschriftlinks.SelectedValue = ulinks;
|
||||
}
|
||||
catch { ulinks = 0; }
|
||||
catch {
|
||||
ulinks = 0;
|
||||
Logging.Logging.Debug("Unterschrift links nicht zugewiesen","DokPaket",ulinks.ToString()+" / "+ profilnr.ToString());
|
||||
}
|
||||
try
|
||||
{
|
||||
urechts = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["unterschriftrechts"].ToString());
|
||||
urechts = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["unterschriftrechts"]);
|
||||
cbboxunterschriftrechts.SelectedValue = urechts;
|
||||
}
|
||||
catch { urechts = 0; }
|
||||
catch {
|
||||
urechts = 0;
|
||||
Logging.Logging.Debug("Unterschrift rechts nicht zugewiesen", "DokPaket", urechts.ToString() + " / " + profilnr.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
System.Data.DataTable dokwertlist = new System.Data.DataTable();
|
||||
|
||||
Reference in New Issue
Block a user