using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace LYFZ.Software.MainBusiness.FinancialManagement.SetSmallForm
{
public partial class ConditionQueryPieceCommissionSetSmallForm : LYFZ.Software.UI.FinancialManagement.SetSmallForm.ConditionQueryPieceCommissionSetSmallForm
{
public ConditionQueryPieceCommissionSetSmallForm()
{
this.Shown += ConditionQueryPieceCommissionSetSmallForm_Shown;
this.btnOK.Click += btnOK_Click;
this.btnCancel.Click += btnCancel_Click;
}
///
/// 是否保存
///
public bool IsSaveed = false;
///
/// 确定的选择数据
///
public Hashtable htData = new Hashtable();
///
/// 窗体加载事件
///
///
///
void ConditionQueryPieceCommissionSetSmallForm_Shown(object sender, EventArgs e)
{
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevCommissionName, IsFirstNodeNull: true);
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBBBABBEBAIHGDCB", this.cmbtreevWorkContent, IsFirstNodeNull: true);
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PackagesCategoryAndName(this.cmbtreevSeriesName, "AAAAAAB", IsFirstNodeNull: true);
}
///
/// 确定
///
///
///
void btnOK_Click(object sender, EventArgs e)
{
if (!string.IsNullOrEmpty(this.cmbtreevCommissionName.Text.Trim()) && this.cmbtreevCommissionName.Tag != null)
{ this.htData["CommissionName"] = this.cmbtreevCommissionName.Tag.ToString().Trim(); }
if (!string.IsNullOrEmpty(this.cmbtreevSeriesName.Text.Trim()))
{ this.htData["SeriesName"] = this.cmbtreevSeriesName.Text.Trim(); }
if (!string.IsNullOrEmpty(this.cmbtreevWorkContent.Text.Trim()) && this.cmbtreevWorkContent.Tag != null)
{ this.htData["WorkContent"] = this.cmbtreevWorkContent.Tag.ToString().Trim(); }
this.IsSaveed = true;
this.Close();
}
///
/// 取消
///
///
///
void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}
}
}