ConditionQueryIntentClientSamllForm.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.Customers.SetSmallForm
  11. {
  12. public partial class ConditionQueryIntentClientSamllForm : LYFZ.Software.UI.Customers.SetSmallForm.ConditionQueryIntentClientSamllForm
  13. {
  14. public ConditionQueryIntentClientSamllForm()
  15. {
  16. this.Load += ConditionQueryIntentClientSamllForm_Load;
  17. this.Shown += ConditionQueryIntentClientSamllForm_Shown;
  18. this.chkDateTime.Click += chkDateTime_Click;
  19. this.btnSaveed.Click += btnSaveed_Click;
  20. this.btnCancel.Click += btnCancel_Click;
  21. }
  22. /// <summary>
  23. /// 是否保存
  24. /// </summary>
  25. public bool IsSaveed = false;
  26. /// <summary>
  27. /// 选择的项目
  28. /// </summary>
  29. public Hashtable htData = new Hashtable();
  30. /// <summary>
  31. /// 窗体加载事件
  32. /// </summary>
  33. /// <param name="sender"></param>
  34. /// <param name="e"></param>
  35. void ConditionQueryIntentClientSamllForm_Load(object sender, EventArgs e)
  36. {
  37. this.dtpStart.Enabled = false;
  38. this.dtpEnd.Enabled = false;
  39. }
  40. /// <summary>
  41. /// 窗体加载事件
  42. /// </summary>
  43. /// <param name="sender"></param>
  44. /// <param name="e"></param>
  45. void ConditionQueryIntentClientSamllForm_Shown(object sender, EventArgs e)
  46. {
  47. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevPeopleFollow, IsFirstNodeNull: true);
  48. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevCreatePerson, IsFirstNodeNull: true);
  49. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevIntentSource, StrBindData: "非意向客户,录入意向客户,订单意向客户", IsFirstNodeNull: true);
  50. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevIntentType, StrBindData: "0:婚纱套系,1:儿童套系,2:写真套系,3:服务套系,4:婚庆套系", IsFirstNodeNull: true, IsSplit: true);
  51. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBABEAGFDDAHIHJD", this.cmbtreevIntentExtent, IsFirstNodeNull: true);
  52. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAF", this.cmbtreevClientSource);//, strHideFiled: "BFACBABGBGBJGDHIE,BFAFBCBADBDCABFDD,AAAAABT");
  53. }
  54. /// <summary>
  55. /// 选择时间
  56. /// </summary>
  57. /// <param name="sender"></param>
  58. /// <param name="e"></param>
  59. void chkDateTime_Click(object sender, EventArgs e)
  60. {
  61. if (this.chkDateTime.Checked)
  62. {
  63. this.dtpStart.Enabled = true;
  64. this.dtpEnd.Enabled = true;
  65. }
  66. else
  67. {
  68. this.dtpStart.Enabled = false;
  69. this.dtpEnd.Enabled = false;
  70. }
  71. }
  72. /// <summary>
  73. /// 保存
  74. /// </summary>
  75. /// <param name="sender"></param>
  76. /// <param name="e"></param>
  77. void btnSaveed_Click(object sender, EventArgs e)
  78. {
  79. if (!string.IsNullOrEmpty(this.cmbtreevPeopleFollow.Text.ToString().Trim()) && this.cmbtreevPeopleFollow.Tag != null)
  80. { htData["PeopleFollow"] = this.cmbtreevPeopleFollow.Tag.ToString().Trim(); }
  81. if (!string.IsNullOrEmpty(this.cmbtreevCreatePerson.Text.ToString().Trim()) && this.cmbtreevCreatePerson.Tag!=null)
  82. { htData["CreatePerson"] = this.cmbtreevCreatePerson.Tag.ToString().Trim(); }
  83. if (!string.IsNullOrEmpty(this.cmbtreevIntentSource.Text.Trim()))
  84. { htData["IntentSource"] = this.cmbtreevIntentSource.Text.Trim(); }
  85. if (!string.IsNullOrEmpty(this.cmbtreevIntentType.Text.Trim()))
  86. { htData["IntentType"] = this.cmbtreevIntentType.Text.Trim(); }
  87. if (!string.IsNullOrEmpty(this.txtRegion.Text.Trim()))
  88. { htData["ClientRegion"] = this.txtRegion.Text.Trim(); }
  89. if (!string.IsNullOrEmpty(this.cmbtreevIntentExtent.Text.Trim()))
  90. { htData["IntentExtent"] = this.cmbtreevIntentExtent.Text.Trim(); }
  91. if (!string.IsNullOrEmpty(this.cmbtreevClientSource.Text.Trim()))
  92. { htData["ClientSource"] = this.cmbtreevClientSource.Text.Trim(); }
  93. if(this.chkDateTime.Checked)
  94. {
  95. if (string.IsNullOrEmpty(this.dtpStart.DateValue.Trim()))
  96. { MessageBoxCustom.Show("开始时间不能为空"); return; }
  97. if (string.IsNullOrEmpty(this.dtpEnd.DateValue.Trim()))
  98. { MessageBoxCustom.Show("结束时间不能为空"); return; }
  99. if (!string.IsNullOrEmpty(this.dtpStart.DateValue.Trim()))
  100. { htData["DateTimeStart"] = this.dtpStart.DateValue.Trim(); }
  101. if (!string.IsNullOrEmpty(this.dtpEnd.Text.Trim()))
  102. { htData["DateTimeEnd"] = this.dtpEnd.Text.Trim(); }
  103. }
  104. this.IsSaveed = true;
  105. this.Close();
  106. }
  107. /// <summary>
  108. /// 取消
  109. /// </summary>
  110. /// <param name="sender"></param>
  111. /// <param name="e"></param>
  112. void btnCancel_Click(object sender, EventArgs e)
  113. {
  114. this.Close();
  115. }
  116. }
  117. }