锐腾搅拌上料功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

175 lines
6.3 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using DevExpress.XtraEditors;
  9. using ICSSoft.Base.Config.AppConfig;
  10. using System.Data.Linq;
  11. using System.Linq;
  12. using ICSSoft.Base.Language.Tool;
  13. using System.Reflection;
  14. using ICSSoft.Base.Config.DBHelper;
  15. using ICSSoft.Base.ReferForm;
  16. using ICSSoft.Base.Report;
  17. using ICSSoft.Base.ReferForm.AppReferForm;
  18. using ICSSoft.Frame.Data.Entity;
  19. using ICSSoft.Frame.Data.BLL;
  20. namespace ICSSoft.Frame.APP
  21. {
  22. public partial class FormDCTAdd : DevExpress.XtraEditors.XtraForm
  23. {
  24. String guid = "";
  25. ICSDCT entity = new ICSDCT();
  26. #region 构造函数
  27. public FormDCTAdd()
  28. {
  29. InitializeComponent();
  30. }
  31. public FormDCTAdd(String id)
  32. {
  33. InitializeComponent();
  34. guid = id;
  35. }
  36. #endregion
  37. #region 关闭 退出
  38. private void btnClose_Click(object sender, EventArgs e)
  39. {
  40. this.Close();
  41. }
  42. #endregion
  43. #region 移动窗体
  44. private const int WM_NCHITTEST = 0x84;
  45. private const int HTCLIENT = 0x1;
  46. private const int HTCAPTION = 0x2;
  47. //首先必须了解Windows的消息传递机制,当有鼠标活动消息时,
  48. //系统发送WM_NCHITTEST 消息给窗体作为判断消息发生地的根据。 nchittest
  49. //假如你点击的是标题栏,窗体收到的消息值就是 HTCAPTION ,
  50. //同样地,若接受到的消息是 HTCLIENT,说明用户点击的是客户区,也就是鼠标消息发生在客户区。
  51. //重写窗体,使窗体可以不通过自带标题栏实现移动
  52. protected override void WndProc(ref Message m)
  53. {
  54. //当重载窗体的 WndProc 方法时,可以截获 WM_NCHITTEST 消息并改些该消息,
  55. //当判断鼠标事件发生在客户区时,改写改消息,发送 HTCAPTION 给窗体,
  56. //这样,窗体收到的消息就时 HTCAPTION ,在客户区通过鼠标来拖动窗体就如同通过标题栏来拖动一样。
  57. //注意:当你重载 WndProc 并改写鼠标事件后,整个窗体的鼠标事件也就随之改变了。
  58. switch (m.Msg)
  59. {
  60. case WM_NCHITTEST:
  61. base.WndProc(ref m);
  62. if ((int)m.Result == HTCLIENT)
  63. m.Result = (IntPtr)HTCAPTION;
  64. return;
  65. }
  66. //拦截双击标题栏、移动窗体的系统消息
  67. if (m.Msg != 0xA3)
  68. {
  69. base.WndProc(ref m);
  70. }
  71. }
  72. #endregion
  73. //#region 存货编码按钮
  74. //private void txtItemCode_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e)
  75. //{
  76. // ButtonEdit btn = (ButtonEdit)sender;
  77. // string sql = "select distinct ItemCode as [存货编码], ItemName as [存货名称] from ICSItemLot with(nolock) WHERE 1=1";
  78. // //object obj = AppConfig.InvokeWebservice(AppConfig.BaseServiceUri, "WebBaseService", "BaseService", "GetHuaRongErpConnectString", new object[] { });
  79. // //if (obj == null)
  80. // //{
  81. // // ICSBaseSimpleCode.AppshowMessageBox(1, "ERP数据库连接取得失败!");
  82. // //}
  83. // DataTable data = DBHelper.ExecuteDataset(AppConfig.AppConnectString.ToString(), CommandType.Text, sql).Tables[0];
  84. // FormDataRefer reForm = new FormDataRefer();
  85. // reForm.FormTitle = "产品信息";
  86. // DataTable menuData = data;
  87. // reForm.DataSource = menuData;
  88. // reForm.MSelectFlag = false;
  89. // reForm.RowIndexWidth = 35;
  90. // reForm.HideCols.Add("ID");
  91. // reForm.FormWidth = 500;
  92. // reForm.FormHeight = 500;
  93. // reForm.FilterKey = btn.Text; //grvDetail.GetRowCellValue(grvDetail.FocusedRowHandle, grvDetail.FocusedColumn).ToString().Trim();
  94. // if (reForm.ShowDialog() == DialogResult.OK)
  95. // {
  96. // DataTable retData = reForm.ReturnData;
  97. // foreach (DataRow dr in retData.Rows)
  98. // {
  99. // txtItemCode.Text = dr["存货编码"].ToString();
  100. // txtItemName.Text = dr["存货名称"].ToString();
  101. // }
  102. // }
  103. //}
  104. //#endregion
  105. #region 新增 修改
  106. private void save_Click(object sender, EventArgs e)
  107. {
  108. if (txtICSDCTCODE.Text.Trim() == "")
  109. {
  110. ICSBaseSimpleCode.AppshowMessageBox("DCT代码不能为空!");
  111. }
  112. entity.DCTCODE = txtICSDCTCODE.Text.Trim();
  113. entity.DCTDESC = txtDCTESC.Text.Trim();
  114. entity.MUSER = AppConfig.UserId;
  115. entity.MUSERName = AppConfig.UserName;
  116. entity.MTIME = Convert.ToDateTime(AppConfig.GetSeverDateTime("yyyy-MM-dd hh:mm:ss").ToString());
  117. try
  118. {
  119. ICSDCTBLL.AddandEdit(entity, AppConfig.AppConnectString);
  120. this.Close();
  121. ICSBaseSimpleCode.AppshowMessageBox("操作成功");
  122. }
  123. catch (Exception ex)
  124. {
  125. ICSBaseSimpleCode.AppshowMessageBox(ex.Message);
  126. }
  127. }
  128. #endregion
  129. #region 取消
  130. private void can_Click(object sender, EventArgs e)
  131. {
  132. this.Close();
  133. }
  134. #endregion
  135. #region 页面加载
  136. private void FormICSItenLotAdd_Load(object sender, EventArgs e)
  137. {
  138. if (guid != "")
  139. {
  140. lblTitle.Text = "DCT指令修改";
  141. txtICSDCTCODE.Properties.ReadOnly = true;
  142. entity = ICSDCTBLL.select(guid, AppConfig.AppConnectString);
  143. txtICSDCTCODE.Text = entity.DCTCODE;
  144. txtDCTESC.Text = entity.DCTDESC;
  145. txtMUSER.Text = entity.MUSERName;
  146. MTIME.Text = Convert.ToDateTime(entity.MTIME).ToString();
  147. }
  148. else {
  149. lblTitle.Text = "DCT指令新增";
  150. txtMUSER.Text = AppConfig.UserName;
  151. MTIME.Text = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  152. }
  153. }
  154. #endregion
  155. }
  156. }