多元化倡议工作流
hr
此工作流建模推动职场多元化。
完整 FlowZap 代码
employee { # Employee
n1: circle label:"Start Diversity Initiative"
n4: rectangle label:"Make Diversity Initiative decision"
n7: rectangle label:"Continue Diversity Initiative process"
n10: circle label:"End Diversity Initiative"
n1.handle(bottom) -> manager.n2.handle(top)
n4.handle(bottom) -> manager.n5.handle(top)
n7.handle(bottom) -> manager.n8.handle(top)
}
manager { # Manager
n2: rectangle label:"Receive Diversity Initiative request"
n5: rectangle label:"Update records for Diversity Initiative"
n8: diamond label:"Continue Diversity Initiative process"
n2.handle(bottom) -> hr_system.n3.handle(top)
n5.handle(bottom) -> hr_system.n6.handle(top)
n8.handle(bottom) -> hr_system.n9.handle(top)
n8.handle(right) -> employee.n7.handle(right) [label="Retry/Rejected"]
}
hr_system { # Hr_System
n3: rectangle label:"Review Diversity Initiative details"
n6: rectangle label:"Continue Diversity Initiative process"
n9: rectangle label:"Continue Diversity Initiative process"
n9.handle(right) -> employee.n10.handle(bottom) [label="Valid"]
n6.handle(right) -> employee.n7.handle(left) [label="Success"]
n3.handle(right) -> employee.n4.handle(left) [label="Processed"]
}