-Beta project team sprint version (2/3)

Team Information

He Quanjiang (captain) 201731024218
Wu Chi-wai 201731024240
Li Hong Kong 201731024232
Meng Cheng Cheng 201731024242
Luo Junjie 201731024226
Lei Anyong 201731024215
Li Xuanxiao 201731024108

(1) SCRUM portion

Members case

  • He Quanjiang
    achievement: the completion of attendance information export capabilities
    difficulties: Due to technical problems, try a variety of methods can not be exported to excel, only text files will be on
    tomorrow's schedule: landscaping interface
    screenshot:
    Here Insert Picture Description
static public void Export(DataTable dt,string filename )
        {
            List<string> infoList = new List<string>();
            for (int r = 0; r < dt.Rows.Count; r++)
           {
                string info="";
               for (int c = 0; c < dt.Columns.Count; c++)
               {
                   DataRow dr = dt.Rows[r];
                   info += dr[c] + " ";
               }
                infoList.Add(info);
            }
            StreamWriter sw = new StreamWriter(filename);
            foreach (string i in infoList)
            {
                sw.WriteLine(i);
            }
            sw.Close();
        }
private void BtnExport_Click(object sender, EventArgs e)
        {
             string filename= @"C:\Users\he\Desktop\考勤.txt";
            if (dt.Rows.Count==0)
            {
                MessageBox.Show("学生信息为空");
            }
            else
            {
            User.Export(dt,filename);
            MessageBox.Show("考勤信息已导出到"+filename+",请及时备份");
            }
            
        }
  • Wu Chi-wai
    achievement: the completion of attendance information to assist captain export functions
    Tomorrow Plan: landscaping interface
  • Li Hong Kong
    achievement: the completion of attendance information export functions
    Tomorrow Plan: landscaping interface
  • Meng Cheng Cheng
    achievement: the completion of attendance information export functions
    Tomorrow Plan: landscaping interface
  • Luo Junjie
    achievement: the completion of attendance information export functions
    Tomorrow Plan: landscaping interface
  • Lei Anyong
    achievement: the completion of attendance information export functions
    Tomorrow Plan: landscaping interface
  • Li Xuanxiao
    achievement: the completion of attendance information export functions
    Tomorrow Plan: landscaping interface

SCRUM meetings Photo

Here Insert Picture Description

PM report

estimated time 7 days
I have spent time 5 days
Time left 2 days

Burndown

Here Insert Picture Description

Guess you like

Origin www.cnblogs.com/ssylddd/p/11926867.html