菜单
  

                            NewRow[1] = "没有排班";
                            _Result.Rows.Add(NewRow);
                        }
                    }

                    this.dataGridView1.AutoGenerateColumns = false;
                    this.dataGridView1.DataSource = _Result;
    3.5.2    月考勤报表

    图13 会员付款管理
        根据部门、员工姓名、年、月组合查询统计生成员工月考勤报表的具体业务逻辑实现如下所示:
                   string UserName = this.comboBox2.SelectedValue.ToString();
                    DateTime Begin = Convert.ToDateTime(String.Format("{0}-{1}-1 0:00:00", this.comboBox3.Text, this.comboBox4.Text));
                    DateTime End = Convert.ToDateTime(String.Format("{0}-{1}-30 23:59:59", this.comboBox3.Text, this.comboBox4.Text));

                    var WorkObject = _DbEntities.WorkOrder.Where(p => p.W_UserName == UserName && p.W_Time >= Begin && p.W_Time <= End).ToList();
                    foreach (var temp in WorkObject)
                    {
                        DataRow NewRow = _Result.NewRow();
                        NewRow[0] = String.Format("{0:yyyy-MM-dd}", temp.W_Time);
                        NewRow[1] = temp.W_Type;
                        _Result.Rows.Add(NewRow);
                    }
                    this.dataGridView1.AutoGenerateColumns = false;
                    this.dataGridView1.DataSource = _Result;
    3.5.3    登入统计
    图14 登入统计
        员工登入统计的业务逻辑具体实现如下:
               DateTime Begin = Convert.ToDateTime(String.Format("{0}-{1}-1 0:00:00", this.comboBox3.Text, this.comboBox4.Text));
                DateTime End = Convert.ToDateTime(String.Format("{0}-{1}-30 23:59:59", this.comboBox3.Text, this.comboBox4.Text));
                this.dataGridView1.AutoGenerateColumns = false;
                this.dataGridView1.DataSource = _DbEntities.Sign.Where(p => p.S_Time >= Begin && p.S_Time <= End).ToList();
    4    总结
  1. 上一篇:VB设备管理系统设计+需求分析+可行性分析
  2. 下一篇:C#校园爱心慈善屋交易网站的设计与实现+ER图+数据流图DFD
  1. JAVA基于安卓平台的医疗护工管理系统设计

  2. java+mysql酒店管理系统设计与实现

  3. Ruby+mysql就业信息管理系统的设计与实现

  4. php进销存管理系统的设计与实现

  5. jsp医药连锁店管理系统的设计与实现

  6. jsp+mysql学生实践创新项目管理系统设计与实现

  7. jsp+mysql停车场车辆管理系统的设计与实现

  8. 十二层带中心支撑钢结构...

  9. 中考体育项目与体育教学合理结合的研究

  10. 当代大学生慈善意识研究+文献综述

  11. 大众媒体对公共政策制定的影响

  12. 酸性水汽提装置总汽提塔设计+CAD图纸

  13. 河岸冲刷和泥沙淤积的监测国内外研究现状

  14. 杂拟谷盗体内共生菌沃尔...

  15. 电站锅炉暖风器设计任务书

  16. java+mysql车辆管理系统的设计+源代码

  17. 乳业同业并购式全产业链...

  

About

751论文网手机版...

主页:http://www.751com.cn

关闭返回