-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHR_system.dot
More file actions
130 lines (111 loc) · 3.53 KB
/
HR_system.dot
File metadata and controls
130 lines (111 loc) · 3.53 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
digraph {
fontname="Verdana";
// label = "System Integration"
node[fontname="Verdana", style=rounded]
rankdir = LR
newemployee [
shape=box,
style="rounded,filled",
color=darkgreen,
fontcolor=white,
label="New Employee"];
employee [
shape=box,
style="rounded,filled",
color=darkgreen,
fontcolor=white,
label="Existing Employee"];
contractor [
shape=box,
style="rounded,filled",
color=darkgreen,
fontcolor=white,
label="Contractor"];
catalystone[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="Catalyst One"];
payroll[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="Payroll"];
timemanagement[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="Time management"];
expenses[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="Expenses"];
okta[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="IDM (Okta)"];
freeipa[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="IDM (FreeIPA)"];
benefits[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="Benefits (Benify)"];
pension[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="Pension"];
need_payroll[
shape=diamond,
style = filled,
color=yellow,
label="On payroll?"];
need_office[
shape=diamond,
style = filled,
color=yellow,
label="Office account?"];
need_production[
shape=diamond,
style = filled,
color=yellow,
label="Production account?"];
need_benefits[
shape=diamond,
style = filled,
color=yellow,
label="Benefits?"];
newemployee -> catalystone [ label = "HR\nManual entry"]
contractor -> catalystone [ label = "Hiring manager\nManual entry" ]
employee -> catalystone [ label = "HR\nManual entry"]
catalystone -> need_payroll
catalystone -> need_office
catalystone -> need_production
catalystone -> need_benefits
need_payroll -> payroll [ label = "On payroll" ]
need_payroll -> timemanagement [ label = "Time management" ]
need_payroll -> expenses [ label = "Expenses"]
need_office -> okta [ label = "Create account\n on IDM"]
need_production -> freeipa [ label = "Create account\n on FreeIPA"]
need_benefits -> benefits [ label = "Account on benefits\nprovider" ]
benefits -> pension [ label = "Account on pension\nprovider" ]
expenses -> payroll [ label = "Expenses info" ]
timemanagement -> catalystone [ label = "Absense / Vacation info", color = "red" ]
timemanagement -> payroll [ label = "Time info" ]
benefits -> catalystone [ label = "Benefits info", color = "red" ]
pension -> catalystone [ label = "Pension info", color = "red" ]
}