FrmOldCustomerOtheEdit.cs 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. using LYFZ.ComponentLibrary;
  2. using LYFZ.DAL;
  3. using LYFZ.Model;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.ComponentModel;
  7. using System.Data;
  8. using System.Drawing;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Windows.Forms;
  12. namespace LYFZ.Software.MainBusiness.Customers.OldCustomer
  13. {
  14. public partial class FrmOldCustomerOtheEdit : LYFZ.Software.UI.Customers.OldCustomer.FrmOldCustomerOtheEdit
  15. {
  16. /// <summary>
  17. /// 客户组类型 1 为老客户 2 为意向客户
  18. /// </summary>
  19. public int type;
  20. public int ID;
  21. Boolean bl = false;
  22. /// <summary>
  23. /// 存放客户资料的Model泛型
  24. /// </summary>
  25. List<Model_ErpCustomer> GetModelList = new List<Model_ErpCustomer>();
  26. public FrmOldCustomerOtheEdit()
  27. {
  28. this.FormClosed += FrmOldCustomerOtheEdit_FormClosed;
  29. this.Shown += FrmOldCustomerDressAdd_Shown;
  30. this.btnAdding.Click += btnAdding_Click;
  31. this.dgvData.CellDoubleClick += dgvData_CellContentDoubleClick;
  32. this.chkLKH.Click += chkLKH_Click;
  33. this.chkPYJS.Click += chkPYJS_Click;
  34. this.chkQT.Click += chkQT_Click;
  35. this.btnDelete.Click += btnDelete_Click;
  36. this.btnClear.Click += btnClear_Click;
  37. this.btnlevel.Click += btnlevel_Click;
  38. this.btnRegion.Click += btnRegion_Click;
  39. this.btnSave.Click += btnSave_Click;
  40. this.btnQQCall.Click += btnQQCall_Click;
  41. this.btnDial.Click += btnDial_Click;
  42. this.txtCus_FixedPhone.KeyPress += txtCus_FixedPhone_KeyPress;
  43. this.txtHistory_Money.KeyPress += txtHistory_Money_KeyPress;
  44. this.txtHistory_OrderTime.KeyPress += txtHistory_OrderTime_KeyPress;
  45. }
  46. /// <summary>
  47. /// 打电话
  48. /// </summary>
  49. /// <param name="sender"></param>
  50. /// <param name="e"></param>
  51. void btnDial_Click(object sender, EventArgs e)
  52. {
  53. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.PhoneCall(this.txtCus_Telephone);
  54. }
  55. /// <summary>
  56. /// QQ呼叫
  57. /// </summary>
  58. /// <param name="sender"></param>
  59. /// <param name="e"></param>
  60. void btnQQCall_Click(object sender, EventArgs e)
  61. {
  62. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.QQCall(this.txtCus_QQ.Text.Trim());
  63. }
  64. /// <summary>
  65. /// 窗体加载事件
  66. /// </summary>
  67. /// <param name="sender"></param>
  68. /// <param name="e"></param>
  69. void FrmOldCustomerDressAdd_Shown(object sender, EventArgs e)
  70. {
  71. //客户区域,客户来源
  72. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAC", this.cmbCus_Region, strHideFiled: "");
  73. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAF", this.cmbCus_CustomerSource, strHideFiled: "BFACBABGBGBJGDHIE,BFAFBCBADBDCABFDD");
  74. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BFADBIBEFCFCIDCDG", this.cmbtreevlevel, IsFirstNodeNull: true);
  75. }
  76. /// <summary>
  77. /// 关闭窗体
  78. /// </summary>
  79. /// <param name="sender"></param>
  80. /// <param name="e"></param>
  81. void FrmOldCustomerOtheEdit_FormClosed(object sender, FormClosedEventArgs e)
  82. {
  83. if (bl)
  84. { this.DialogResult = DialogResult.OK; }
  85. }
  86. /// <summary>
  87. /// 修改添加到人员
  88. /// </summary>
  89. /// <param name="sender"></param>
  90. /// <param name="e"></param>
  91. void dgvData_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e)
  92. {
  93. if (this.dgvData.SelectedRows.Count > 0)
  94. {
  95. //dgv修改操作
  96. foreach (Model_ErpCustomer model in GetModelList)
  97. {
  98. if (model.Cus_CustomerNumber == this.dgvData.CurrentRow.Cells["CusCustomerNumber"].Value.ToString().Trim())
  99. {
  100. FrmAddContacts frm = new FrmAddContacts();
  101. //状态
  102. frm.Zhuangtai = "添加";
  103. //将本条数据传到另一个窗体
  104. frm.model = model;
  105. if (frm.ShowDialog() == DialogResult.OK)
  106. {
  107. //先移除
  108. GetModelList.Remove(model);
  109. this.dgvData.Rows.Remove(this.dgvData.CurrentRow);
  110. //后添加
  111. Adddgvdata(frm.model);
  112. }
  113. break;
  114. }
  115. }
  116. }
  117. }
  118. /// <summary>
  119. /// 删除
  120. /// </summary>
  121. /// <param name="sender"></param>
  122. /// <param name="e"></param>
  123. void btnDelete_Click(object sender, EventArgs e)
  124. {
  125. if (this.dgvData.SelectedRows.Count > 0)
  126. {
  127. if (MessageBoxCustom.Show("是否删除?", "删除", MessageBoxButtons.YesNo) == DialogResult.Yes)
  128. {
  129. foreach (Model_ErpCustomer model in GetModelList)
  130. {
  131. //判断获取当前选中的数据,并删除
  132. if (model.Cus_CustomerNumber == this.dgvData.CurrentRow.Cells["CusCustomerNumber"].Value.ToString().Trim())
  133. {
  134. //删除去list里面移除
  135. this.GetModelList.Remove(model);
  136. //去dgv移除
  137. this.dgvData.Rows.Remove(this.dgvData.CurrentRow);
  138. return;
  139. }
  140. }
  141. }
  142. }
  143. else
  144. { MessageBoxCustom.Show("请选中要删除的内容"); }
  145. }
  146. /// <summary>
  147. /// 保存
  148. /// </summary>
  149. /// <param name="sender"></param>
  150. /// <param name="e"></param>
  151. void btnSave_Click(object sender, EventArgs e)
  152. {
  153. LYFZ.BLL.BLL_ErpCustomer bll = new BLL.BLL_ErpCustomer();
  154. LYFZ.BLL.BLL_ErpCustomerGroup GPbll = new BLL.BLL_ErpCustomerGroup();
  155. LYFZ.BLL.BLL_ErpCustomerGroupMembers GMbll = new BLL.BLL_ErpCustomerGroupMembers();
  156. LYFZ.Model.Model_ErpCustomer model = new Model.Model_ErpCustomer();
  157. Model.Model_ErpCustomerGroup modelGP = new Model.Model_ErpCustomerGroup();
  158. Model.Model_ErpCustomerGroupMembers modelGM = new Model.Model_ErpCustomerGroupMembers();
  159. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  160. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  161. //手机号
  162. string StrPhone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtCus_Telephone);
  163. #region 输入不能为空
  164. if (string.IsNullOrEmpty(this.txtCus_Name.Text))
  165. { MessageBoxCustom.Show("客户姓名不能为空"); return; }
  166. if (string.IsNullOrEmpty(StrPhone))
  167. { MessageBoxCustom.Show("客户手机不能为空"); return; }
  168. if (!string.IsNullOrEmpty(StrPhone))
  169. {
  170. if (StrPhone.Length != 11)
  171. { MessageBoxCustom.Show("手机号码必须为11位数!"); return; }
  172. }
  173. if (chkLKH.Checked == false && chkQT.Checked == false && chkPYJS.Checked == false)
  174. { MessageBoxCustom.Show("请选择客户来源"); return; }
  175. int intMasse = this.txtCus_Birthday.CheckDateValue(this.txtCus_Birthday, this.chkHQ_Lunar);
  176. if (intMasse == 1) { MessageBoxCustom.Show("客户生日日期格式输入错误!"); return; }
  177. else if (intMasse == 2)
  178. { MessageBoxCustom.Show("客户生日:" + this.txtCus_Birthday.StrValue.Trim() + "不是公历日期,若要保存请勾上农历!"); return; }
  179. intMasse = this.txtHQ_Birthday.CheckDateValue(this.txtHQ_Birthday, chkHQ_Lunar);
  180. if (intMasse == 1) { MessageBoxCustom.Show("婚期日期日期格式输入错误"); return; }
  181. else if (intMasse == 2)
  182. { MessageBoxCustom.Show("婚期日期:" + this.txtHQ_Birthday.StrValue.Trim() + "不是公历日期,若要保存请勾上农历"); return; }
  183. #endregion
  184. DataTable tblClient = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_Telephone = '" + StrPhone + "'", ShowColumnName: "ID").Tables[0];
  185. if (tblClient.Rows.Count > 0)
  186. { MessageBoxCustom.Show("手机号已存在"); return; }
  187. #region Model
  188. DateTime strTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  189. //客户组表
  190. modelGP.GP_CustomerGroupID = LYFZ.BLL.BLL_ErpCustomer.GetNewClientGroupNumber();
  191. modelGP.GP_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  192. modelGP.GP_GroupType = type;
  193. modelGP.GP_CustomerType = 0;
  194. modelGP.GP_CustomerStatus = "正常";
  195. modelGP.GP_CreateDatetime = strTime;
  196. modelGP.GP_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  197. modelGP.GP_CustomerSource = _CustomerSource();
  198. modelGP.GP_Remark = "";
  199. modelGP.GP_OrderNumber = "";
  200. modelGP.GP_LossReason = "";
  201. modelGP.GP_IntroducerCustomerID = "";
  202. modelGP.GP_DegreeOfIntent = "";
  203. modelGP.GP_BelongsPersonID = "";
  204. clist.Add(GPbll.GetAddCommandInfo(modelGP));
  205. //用户信息表
  206. model.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber();
  207. model.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  208. model.Cus_Type = "";
  209. model.Cus_ServiceType = "other";
  210. model.Cus_Name = LYFZ.BLL.OtherCommonModel.ClearSpecialCharacter(this.txtCus_Name.Text);
  211. model.Cus_NamePinyin = LYFZ.Command.Command_ChineseToPinyin.GetChineseSpellPinyin(model.Cus_Name).ToLower();
  212. if (this.rdoCus_Sex1_1.Checked == true)
  213. { model.Cus_Sex = false; }
  214. else { model.Cus_Sex = true; }
  215. //判断生日是否有填
  216. model.Cus_Birthday = this.txtCus_Birthday.StrValue.Trim();
  217. if (model.Cus_Birthday != "")
  218. {
  219. model.Cus_Zodiac = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(this.txtCus_Birthday.StrValue.Trim(), this.chkCus_Lunar.Checked);
  220. if (chkCus_Lunar.Checked == true)
  221. { model.Cus_BirthdayLunar = "1";
  222. }
  223. else {
  224. model.Cus_BirthdayLunar = "0";
  225. }
  226. }
  227. else
  228. {
  229. model.Cus_Birthday = "";
  230. model.Cus_BirthdayLunar = "";
  231. model.Cus_Zodiac = "";
  232. }
  233. model.Cus_DayForMarriage = this.txtHQ_Birthday.StrValue.Trim();
  234. if (model.Cus_DayForMarriage != "")
  235. {
  236. if (chkHQ_Lunar.Checked == true)
  237. {
  238. model.Cus_DayForMarriageLunar = "1";
  239. }
  240. else {
  241. model.Cus_DayForMarriageLunar = "0";
  242. }
  243. }
  244. else
  245. {
  246. model.Cus_DayForMarriage = "";
  247. model.Cus_DayForMarriageLunar = "";
  248. }
  249. model.Cus_Relations = "";
  250. model.Cus_QQ = this.txtCus_QQ.Text.ToString().Trim();
  251. model.Cus_MicroSignal = this.txtCus_MicroSignal.Text.ToString().Trim();
  252. model.Cus_Telephone = StrPhone;
  253. model.Cus_FixedPhone = this.txtCus_FixedPhone.Text.ToString().Trim();
  254. model.Cus_Region = this.cmbCus_Region.Text.ToString().Trim();
  255. model.Cus_Address = this.txtCus_Address.Text.ToString().Trim();
  256. model.Cus_WorkUnit = this.txtCus_WorkUnit.Text.ToString().Trim();
  257. model.Cus_BabyWeight = "";
  258. model.Cus_BornHospital = "";
  259. model.Cus_CustomerSource = "";
  260. model.Cus_Status = "";
  261. model.Cus_LossReason = "";
  262. model.Cus_DegreeOfIntent = "";
  263. model.Cus_TrackName = "";
  264. model.Cus_Remark = "";
  265. model.Cus_CreateDateTime = strTime;
  266. model.Cus_Grade = this.cmbtreevlevel.Text.Trim();
  267. model.Cus_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  268. clist.Add(bll.GetAddCommandInfo(model));
  269. //成员表
  270. modelGM.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  271. modelGM.GM_CustomerGroupID = modelGP.GP_CustomerGroupID;
  272. modelGM.GM_CustomerID = model.Cus_CustomerNumber;
  273. modelGM.GM_Master = 1;
  274. modelGM.GM_ProtagonistCustomer = 1;
  275. modelGM.GM_RelatedPersonID = model.Cus_CustomerNumber;
  276. modelGM.GM_Relation = "本人";
  277. modelGM.GM_IsOrder = 0;
  278. modelGM.GM_IsOrderNumber = "";
  279. clist.Add(GMbll.GetAddCommandInfo(modelGM));
  280. #endregion
  281. if (dgvData.Rows.Count > 0)
  282. {
  283. Model_ErpCustomerGroupMembers modelGMitem = new Model_ErpCustomerGroupMembers();
  284. foreach (Model_ErpCustomer modelitem in GetModelList)
  285. {
  286. modelGMitem.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  287. modelGMitem.GM_CustomerGroupID = modelGP.GP_CustomerGroupID;
  288. modelGMitem.GM_CustomerID = modelitem.Cus_CustomerNumber;
  289. modelGMitem.GM_Master = 0;
  290. modelGMitem.GM_ProtagonistCustomer = 1;
  291. modelGMitem.GM_RelatedPersonID = model.Cus_CustomerNumber;
  292. modelGMitem.GM_Relation = modelitem.Cus_Relations;
  293. modelGMitem.GM_IsOrder = 0;
  294. modelGMitem.GM_IsOrderNumber = "";
  295. //组表
  296. clist.Add(GMbll.GetAddCommandInfo(modelGMitem));
  297. //客户表
  298. clist.Add(bll.GetAddCommandInfo(modelitem));
  299. }
  300. }
  301. //新增 2015-9-9 老客户历史记录
  302. if (txtHistory_Money.Text != "" && txtHistory_Type.Text != "")
  303. {
  304. Model.Model_OldOrderHistory Model_ooh = new Model_OldOrderHistory();
  305. BLL.BLL_OldOrderHistory bll_ooh = new BLL.BLL_OldOrderHistory();
  306. Model_ooh.History_ID = modelGP.GP_CustomerGroupID;
  307. Model_ooh.History_Type = txtHistory_Type.Text.Trim();
  308. if (txtHistory_Money.Text != "")
  309. {
  310. Model_ooh.History_Money = Convert.ToInt32(txtHistory_Money.Text);
  311. }
  312. else { Model_ooh.History_Money = 0; }
  313. if (this.txtHistory_OrderTime.StrValue != "")
  314. {
  315. if (txtHistory_OrderTime.CheckDateValue(this.txtHistory_OrderTime) != 1)
  316. { Model_ooh.History_OrderTime = Convert.ToDateTime(txtHistory_OrderTime.Text); }
  317. else
  318. { Model_ooh.History_OrderTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  319. }
  320. else { Model_ooh.History_OrderTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  321. Model_ooh.History_CurrentTime = SDateTime.Now;
  322. Model_ooh.History_CurrentID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  323. clist.Add(bll_ooh.GetAddCommandInfo(Model_ooh));
  324. }
  325. if (clist.Count > 0)
  326. {
  327. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) >= 0)
  328. {
  329. bl = true;
  330. DAL_ErpCustomer.UpdateAggregationCustomer(modelGP.GP_CustomerGroupID);
  331. //日志
  332. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.添加客户资料, "添加婚纱版老客户资料客户组:" + modelGP.GP_CustomerGroupID + ",时间:" + SDateTime.Now, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  333. MessageBoxCustom.Show("保存成功");
  334. btnClear_Click(sender, e);
  335. }
  336. else { MessageBoxCustom.Show("保存失败"); }
  337. return;
  338. }
  339. }
  340. /// <summary>
  341. /// 添加人员
  342. /// </summary>
  343. /// <param name="sender"></param>
  344. /// <param name="e"></param>
  345. void btnAdding_Click(object sender, EventArgs e)
  346. {
  347. FrmAddContacts frm = new FrmAddContacts();
  348. //状态
  349. frm.Zhuangtai = "添加";
  350. if (frm.ShowDialog() == DialogResult.OK)
  351. {
  352. //返回一个用户Model
  353. Adddgvdata(frm.model);
  354. }
  355. }
  356. /// <summary>
  357. /// 将添加的人员放入DGV
  358. /// </summary>
  359. /// <param name="addmodel">人员的Model</param>
  360. void Adddgvdata(Model_ErpCustomer addmodel)
  361. {
  362. //人员信息的Model
  363. Model_ErpCustomer modelAdd = addmodel;
  364. //放入List
  365. GetModelList.Add(modelAdd);
  366. #region 赋值
  367. DataGridViewRow dgvr = new DataGridViewRow();
  368. DataGridViewCell cell = null;
  369. //姓名
  370. cell = new DataGridViewTextBoxCell();
  371. cell.Value = modelAdd.Cus_Name;
  372. dgvr.Cells.Add(cell);
  373. //手机号
  374. cell = new DataGridViewTextBoxCell();
  375. cell.Value = modelAdd.Cus_Telephone;
  376. dgvr.Cells.Add(cell);
  377. //QQ
  378. cell = new DataGridViewTextBoxCell();
  379. cell.Value = modelAdd.Cus_QQ;
  380. dgvr.Cells.Add(cell);
  381. //微信号
  382. cell = new DataGridViewTextBoxCell();
  383. cell.Value = modelAdd.Cus_MicroSignal;
  384. dgvr.Cells.Add(cell);
  385. //性别
  386. cell = new DataGridViewTextBoxCell();
  387. cell.Value = modelAdd.Cus_Sex == false ? "男" : "女";
  388. dgvr.Cells.Add(cell);
  389. //地区
  390. cell = new DataGridViewTextBoxCell();
  391. cell.Value = modelAdd.Cus_Region;
  392. dgvr.Cells.Add(cell);
  393. //地址
  394. cell = new DataGridViewTextBoxCell();
  395. cell.Value = modelAdd.Cus_Address;
  396. dgvr.Cells.Add(cell);
  397. //工作单位
  398. cell = new DataGridViewTextBoxCell();
  399. cell.Value = modelAdd.Cus_WorkUnit;
  400. dgvr.Cells.Add(cell);
  401. //生日
  402. cell = new DataGridViewTextBoxCell();
  403. cell.Value = modelAdd.Cus_Birthday;
  404. dgvr.Cells.Add(cell);
  405. //农历
  406. cell = new DataGridViewTextBoxCell();
  407. cell.Value = modelAdd.Cus_BirthdayLunar == "0" ? "公历" : "农历";
  408. dgvr.Cells.Add(cell);
  409. //固定电话
  410. cell = new DataGridViewTextBoxCell();
  411. cell.Value = modelAdd.Cus_FixedPhone;
  412. dgvr.Cells.Add(cell);
  413. //关系
  414. cell = new DataGridViewTextBoxCell();
  415. cell.Value = modelAdd.Cus_Relations;
  416. dgvr.Cells.Add(cell);
  417. //客户编号
  418. cell = new DataGridViewTextBoxCell();
  419. cell.Value = modelAdd.Cus_CustomerNumber;
  420. dgvr.Cells.Add(cell);
  421. #endregion
  422. //添加到dgv内,可做修改
  423. this.dgvData.Rows.Add(dgvr);
  424. }
  425. /// <summary>
  426. /// 清空
  427. /// </summary>
  428. /// <param name="sender"></param>
  429. /// <param name="e"></param>
  430. void btnClear_Click(object sender, EventArgs e)
  431. {
  432. //姓名
  433. this.txtCus_Name.Text = "";
  434. this.txtCus_Address.Text = "";
  435. this.txtCus_Telephone.Text = "";
  436. this.txtCus_Birthday.StrValue = "";
  437. this.chkHQ_Lunar.Checked = false;
  438. this.txtCus_MicroSignal.Text = "";
  439. this.cmbCus_CustomerSource.Text = "";
  440. this.txtCus_QQ.Text = "";
  441. this.txtCus_Address.Text = "";
  442. this.txtCus_FixedPhone.Text = "";
  443. this.chkLKH.Checked = false;
  444. this.chkPYJS.Checked = false;
  445. this.chkQT.Checked = false;
  446. this.txtCus_WorkUnit.Text = "";
  447. this.cmbCus_Region.Text = "";
  448. this.cmbtreevlevel.TextFindTag("");
  449. this.txtHQ_Birthday.Text = "";
  450. this.chkHQ_Lunar.Checked = false;
  451. this.txtHistory_Money.Text = "";
  452. this.txtHistory_OrderTime.StrValue = "";
  453. this.txtHistory_Type.Text = "";
  454. }
  455. /// <summary>
  456. /// 关闭
  457. /// </summary>
  458. /// <param name="sender"></param>
  459. /// <param name="e"></param>
  460. protected override void btnClose_Click(object sender, EventArgs e)
  461. {
  462. this.Close();
  463. }
  464. /// <summary>
  465. /// 设置客户等级
  466. /// </summary>
  467. /// <param name="sender"></param>
  468. /// <param name="e"></param>
  469. void btnlevel_Click(object sender, EventArgs e)
  470. {
  471. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet set = new InitialSet.FrmSystemSet();
  472. set.TypeName = "BFADBIBEFCFCIDCDG";
  473. set.Version = "Version";
  474. if (set.ShowDialog() == DialogResult.OK)
  475. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BFADBIBEFCFCIDCDG", this.cmbtreevlevel); }
  476. }
  477. /// <summary>
  478. /// 设置客户来源
  479. /// </summary>
  480. /// <param name="sender"></param>
  481. /// <param name="e"></param>
  482. protected override void btnCustomerSource_Click(object sender, EventArgs e)
  483. {
  484. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet set = new InitialSet.FrmSystemSet();
  485. set.TypeName = "AAAAAAF";
  486. set.Version = "Version";
  487. if (set.ShowDialog() == DialogResult.OK)
  488. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAF", this.cmbCus_CustomerSource, strHideFiled: "BFACBABGBGBJGDHIE,BFAFBCBADBDCABFDD"); }
  489. }
  490. /// <summary>
  491. /// 设置客户区域
  492. /// </summary>
  493. /// <param name="sender"></param>
  494. /// <param name="e"></param>
  495. protected override void btnRegion_Click(object sender, EventArgs e)
  496. {
  497. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet set = new InitialSet.FrmSystemSet();
  498. set.TypeName = "AAAAAAC";
  499. set.Version = "Version";
  500. if (set.ShowDialog() == DialogResult.OK)
  501. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAC", this.cmbCus_Region, strHideFiled: ""); }
  502. }
  503. /// <summary>
  504. /// 文本框输入
  505. /// </summary>
  506. /// <param name="sender"></param>
  507. /// <param name="e"></param>
  508. void txtCus_FixedPhone_KeyPress(object sender, KeyPressEventArgs e)
  509. {
  510. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  511. { e.Handled = true; }
  512. }
  513. /// <summary>
  514. /// 文本框输入
  515. /// </summary>
  516. /// <param name="sender"></param>
  517. /// <param name="e"></param>
  518. protected override void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  519. {
  520. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  521. { e.Handled = true; }
  522. }
  523. /// <summary>
  524. /// 文本框输入
  525. /// </summary>
  526. /// <param name="sender"></param>
  527. /// <param name="e"></param>
  528. protected override void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
  529. {
  530. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  531. { e.Handled = true; }
  532. }
  533. /// <summary>
  534. /// 文本框输入
  535. /// </summary>
  536. /// <param name="sender"></param>
  537. /// <param name="e"></param>
  538. void txtHistory_Money_KeyPress(object sender, KeyPressEventArgs e)
  539. {
  540. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  541. { e.Handled = true; }
  542. }
  543. /// <summary>
  544. /// 文本框输入
  545. /// </summary>
  546. /// <param name="sender"></param>
  547. /// <param name="e"></param>
  548. void txtHistory_OrderTime_KeyPress(object sender, KeyPressEventArgs e)
  549. {
  550. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  551. { e.Handled = true; }
  552. }
  553. /// <summary>
  554. /// 单选框事件
  555. /// </summary>
  556. /// <param name="sender"></param>
  557. /// <param name="e"></param>
  558. void chkQT_Click(object sender, EventArgs e)
  559. {
  560. this.chkLKH.Checked = false;
  561. this.chkPYJS.Checked = false;
  562. this.cmbCus_CustomerSource.Enabled = true;
  563. }
  564. /// <summary>
  565. /// 单选框事件
  566. /// </summary>
  567. /// <param name="sender"></param>
  568. /// <param name="e"></param>
  569. void chkPYJS_Click(object sender, EventArgs e)
  570. {
  571. this.cmbCus_CustomerSource.Enabled = false;
  572. this.chkLKH.Checked = false;
  573. this.chkQT.Checked = false;
  574. }
  575. /// <summary>
  576. /// 单选框事件
  577. /// </summary>
  578. /// <param name="sender"></param>
  579. /// <param name="e"></param>
  580. void chkLKH_Click(object sender, EventArgs e)
  581. {
  582. this.chkPYJS.Checked = false;
  583. this.chkQT.Checked = false;
  584. this.cmbCus_CustomerSource.Enabled = false;
  585. }
  586. /// <summary>
  587. /// 客户来源
  588. /// </summary>
  589. /// <returns></returns>
  590. public string _CustomerSource()
  591. {
  592. string GP_CustomerSource = "";
  593. if (this.chkLKH.Checked)
  594. { GP_CustomerSource = "老客户"; }
  595. else if (this.chkPYJS.Checked)
  596. { GP_CustomerSource = "朋友介绍"; }
  597. else if (this.chkQT.Checked)
  598. { GP_CustomerSource = this.cmbCus_CustomerSource.Text; }
  599. return GP_CustomerSource;
  600. }
  601. }
  602. }