-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelectionFields.py
118 lines (114 loc) · 2.73 KB
/
SelectionFields.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
Fields = {
"Combo Box 5": "City",
"22": "Tasks_3",
"23": "Shares_3",
"45": "28",
"Combo box 3": "No",
"46": "Requirements_Cell",
"Combo Box 4": "USYS",
"47": "Date_Cell",
"26": "Tasks_4",
"48": "",
"27": "Shares_4",
"49": "",
"30": "Tasks_5",
"Combo Box 7": "Operational_Function",
"31": "Shares_5",
"10": "Level_of_Employment",
"11": "Valid_From",
"34": "Tasks_6",
"35": "Shares_6",
"14": "Tasks_1",
"15": "Shares_1",
"38": "Tasks_7",
"39": "Shares_7",
"18": "Tasks_2",
"19": "Shares_2",
"2": "Function_Level",
"4": "Internal_Designaiton",
"6": "Brief_Description",
"7": "Organizational_Unit",
"8": "Supervisor_Name",
"9": "Employee_Name"}
Function_level = {
0: "Please choose",
1: "4021-I IT support \(1st level\) / 03",
2: "4022-I IT support \(1st level\) / 04",
3: "4023-I IT support \(1st level\) / 05",
4: "4031-I Contact IT support \(2nd level\) / programming / 05",
5: "4032-I Contact IT support \(2nd level\) / programming / 06",
6: "4033-I Contact IT support \(2nd level\) / programming / 07",
7: "4041-I System specialist \(3rd level\) / software engineering / 07",
8: "4042-I System specialist \(3rd level\) / software engineering / 08",
9: "4043-I System specialist \(3rd level\) / software engineering / 09",
10: "4044-I System specialist \(3rd level\) / software engineering / 10",
11: "5011-I IT group management / 04",
12: "5012-I IT group management / 05",
13: "5013-I IT group management / 06",
14: "5021-I IT head technical fields / 06",
15: "5022-I IT head technical fields / 07",
16: "5023-I IT head technical fields / 08",
17: "5024-I IT head technical fields / 09",
18: "5031-T IT head scientific fields / 09",
19: "5032-T IT head scientific fields / 10",
20: "5033-T IT head scientific fields / 11",
21: "5034-T IT head scientific fields / 12"
}
Operational_function = {
0: "Please choose",
1: "Application developer",
2: "Computer scientist",
3: "Database specialist",
4: "Group leader",
5: "IC advisor",
6: "IC technician",
7: "Intern",
8: "Project leader",
9: "Project staff",
10: "Section leader",
11: "System controller",
12: "System specialist",
13: "Telematician",
14: "Unit leader"
}
Unit = {
0: "Please choose",
1: "ARCH",
2: "BAUG",
3: "BIOL",
4: "BSSE",
5: "CHAB",
6: "ERDW",
7: "GESS",
8: "HEST",
9: "INFK",
10: "ITET",
11: "MATH",
12: "MATL",
13: "MAVT",
14: "MTEC",
15: "PHYS",
16: "USYS",
17: "Executive Board",
18: "Staff unit (Stab)",
19: "Administrative department",
20: "Educational and research facilities",
21: "Other",
}
city = {
0: "Please choose",
1: "Please choose",
2: "Zurich City",
3: "Ascona",
4: "Basel",
5: "Bern",
6: "Birmensdorf",
7: "Dübendorf",
8: "Kastanienbaum",
9: "Lausanne",
10: "Lindau mit AgroVet-Strickhof",
11: "Lugano",
12: "Rüschlikon",
13: "Schwerzenbach",
14: "Singapore",
}