123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- 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.Customers.SetSmallForm
- {
- public partial class ConditionQueryIntentClientSamllForm : LYFZ.Software.UI.Customers.SetSmallForm.ConditionQueryIntentClientSamllForm
- {
- public ConditionQueryIntentClientSamllForm()
- {
- this.Load += ConditionQueryIntentClientSamllForm_Load;
- this.Shown += ConditionQueryIntentClientSamllForm_Shown;
- this.chkDateTime.Click += chkDateTime_Click;
- this.btnSaveed.Click += btnSaveed_Click;
- this.btnCancel.Click += btnCancel_Click;
- }
- /// <summary>
- /// 是否保存
- /// </summary>
- public bool IsSaveed = false;
- /// <summary>
- /// 选择的项目
- /// </summary>
- public Hashtable htData = new Hashtable();
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void ConditionQueryIntentClientSamllForm_Load(object sender, EventArgs e)
- {
- this.dtpStart.Enabled = false;
- this.dtpEnd.Enabled = false;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void ConditionQueryIntentClientSamllForm_Shown(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevPeopleFollow, IsFirstNodeNull: true);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevCreatePerson, IsFirstNodeNull: true);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevIntentSource, StrBindData: "非意向客户,录入意向客户,订单意向客户", IsFirstNodeNull: true);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevIntentType, StrBindData: "0:婚纱套系,1:儿童套系,2:写真套系,3:服务套系,4:婚庆套系", IsFirstNodeNull: true, IsSplit: true);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBABEAGFDDAHIHJD", this.cmbtreevIntentExtent, IsFirstNodeNull: true);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAF", this.cmbtreevClientSource);//, strHideFiled: "BFACBABGBGBJGDHIE,BFAFBCBADBDCABFDD,AAAAABT");
- }
- /// <summary>
- /// 选择时间
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void chkDateTime_Click(object sender, EventArgs e)
- {
- if (this.chkDateTime.Checked)
- {
- this.dtpStart.Enabled = true;
- this.dtpEnd.Enabled = true;
- }
- else
- {
- this.dtpStart.Enabled = false;
- this.dtpEnd.Enabled = false;
- }
- }
- /// <summary>
- /// 保存
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnSaveed_Click(object sender, EventArgs e)
- {
- if (!string.IsNullOrEmpty(this.cmbtreevPeopleFollow.Text.ToString().Trim()) && this.cmbtreevPeopleFollow.Tag != null)
- { htData["PeopleFollow"] = this.cmbtreevPeopleFollow.Tag.ToString().Trim(); }
- if (!string.IsNullOrEmpty(this.cmbtreevCreatePerson.Text.ToString().Trim()) && this.cmbtreevCreatePerson.Tag!=null)
- { htData["CreatePerson"] = this.cmbtreevCreatePerson.Tag.ToString().Trim(); }
- if (!string.IsNullOrEmpty(this.cmbtreevIntentSource.Text.Trim()))
- { htData["IntentSource"] = this.cmbtreevIntentSource.Text.Trim(); }
- if (!string.IsNullOrEmpty(this.cmbtreevIntentType.Text.Trim()))
- { htData["IntentType"] = this.cmbtreevIntentType.Text.Trim(); }
- if (!string.IsNullOrEmpty(this.txtRegion.Text.Trim()))
- { htData["ClientRegion"] = this.txtRegion.Text.Trim(); }
- if (!string.IsNullOrEmpty(this.cmbtreevIntentExtent.Text.Trim()))
- { htData["IntentExtent"] = this.cmbtreevIntentExtent.Text.Trim(); }
- if (!string.IsNullOrEmpty(this.cmbtreevClientSource.Text.Trim()))
- { htData["ClientSource"] = this.cmbtreevClientSource.Text.Trim(); }
- if(this.chkDateTime.Checked)
- {
- if (string.IsNullOrEmpty(this.dtpStart.DateValue.Trim()))
- { MessageBoxCustom.Show("开始时间不能为空"); return; }
- if (string.IsNullOrEmpty(this.dtpEnd.DateValue.Trim()))
- { MessageBoxCustom.Show("结束时间不能为空"); return; }
- if (!string.IsNullOrEmpty(this.dtpStart.DateValue.Trim()))
- { htData["DateTimeStart"] = this.dtpStart.DateValue.Trim(); }
- if (!string.IsNullOrEmpty(this.dtpEnd.Text.Trim()))
- { htData["DateTimeEnd"] = this.dtpEnd.Text.Trim(); }
- }
- this.IsSaveed = true;
- this.Close();
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnCancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|