超越队西柚考勤系统——beta冲刺3

一、成员列表

姓名 学号
蔡玉蓝(组长) 201731024205
郑雪 201731024207
何玉姣 201731024209
王春兰 201731024211

二、SCRUM部分

(1)各成员情况
-201731024205
1.今日进展: 发现combox的联动有问题,选择不同课程班级不会改变,修改了代码

private void comboBox1_SelectedValueChanged(object sender, EventArgs e)
        {
           
            string selectsql = string.Format("select distinct ClassId from CourseSchedules where courseid in (select CourseId from Courses where CourseName = '{0}')", comboBox1.Text.Trim());


            try
            {
                comboBox2.DataSource = null;
                comboBox2.Items.Clear();
                DBHelper.connection.Open();
                SqlCommand comm = new SqlCommand(selectsql, DBHelper.connection);
                SqlDataReader dr = comm.ExecuteReader();
                while (dr.Read())
                {
                    comboBox2.Items.Add(dr["ClassId"].ToString());
                }
            }


            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "操作数据库出错", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
            finally
            {
                DBHelper.connection.Close();
            }

        }

2.存在问题: 能力有限,代码的修改比较难
3.当天截图:
在这里插入图片描述
在这里插入图片描述
-201731024207
1.今日进展: 完善了一下数据库教室表信息和课表信息
2.存在问题: 暂无
3.当天截图:
在这里插入图片描述
在这里插入图片描述
-201731024209
1.今日进展: 完善了一下数据库学生信息,增加了每个班的学生人数。
2.存在问题: 暂无
3.当天截图:
在这里插入图片描述
在这里插入图片描述
-201731024211
1.今日进展: 审查和完善数据库,并对部分代码并进行一些测试。
2.存在问题: 代码测试比较耗费时间
3.当天截图: 无
(2)SCRUM会议讨论照片
在这里插入图片描述

三、PM报告

(1)项目预期任务量

预期任务量 已花费时间 剩余时间
32 32 0

(2)燃尽图
在这里插入图片描述

猜你喜欢

转载自www.cnblogs.com/jiao54/p/11937283.html