- Cronjobverwaltung

- Anpassung an neue Firmenverwaltung 
- Bugfix Infoterminal, Login ohne Passwort nicht mehr moeglich
This commit is contained in:
Andreas Österreicher
2010-03-18 13:48:16 +00:00
parent 5f1e232ce9
commit d762d00163
62 changed files with 4896 additions and 2152 deletions
+2 -2
View File
@@ -467,7 +467,7 @@ function KontaktKontaktSpeichern(dialog)
kontakt = dialog.getElementById('kontakt-textbox-kontakt').value;
zustellung = dialog.getElementById('kontakt-checkbox-zustellung').checked;
typ = dialog.getElementById('kontakt-menulist-typ').value;
firma_id = dialog.getElementById('kontakt-menulist-firma').value;
standort_id = dialog.getElementById('kontakt-menulist-firma').value;
//Bei Mitarbeitern wird kein Studiengang mitgeschickt
if(window.parent.document.getElementById('main-content-tabs').selectedItem==window.parent.document.getElementById('tab-mitarbeiter'))
@@ -488,7 +488,7 @@ function KontaktKontaktSpeichern(dialog)
req.add('kontakt', kontakt);
req.add('typ', typ);
req.add('zustellung', zustellung);
req.add('firma_id', firma_id);
req.add('standort_id', standort_id);
req.add('studiengang_kz', studiengang_kz);
var response = req.executePOST();