冲突解决工作流
hr
职场冲突解决工作流,包括投诉受理、人力资源调查、调解会谈、解决方案记录以及后续跟进监控。
完整 FlowZap 代码
employee { # Employee
n1: circle label:"Start Conflict Resolution"
n4: diamond label:"Make Conflict Resolution decision"
n7: rectangle label:"Continue Conflict Resolution process"
n10: circle label:"End Conflict Resolution"
n1.handle(bottom) -> manager.n2.handle(top)
n4.handle(bottom) -> manager.n5.handle(top)
n7.handle(bottom) -> manager.n8.handle(top)
n4.handle(right) -> hr_system.n3.handle(bottom) [label="Retry/Rejected"]
}
manager { # Manager
n2: rectangle label:"Receive Conflict Resolution request"
n5: rectangle label:"Update records for Conflict Resolution"
n8: rectangle label:"Continue Conflict Resolution process"
n2.handle(bottom) -> hr_system.n3.handle(top) [label="Next"]
n5.handle(bottom) -> hr_system.n6.handle(top) [label="Done"]
n8.handle(bottom) -> hr_system.n9.handle(top) [label="Processed"]
}
hr_system { # Hr_System
n3: rectangle label:"Review Conflict Resolution details"
n6: rectangle label:"Continue Conflict Resolution process"
n9: rectangle label:"Continue Conflict Resolution process"
n9.handle(right) -> employee.n10.handle(bottom)
n6.handle(right) -> employee.n7.handle(left)
n3.handle(right) -> employee.n4.handle(left)
}