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_ShouldIncomeReportDlg : Form
|
{
|
public Xs_ShouldIncomeReportDlg()
|
{
|
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;
|
|
//Xs_ShouldIncomeReportDlg oDlgNew = new Xs_ShouldIncomeReportDlg();
|
//ClsPub.set_CopyQuery(this.groupBox2, oDlgNew.groupBox2);
|
//oDlgNew.ShowDialog();
|
}
|
|
private void cmdOK_Click(object sender, EventArgs e)
|
{
|
DBUtility.Gy_BaseFun.SaveControlInfo(groupBox2, this.Name);
|
IsOk = 1;
|
this.Visible = false;
|
}
|
|
private void Xs_ShouldIncomeReportDlg_Activated(object sender, EventArgs e)
|
{
|
IsOk =0;
|
}
|
|
private void txtHBCusID_TextChanged(object sender, EventArgs e)
|
{
|
|
}
|
|
private void Xs_ShouldIncomeReportDlg_LocationChanged(object sender, EventArgs e)
|
{
|
|
}
|
|
private void Xs_ShouldIncomeReportDlg_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 timer1_Tick(object sender, EventArgs e)
|
{
|
timer1.Enabled = false;
|
dtpHBDate.Value = DateTime.Today.AddDays(-30);
|
dtpHEDate.Value = DateTime.Today;
|
cmbHSumType.SelectedIndex = 0;
|
DBUtility.Gy_BaseFun.GetControlInfo(groupBox2, this.Name);
|
}
|
|
}
|
}
|