AddPersonDlg.cpp
上传用户:tyjx315
上传日期:2015-01-18
资源大小:1685k
文件大小:3k
源码类别:

百货/超市行业

开发平台:

Visual C++

  1. // AddPersonDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "SuperMarket.h"
  5. #include "AddPersonDlg.h"
  6. #include "afxdb.h"
  7. #include "EnrolDlg.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CAddPersonDlg dialog
  15. CAddPersonDlg::CAddPersonDlg(CWnd* pParent /*=NULL*/)
  16. : CDialog(CAddPersonDlg::IDD, pParent)
  17. {
  18. //{{AFX_DATA_INIT(CAddPersonDlg)
  19. m_number = _T("");
  20. m_name = _T("");
  21. m_age = _T("");
  22. //}}AFX_DATA_INIT
  23. }
  24. void CAddPersonDlg::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CAddPersonDlg)
  28. DDX_Control(pDX, IDC_COMBO2, m_department);
  29. DDX_Control(pDX, IDC_COMBO1, m_sex);
  30. DDX_Text(pDX, IDC_EDIT1, m_number);
  31. DDX_Text(pDX, IDC_EDIT2, m_name);
  32. DDX_Text(pDX, IDC_EDIT4, m_age);
  33. //}}AFX_DATA_MAP
  34. }
  35. BEGIN_MESSAGE_MAP(CAddPersonDlg, CDialog)
  36. //{{AFX_MSG_MAP(CAddPersonDlg)
  37. ON_BN_CLICKED(IDC_SET_SECRET, OnSetSecret)
  38. //}}AFX_MSG_MAP
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CAddPersonDlg message handlers
  42. void CAddPersonDlg::OnOK() 
  43. {
  44. // TODO: Add extra validation here
  45. CDatabase dbTemp;
  46. CRecordset  rs( &dbTemp);
  47. CString strSQL,sex,department;
  48. int age=0,count=0;
  49. UpdateData();
  50.     dbTemp.OpenEx("Driver={Microsoft Access Driver (*.mdb)};DBQ=超市管理数据库.mdb;"); 
  51.     rs.Open(AFX_DB_USE_DEFAULT_TYPE,"select * From 员工信息 where number='"+m_number+"'");
  52. if(rs.IsEOF())
  53. {
  54.      m_sex.GetWindowText(department);
  55.      m_department.GetWindowText(sex);
  56. if(m_number.GetAt(0) != 'Y')
  57. {
  58. MessageBox("员工编号类型首字母为Y!如Y001");
  59. return;
  60. }
  61.        if(m_number==""||m_name==""||sex==""||department==""||m_age=="")
  62. {
  63. MessageBox("请保证信息的完整性!");
  64. return;
  65. }
  66. else
  67. {
  68. age=atoi(m_age);
  69.             count=strlen(m_number);
  70. if(count==4 && (age>17 && age<71) && (sex == "男" || sex == "女") && (department == "财务部门" || department == "客服部门" || department == "物流部门" || department == "销售部门" || department == "人事部门"))
  71. {
  72. strSQL="insert into 员工信息([number],[name],[age],[sex],[department]) values ('"+m_number+"','"+m_name+"','"+m_age+"','"+sex+"','"+department+"')"; 
  73.          dbTemp.ExecuteSQL(strSQL);
  74.          UpdateData();
  75. MessageBox("添加员工信息成功!");
  76. }
  77. else 
  78. {
  79. if(count!=4)
  80. {
  81. MessageBox("编号不是4位!");
  82. return;
  83. }
  84. if(age<18 || age>65)
  85. {
  86. MessageBox("年龄超过界限!(18-65)");
  87. return;
  88. }
  89. }
  90. }
  91. }
  92. else
  93. {
  94.         MessageBox("这个编号的员工已经存在!n请另外取编号!");
  95. return;
  96. }
  97. m_number="";
  98.     m_name="";
  99.     m_age="";
  100.     m_sex.SetCurSel(0);
  101.     m_department.SetCurSel(0);
  102. UpdateData(false);
  103. rs.Close();
  104.     dbTemp.Close();
  105. // CDialog::OnOK();
  106. }
  107. void CAddPersonDlg::OnSetSecret()  //新员工注册
  108. {
  109. // TODO: Add your control notification handler code here
  110. CEnrolDlg E_Dlg;
  111. E_Dlg.DoModal();
  112. }