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_ContractReportDlg : Form
|
{
|
public Xs_ContractReportDlg()
|
{
|
InitializeComponent();
|
}
|
|
public int IsOk;
|
|
private void cmdBCurID_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 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_ContractReportDlg_Activated(object sender, EventArgs e)
|
{
|
IsOk =0;
|
}
|
|
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 cmdHBDeptID_Click(object sender, EventArgs e)
|
{
|
BLL.ClsBaseSelect.SetTextByDept(txtHBDeptID);
|
if (txtHEDeptID.Text.Trim() == "")
|
{
|
txtHEDeptID.Text = txtHBDeptID.Text;
|
}
|
}
|
|
private void cmdHEDeptID_Click(object sender, EventArgs e)
|
{
|
BLL.ClsBaseSelect.SetTextByDept(txtHEDeptID);
|
}
|
|
private void Xs_ContractReportDlg_Load(object sender, EventArgs e)
|
{
|
|
}
|
|
private void timer1_Tick(object sender, EventArgs e)
|
{
|
timer1.Enabled = false;
|
dtpHBDate.Value = DateTime.Today.AddDays(-30);
|
dtpHEDate.Value = DateTime.Today;
|
DBUtility.Gy_BaseFun.GetControlInfo(groupBox2, this.Name);
|
}
|
|
}
|
}
|