Exemplo n.º 1
0
 /// <summary>
 /// 判断是不是要废弃或停用,如果停用或废弃 ,判断本科室下是不是 有没有停用或废弃的人员 如果有 返回FALSE 否则 返回true
 /// </summary>
 /// <returns></returns>
 private bool IsDisuse()
 {
     if (this.radioBValid2.Checked || this.radioBValid3.Checked)
     {
         if (department != null)
         {
             Neusoft.HISFC.BizLogic.Manager.Person p = new Neusoft.HISFC.BizLogic.Manager.Person();
             ArrayList list = new ArrayList();
             list = p.GetPersonsByDeptID(department.ID);
             if (list != null)
             {
                 if (list.Count > 0)
                 {
                     MessageBox.Show("要废弃或停用本科室,请先将本科室内的人员转移或置成废弃或停用");
                     return(false);
                 }
             }
         }
     }
     return(true);
     //departmentInfo
 }