AttendanceDetailsSmallForm.cs 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. using LYFZ.Software.MainBusiness.DoorCityProcess;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.TimeAndAttendance.SetSmallForm
  11. {
  12. public partial class AttendanceDetailsSmallForm : LYFZ.Software.UI.TimeAndAttendance.SetSmallForm.AttendanceDetailsSmallForm
  13. {
  14. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  15. public AttendanceDetailsSmallForm()
  16. {
  17. this.Shown += AttendanceDetailsSmallForm_Shown;
  18. }
  19. /// <summary>
  20. /// 员工姓名
  21. /// </summary>
  22. public string StrUserName = "";
  23. /// <summary>
  24. /// 员工编号
  25. /// </summary>
  26. public string StrUserNumber = "";
  27. /// <summary>
  28. /// 日期
  29. /// </summary>
  30. public string StrDateTime = "";
  31. /// <summary>
  32. /// 窗体加载事件
  33. /// </summary>
  34. /// <param name="sender"></param>
  35. /// <param name="e"></param>
  36. void AttendanceDetailsSmallForm_Shown(object sender, EventArgs e)
  37. {
  38. this.label5.Text = this.StrUserName;
  39. this.label8.Text = this.StrDateTime;
  40. this.label6.Text = "";
  41. this.label7.Text = "";
  42. this.label9.Text = "";
  43. DataTable dtPaiBan = orbll.GetView_Custom("select name,time1,time2,time3,time4 from loninbansets Left Join lonintimeset on fixed = name Where User_ID = '" + StrUserNumber + "' " + PublicCodeClasses.GetDateTime("Time", StrDateTime, StrDateTime)).Tables[0];
  44. if (dtPaiBan.Rows.Count > 0)
  45. {
  46. this.label6.Text = dtPaiBan.Rows[0]["name"].ToString().Trim();
  47. this.label6.Text += " " + dtPaiBan.Rows[0]["time1"].ToString().Trim();
  48. this.label6.Text += " " + dtPaiBan.Rows[0]["time2"].ToString().Trim();
  49. this.label6.Text += " " + dtPaiBan.Rows[0]["time3"].ToString().Trim();
  50. this.label6.Text += " " + dtPaiBan.Rows[0]["time4"].ToString().Trim();
  51. }
  52. DataTable dtTongJi = orbll.GetView_Custom("select dbo.fn_CheckDateTime(datetime) AS datetime from lonindata Left Join tb_ErpUser on (User_FirstFingerprintID = [no] or User_SecondaryFingerprintID = [no]) Where User_EmployeeID = '" + this.StrUserNumber + "'" + PublicCodeClasses.GetDateTime("datetime", StrDateTime, StrDateTime) + " Group By dbo.fn_CheckDateTime(datetime) order by datetime").Tables[0];
  53. for (int i = 0; i < dtTongJi.Rows.Count; i++)
  54. {
  55. if (i % 2 == 0)
  56. { this.label9.Text += dtTongJi.Rows[i]["datetime"].ToString().Trim() + " "; }
  57. else
  58. { this.label9.Text += dtTongJi.Rows[i]["datetime"].ToString().Trim() + "\r\n"; }
  59. }
  60. DataTable dtDaKa = orbll.GetView_Custom("select datetime from lonindata Left Join tb_ErpUser on (User_FirstFingerprintID = [no] or User_SecondaryFingerprintID = [no]) Where User_EmployeeID = '" + this.StrUserNumber + "'" + PublicCodeClasses.GetDateTime("datetime", StrDateTime, StrDateTime) + " Order by datetime").Tables[0];
  61. for (int i = 0; i < dtDaKa.Rows.Count; i++)
  62. {
  63. if (i % 2 == 0)
  64. { this.label7.Text += dtDaKa.Rows[i]["datetime"].ToString().Trim() + " "; }
  65. else
  66. { this.label7.Text += dtDaKa.Rows[i]["datetime"].ToString().Trim() + "\r\n"; }
  67. }
  68. }
  69. }
  70. }