ProManDlg.cpp
上传用户:biney012
上传日期:2022-05-09
资源大小:4592k
文件大小:5k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // ProManDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Stock.h"
  5. #include "ProManDlg.h"
  6. #include "ProEditdlg.h"
  7. #include "COMDEF.H"
  8. #include "Columns.h"
  9. #include "Column.h"
  10. #include "StoreIn.h"
  11. #include "TakeOut.h"
  12. #include "ProInStore.h"
  13. #include "_recordset.h"
  14. #include "Product.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CProManDlg dialog
  22. CProManDlg::CProManDlg(CWnd* pParent /*=NULL*/)
  23. : CDialog(CProManDlg::IDD, pParent)
  24. {
  25. //{{AFX_DATA_INIT(CProManDlg)
  26. //}}AFX_DATA_INIT
  27. }
  28. void CProManDlg::DoDataExchange(CDataExchange* pDX)
  29. {
  30. CDialog::DoDataExchange(pDX);
  31. //{{AFX_DATA_MAP(CProManDlg)
  32. DDX_Control(pDX, IDC_ADODC1, m_adodc1);
  33. DDX_Control(pDX, IDC_ADODC2, m_adodc2);
  34. DDX_Control(pDX, IDC_ADODC3, m_adodc3);
  35. DDX_Control(pDX, IDC_DATACOMBO1, m_datacombo1);
  36. DDX_Control(pDX, IDC_DATACOMBO2, m_datacombo2);
  37. DDX_Control(pDX, IDC_DATAGRID1, m_datagrid);
  38. //}}AFX_DATA_MAP
  39. }
  40. BEGIN_MESSAGE_MAP(CProManDlg, CDialog)
  41. //{{AFX_MSG_MAP(CProManDlg)
  42. ON_BN_CLICKED(IDC_ADD_BUTTON, OnAddButton)
  43. ON_BN_CLICKED(IDC_MODI_BUTTON, OnModiButton)
  44. ON_BN_CLICKED(IDC_DEL_BUTTON, OnDelButton)
  45. //}}AFX_MSG_MAP
  46. END_MESSAGE_MAP()
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CProManDlg message handlers
  49. void CProManDlg::Refresh_Data()
  50. {
  51. CString cTypeId;
  52. cTypeId = m_datacombo2.GetBoundText();  //读取选择的类别编号
  53. if (cTypeId == "")
  54. cTypeId = "0";
  55. //设置查询产品信息的SELECT语句
  56. CString cSource;
  57. cSource = "SELECT Pid, Pname AS 产品名称, Pstyle AS 产品规格, Punit AS 计量单位,";
  58. cSource += " Pprice AS 参考价格, Plow AS 数量下限, Phigh AS 数量上限, Valid As 有效期,";
  59. cSource += " AlarmDays As 警告期 FROM Product WHERE TypeId = " + cTypeId;
  60. //设置记录源
  61. m_adodc3.SetRecordSource(cSource);
  62. m_adodc3.Refresh();
  63. //设置表格列宽度
  64. _variant_t vIndex;
  65. vIndex = long(0);
  66. m_datagrid.GetColumns().GetItem(vIndex).SetWidth(0);
  67. }
  68. BEGIN_EVENTSINK_MAP(CProManDlg, CDialog)
  69.     //{{AFX_EVENTSINK_MAP(CProManDlg)
  70. ON_EVENT(CProManDlg, IDC_DATACOMBO1, -600 /* Click */, OnClickDatacombo1, VTS_I2)
  71. ON_EVENT(CProManDlg, IDC_DATACOMBO2, -600 /* Click */, OnClickDatacombo2, VTS_I2)
  72. //}}AFX_EVENTSINK_MAP
  73. END_EVENTSINK_MAP()
  74. void CProManDlg::OnClickDatacombo1(short Area) 
  75. {
  76. // TODO: Add your control notification handler code here
  77. CString cUpper;
  78. cUpper = m_datacombo1.GetBoundText(); //读取选择类别的编号
  79. if (cUpper == "")
  80. cUpper = "0";
  81. //设置二级类别的记录源
  82. m_adodc2.SetRecordSource("SELECT * FROM ProType WHERE UpperId=" + cUpper);
  83. m_adodc2.Refresh();
  84. }
  85. void CProManDlg::OnClickDatacombo2(short Area) 
  86. {
  87. // TODO: Add your control notification handler code here
  88. Refresh_Data();
  89. }
  90. void CProManDlg::OnAddButton() 
  91. {
  92. // TODO: Add your control notification handler code here
  93. if (m_datacombo2.GetBoundText() == "")
  94. {
  95. MessageBox("请选择产品类型");
  96. return;
  97. }
  98. CProEditDlg dlg;
  99. dlg.iTypeId = atoi(m_datacombo2.GetBoundText());  //设置产品类别为当前选择的类别
  100. dlg.cPid = "";  //表示插入记录
  101. dlg.cPname = ""; //设置产品名称为空
  102. dlg.m_Ptype = m_datacombo1.GetText() + " - " + m_datacombo2.GetText();
  103. if (dlg.DoModal() == IDOK)
  104. Refresh_Data();
  105. }
  106. void CProManDlg::OnModiButton() 
  107. {
  108. // TODO: Add your control notification handler code here
  109. if (m_adodc3.GetRecordset().GetEof()) 
  110. {
  111. MessageBox("请选择要修改的记录");
  112. return;
  113. }
  114. UpdateData(TRUE);
  115. CProEditDlg dlg;
  116. dlg.cPid = m_datagrid.GetItem(0); //记录编号
  117. dlg.iTypeId = atoi(m_datacombo2.GetBoundText());  //产品类型
  118. dlg.cPname = m_datagrid.GetItem(1); //产品名称
  119. dlg.m_Pname = m_datagrid.GetItem(1); 
  120. dlg.m_Ptype = m_datacombo1.GetText() + " - " + m_datacombo2.GetText();
  121. dlg.m_Pstyle = m_datagrid.GetItem(2); //产品规格
  122. dlg.m_Punit = m_datagrid.GetItem(3); //计量单位
  123. dlg.m_Pprice = atof(m_datagrid.GetItem(4)); //参考价格
  124. dlg.m_Plow = atoi(m_datagrid.GetItem(5)); //数量下限
  125. dlg.m_Phigh = atoi(m_datagrid.GetItem(6)); //数量上限
  126. dlg.m_Valid = atoi(m_datagrid.GetItem(7)); //有效期
  127. dlg.m_Alarm = atoi(m_datagrid.GetItem(8)); //警告期
  128. if (dlg.DoModal() == IDOK)
  129. Refresh_Data();
  130. }
  131. void CProManDlg::OnDelButton() 
  132. {
  133. // TODO: Add your control notification handler code here
  134. if (m_adodc3.GetRecordset().GetEof()) 
  135. {
  136. MessageBox("请选择要删除的记录");
  137. return;
  138. }
  139. CString Pid;
  140. Pid = m_datagrid.GetItem(0);
  141. CStoreIn obj;
  142. if (obj.HaveProduct(Pid) == 1) 
  143. {
  144. MessageBox("产品出现在入库单中,不能删除");
  145. return;
  146. }
  147. CTakeOut obj1;
  148. if (obj1.HaveProduct(Pid) == 1)
  149. {
  150. MessageBox("产品出现在出库单中,不能删除");
  151. return;
  152. }
  153. CProInStore obj2;
  154. if (obj2.HaveProduct(Pid) == 1)
  155. {
  156. MessageBox("产品出现在库存产品信息中,不能删除");
  157. return;
  158. }
  159. if (MessageBox("是否删除当前记录","请确定", MB_YESNO) == IDYES)
  160. {
  161. CProduct pr;
  162. pr.sql_delete(Pid);
  163. Refresh_Data();
  164. }
  165. }
  166. BOOL CProManDlg::OnInitDialog() 
  167. {
  168. CDialog::OnInitDialog();
  169. // TODO: Add extra initialization here
  170. Refresh_Data();
  171. return TRUE;  // return TRUE unless you set the focus to a control
  172.               // EXCEPTION: OCX Property Pages should return FALSE
  173. }