锐腾搅拌上料功能
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.

201 lines
7.2 KiB

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using DevExpress.XtraEditors;
using ICSSoft.Frame.WorkPoint.Entity;
using ICSSoft.Frame.WorkPoint.BLL;
using ICSSoft.Base.Config.AppConfig;
using ICSSoft.Base.Config.DBHelper;
using System.Text.RegularExpressions;
using ICSSoft.Frame.Data.Entity;
using ICSSoft.Base.ReferForm.AppReferForm;
using ICSSoft.Frame.Data.BLL;
using ICSSoft.Frame.Helper;
namespace ICSSoft.Frame.APP
{
public partial class FromICSDateDiffAdd : DevExpress.XtraEditors.XtraForm
{
string guid = "";
/// <summary>
/// add new
/// </summary>
public FromICSDateDiffAdd()
{
InitializeComponent();
InitWeek();
}
/// <summary>
/// edit
/// </summary>
/// <param name="cPersonCode"></param>
public FromICSDateDiffAdd(string id)
{
InitializeComponent();
this.guid = id;
InitWeek();
SearchData(id);
}
void InitWeek()
{
cboWeekDayName.Properties.Items.Clear();
string[] ww = new string[]{
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六"
};
cboWeekDayName.Properties.Items.AddRange(ww);
cboWeekDayName.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
}
void SearchData(string id)
{
if (id == "")
{
chkAVA.Checked = true;
txtMTIME.Text = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
txtMUSERName.Text = AppConfig.UserName;
return;
}
string sql = @"SELECT NAME,WEEKDAYNAME,BEGINTIME,ENDTIME,Available,MUSERName,MTIME FROM [ICSDateDiff] WHERE ID='" + id + "'";
DataTable dt = DBHelper.ExecuteDataset(AppConfig.AppConnectString, CommandType.Text, sql).Tables[0];
if (dt.Rows.Count == 0)
{
throw new Exception("此条数据已被删除");
}
txtName.Text = dt.Rows[0]["NAME"].ToString();
cboWeekDayName.Text = dt.Rows[0]["WEEKDAYNAME"].ToString();
txtBeginTime.EditValue = dt.Rows[0]["BEGINTIME"].ToString();
txtEndTime.EditValue = dt.Rows[0]["ENDTIME"].ToString();
chkAVA.Checked = Convert.ToBoolean(dt.Rows[0]["Available"]);
txtMUSERName.Text = dt.Rows[0]["MUSERName"].ToString();
txtMTIME.Text = dt.Rows[0]["MTIME"].ToString();
}
#region 新增 修改
private void btnOK_Click(object sender, EventArgs e)
{
if (txtName.Text.Trim() == "")
{
ICSBaseSimpleCode.AppshowMessageBox("名称不能为空");
return;
}
if (cboWeekDayName.Text.Trim() == "")
{
ICSBaseSimpleCode.AppshowMessageBox("必须选择是周几");
return;
}
if (txtBeginTime.Text.Trim() == "")
{
ICSBaseSimpleCode.AppshowMessageBox("开始时间不能为空");
return;
}
if (txtEndTime.Text.Trim() == "")
{
ICSBaseSimpleCode.AppshowMessageBox("结束时间不能为空");
return;
}
DevExpress.Utils.WaitDialogForm _wait = new DevExpress.Utils.WaitDialogForm("正在执行...请稍等...");
_wait.Show();
try
{
string[] bt = txtBeginTime.Text.Split(':');
string[] et = txtEndTime.Text.Split(':');
ICSDateDiff info = new ICSDateDiff();
info.ID = guid;
info.NAME = txtName.Text.Trim();
info.WEEKDAYNAME = cboWeekDayName.Text;
info.BEGINTIME = new TimeSpan(Convert.ToInt32(bt[0]), Convert.ToInt32(bt[1]), Convert.ToInt32(bt[2]));
info.ENDTIME = new TimeSpan(Convert.ToInt32(et[0]), Convert.ToInt32(et[1]), Convert.ToInt32(et[2]));
if (info.BEGINTIME > info.ENDTIME)
{
ICSBaseSimpleCode.AppshowMessageBox("开始时间必须<结束时间");
return;
}
info.MTIME = DateTime.Now;
info.MUSERName = AppConfig.UserName;
info.TYPE = "RPS";
info.Available = chkAVA.Checked;
info.WorkPoint = AppConfig.WorkPointCode;
ICSDateDiffBLL.Edit(info, AppConfig.AppConnectString);
this.Close();
_wait.Close();
this.DialogResult = DialogResult.OK;
}
catch (Exception ex)
{
_wait.Close();
ICSBaseSimpleCode.AppshowMessageBox(ex.Message);
}
}
#endregion
#region 移动窗体
private const int WM_NCHITTEST = 0x84;
private const int HTCLIENT = 0x1;
private const int HTCAPTION = 0x2;
//首先必须了解Windows的消息传递机制,当有鼠标活动消息时,
//系统发送WM_NCHITTEST 消息给窗体作为判断消息发生地的根据。 nchittest
//假如你点击的是标题栏,窗体收到的消息值就是 HTCAPTION ,
//同样地,若接受到的消息是 HTCLIENT,说明用户点击的是客户区,也就是鼠标消息发生在客户区。
//重写窗体,使窗体可以不通过自带标题栏实现移动
protected override void WndProc(ref Message m)
{
//当重载窗体的 WndProc 方法时,可以截获 WM_NCHITTEST 消息并改些该消息,
//当判断鼠标事件发生在客户区时,改写改消息,发送 HTCAPTION 给窗体,
//这样,窗体收到的消息就时 HTCAPTION ,在客户区通过鼠标来拖动窗体就如同通过标题栏来拖动一样。
//注意:当你重载 WndProc 并改写鼠标事件后,整个窗体的鼠标事件也就随之改变了。
switch (m.Msg)
{
case WM_NCHITTEST:
base.WndProc(ref m);
if ((int)m.Result == HTCLIENT)
m.Result = (IntPtr)HTCAPTION;
return;
}
//拦截双击标题栏、移动窗体的系统消息
if (m.Msg != 0xA3)
{
base.WndProc(ref m);
}
}
#endregion
#region 关闭
private void btnCancle_Click(object sender, EventArgs e)
{
this.Close();
this.DialogResult = DialogResult.Cancel;
}
private void btnClose_Click(object sender, EventArgs e)
{
this.Close();
this.DialogResult = DialogResult.Cancel;
}
#endregion
private void FromICSDateDiffAdd_Load(object sender, EventArgs e)
{
}
}
}