using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace SelM { public partial class Xs_SellOutDayReportDlg : Form { public Xs_SellOutDayReportDlg() { InitializeComponent(); } public int IsOk; private void cmdHBMaterID_Click(object sender, EventArgs e) { BLL.ClsBaseSelect.SetTextByMaterial(txtHBMaterID); if (txtHEMaterID.Text.Trim() == "") { txtHEMaterID.Text = txtHBMaterID.Text; } } private void cmdHEMaterID_Click(object sender, EventArgs e) { BLL.ClsBaseSelect.SetTextByMaterial(txtHEMaterID); } private void cmdHBCusID_Click(object sender, EventArgs e) { BLL.ClsBaseSelect.SetTextByCus(txtHBCusID); if (txtHECusID.Text.Trim() == "") { txtHECusID.Text = txtHBCusID.Text; } } private void cmdHECusID_Click(object sender, EventArgs e) { BLL.ClsBaseSelect.SetTextByCus(txtHECusID); } private void cmdHBEmpID_Click(object sender, EventArgs e) { BLL.ClsBaseSelect.SetTextByEmp(txtHBEmpID); if (txtHEEmpID.Text.Trim() == "") { txtHEEmpID.Text = txtHBEmpID.Text; } } private void cmdHEEmpID_Click(object sender, EventArgs e) { BLL.ClsBaseSelect.SetTextByEmp(txtHEEmpID); } private void cmdCancel_Click(object sender, EventArgs e) { IsOk = 2; this.Visible = false; } private void cmdOK_Click(object sender, EventArgs e) { DBUtility.Gy_BaseFun.SaveControlInfo(groupBox2, this.Name); IsOk = 1; this.Visible = false; } private void Xs_SellOutDayReportDlg_Activated(object sender, EventArgs e) { IsOk =0; } private void txtHBCusID_TextChanged(object sender, EventArgs e) { } private void Xs_SellOutDayReportDlg_LocationChanged(object sender, EventArgs e) { } private void Xs_SellOutDayReportDlg_Load(object sender, EventArgs e) { } private void chkHSumFlag_CheckedChanged(object sender, EventArgs e) { if (chkHSumFlag.Checked) { lblHSumType.Visible = true; cmbHSumType.Visible = true; } else { lblHSumType.Visible = false; cmbHSumType.Visible = false; } } private void txtHBCurID_TextChanged(object sender, EventArgs e) { } private void cmdHBCurID_Click(object sender, EventArgs e) { BLL.ClsBaseSelect.SetTextByCur(txtHBCurID, true); if (txtHECurID.Text.Trim() == "") { txtHECurID.Text = txtHBCurID.Text; } } private void cmdHECurID_Click(object sender, EventArgs e) { BLL.ClsBaseSelect.SetTextByCur(txtHECurID, true); } private void timer1_Tick(object sender, EventArgs e) { timer1.Enabled = false; dtpHBDate.Value = DateTime.Today.AddDays(-30); dtpHEDate.Value = DateTime.Today; cmbHSumType.SelectedIndex = 0; cmbHPZ.SelectedIndex = 0; DBUtility.Gy_BaseFun.GetControlInfo(groupBox2, this.Name); } } }