瀏覽代碼

学生宿舍分配学生编号非空判断

临城职教中职
ndbs 2 年之前
父節點
當前提交
aaa6a18bcb
共有 1 個檔案被更改,包括 6 行新增3 行删除
  1. +6
    -3
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LogisticsManagement/Accommodation/AccommodationService.cs

+ 6
- 3
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LogisticsManagement/Accommodation/AccommodationService.cs 查看文件

@@ -1814,9 +1814,12 @@ where ID='{ParentID}'
}
}

//分配床位
string sql = $"update Acc_DormitoryBuild set StudentID='{entity.StudentID}' where ID='{entity.ID}'";
db.ExecuteBySql(sql);
if (!string.IsNullOrEmpty(entity.StudentID))
{
//分配床位
string sql = $"update Acc_DormitoryBuild set StudentID='{entity.StudentID}' where ID='{entity.ID}'";
db.ExecuteBySql(sql);
}
}

int checkInStu = list.Where(x => x.StudentID != null).Count();


Loading…
取消
儲存