Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

Conflict Resolution Workflow

hr

Workplace conflict resolution workflow with complaint intake, HR investigation, mediation sessions, resolution documentation, and follow-up monitoring.

Full FlowZap Code

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)
}

Related templates

Background Check Workflow

hr

Pre-employment background check workflow with criminal history search, employment verification, education verification, and drug screening coordination.

Bonus Allocation Workflow

hr

Annual bonus allocation workflow with budget pool distribution, performance-based calculation, manager calibration, executive approval, and payroll processing.

Candidate Rejection Workflow

hr

Candidate rejection workflow with stage-appropriate messaging, personalized rejection letters, talent pool consideration, ATS status update, and candidate experience feedback.