sql: the_dep = self.department_id the_dep_list = [self.department_id] while the_dep.parent_department_id: the_dep_list.append(the_dep.parent_department_id) the_dep = the_dep.parent_department_id if len(the_dep_list) >= 2: result = the_dep_list[-2].manager_id.user_id
部门合并流程中, 1.一级组织负责人 取目标部门的一级组织部门的负责人 2.分管负责人 取目标部门的一级组织部门的分管负责人
Page 正在加载