UCustomerInfo.cs 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927
  1. using LYFZ.Model.API;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.DoorCityProcess.NewOrderCustomControls
  10. {
  11. public class UCustomerInfo:LYFZ.Software.UI.DoorCityProcess.NewOrderCustomControls.UCustomerInfo
  12. {
  13. public UCustomerInfo()
  14. {
  15. this.ucControlID = LYFZ.WinAPI.CustomPublicMethod.GenerateUniqueID();
  16. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OtherPermissionsSet, LYFZ.CustomAttributes.OperatingAuthority.ProhibitViewCustomerPhoneNumber)
  17. && !LYFZ.BLL.BLL_ErpUser.IsAdministrator())
  18. {
  19. this.txtCusTelephone.PasswordChar = '*';
  20. this.txtCusFixedPhone.PassChar = '*';
  21. }
  22. this.Load += UCustomerInfo_Load;
  23. this.lbSetCusRelation.Click += LbSetCusRelation_Click;
  24. this.lbSetCusRegion.Click += LbSetCusRegion_Click;
  25. this.lbSetCusRegion.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.OrderClientRegionSet);
  26. this.lbSetCusRelation.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.OrderClientRelationSet);
  27. this.pictAddClient.Click += PictAddClient_Click;
  28. this.PictDelete.Click += PictDelete_Click;
  29. this.btnDial.Click += BtnDial_Click;
  30. this.btnQQCall.Click += BtnQQCall_Click;
  31. this.txtCusName.KeyUp += TxtCusName_KeyUp;
  32. this.txtCusTelephone.KeyUp += TxtCusTelephone_KeyUp;
  33. this.lbBtnSelectSameName.Click += LbBtnSelectSameName_Click;
  34. this.PictEdit.Click += PictEdit_Click;
  35. this.PictReset.Click += PictReset_Click;
  36. // this.txtCusTelephone.TextChanged += TxtCusTelephone_TextChanged;
  37. }
  38. /* private void TxtCusTelephone_TextChanged(object sender, EventArgs e)
  39. {
  40. TxtCusTelephone_KeyUp(null, null);
  41. }*/
  42. private void PictReset_Click(object sender, EventArgs e)
  43. {
  44. this.ClearCustomerInfo();
  45. this.txtTips.Hide();
  46. }
  47. private void PictEdit_Click(object sender, EventArgs e)
  48. {
  49. if (this.isNewOrder)
  50. {
  51. this.txtCusName.ReadOnly = true;
  52. }
  53. else {
  54. this.txtCusName.ReadOnly = false;
  55. }
  56. this.txtCusTelephone.ReadOnly = false;
  57. }
  58. LYFZ.BLL.BLL_ErpCustomer customerBll = new BLL.BLL_ErpCustomer();
  59. public UCustomerInfo(bool isMain)
  60. : this()
  61. {
  62. this.IsMainCustomer = isMain;
  63. if (isMain)
  64. {
  65. this.PictDelete.Hide();
  66. }
  67. else
  68. {
  69. this.PictDelete.Show();
  70. }
  71. }
  72. string ucControlID = "";
  73. /// <summary>
  74. /// 当前控件ID
  75. /// </summary>
  76. public string UcControlID {
  77. get {
  78. return ucControlID;
  79. }
  80. }
  81. string tempStrWhere = "";
  82. private void LbBtnSelectSameName_Click(object sender, EventArgs e)
  83. {
  84. string CusTelephone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtCusTelephone);
  85. LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.OrderHistoryCustomerSuperSmallForm frm = new SuperSmallForm.OrderHistoryCustomerSuperSmallForm();
  86. frm.StrWhere = this.tempStrWhere;
  87. frm.ShowDialog();
  88. if (frm.IsSaveed)
  89. {
  90. if (frm.model == null)
  91. {
  92. return;
  93. }
  94. if (frm.model.Cus_Telephone == null)
  95. {
  96. frm.model.Cus_Telephone = "";
  97. }
  98. this.SetSelectCustomerInfo(frm.model);
  99. }
  100. }
  101. void SetSelectCustomerInfo(LYFZ.Model.Model_ErpCustomer model)
  102. {
  103. if (!string.IsNullOrEmpty(model.Cus_CustomerNumber.Trim()))
  104. {
  105. //判断是否有相同客户存在
  106. bool IsSelectExist = this.ChkIsSelectExistCustomer(this.ucControlID, model.Cus_Telephone.Trim(), model.Cus_CustomerNumber);
  107. if (IsSelectExist)
  108. {
  109. this.panelTips.Visible = false;
  110. this.txtTips.Text = "";
  111. this.txtCusTelephone.Text = "";
  112. MessageBoxCustom.Show(String.Format("你选择的客户“{0}”在当前订单已存在,一个订单不能同时存在两个相同的客户", model.Cus_Name));
  113. return;
  114. }
  115. }
  116. if (this.IsMainCustomer)
  117. {
  118. if (!this.AutoSelectionIntentionOrderCustomer(model.Cus_Telephone.Trim()))
  119. {
  120. this.SetCustomerInfo(model, "");
  121. }
  122. }
  123. else
  124. {
  125. this.SetCustomerInfo(model, "");
  126. }
  127. }
  128. /// <summary>
  129. /// 自动选择意向客户
  130. /// </summary>
  131. /// <param name="_CusTelephone"></param>
  132. bool AutoSelectionIntentionOrderCustomer(string _CusTelephone)
  133. {
  134. if (String.IsNullOrEmpty(_CusTelephone))
  135. {
  136. return false;
  137. }
  138. DataRow row = customerBll.GetIntentionOrderCustomer(_CusTelephone.Trim());
  139. if (row != null)
  140. {
  141. string IntentionOrderNumber = "";
  142. string IntentionCustomerGroupID = "";
  143. string IntentionCustomerID = "";
  144. if (row["GP_OrderNumber"] != null)
  145. IntentionOrderNumber = row["GP_OrderNumber"].ToString();
  146. if (row["GP_CustomerGroupID"] != null)
  147. IntentionCustomerGroupID = row["GP_CustomerGroupID"].ToString();
  148. if (row["GM_CustomerID"] != null)
  149. IntentionCustomerID = row["GM_CustomerID"].ToString();
  150. DialogResult digResult = MessageBoxCustom.Show(String.Format("根据您输入的手机号:'{0}' 在系统查找到有一个未完成的意向,您是否要对本意向进行完成订单?", _CusTelephone.Trim()), "温馨提示", MessageBoxButtons.YesNoCancel);
  151. if (digResult == DialogResult.Yes)
  152. {
  153. if (this.EventSelectIntentionOrderCustomer != null)
  154. {
  155. this.EventSelectIntentionOrderCustomer(this, IntentionOrderNumber, IntentionCustomerGroupID, IntentionCustomerID);
  156. }
  157. }
  158. else if (digResult == DialogResult.No && !String.IsNullOrEmpty(IntentionCustomerID))
  159. {
  160. LYFZ.Model.Model_ErpCustomer modelClientModel = customerBll.GetModel("Cus_CustomerNumber", IntentionCustomerID);
  161. if (modelClientModel.ID > 0)
  162. {
  163. this.SetCustomerInfo(modelClientModel, "");
  164. }
  165. else
  166. {
  167. txtCusTelephone.Text = _CusTelephone.Substring(0, _CusTelephone.Length - 1);
  168. txtCusTelephone.ForCharMaskedTextBox();
  169. }
  170. }
  171. else
  172. {
  173. txtCusTelephone.Text = _CusTelephone.Substring(0, _CusTelephone.Length - 1);
  174. txtCusTelephone.ForCharMaskedTextBox();
  175. }
  176. return true;
  177. }
  178. else {
  179. return false;
  180. }
  181. }
  182. public delegate void SelectIntentionOrderCustomer(UCustomerInfo uCustomer,string _IntentionOrderNumber,string _IntentionCustomerGroupID,string _IntentionCustomerID);
  183. /// <summary>
  184. /// 用event 关键字声明事件对象
  185. /// </summary>
  186. [Category("控件扩展事件"), Description("自动加载意向订单客户")]
  187. public event SelectIntentionOrderCustomer EventSelectIntentionOrderCustomer;
  188. //临时客户电话
  189. string tempCusTelephone = "";
  190. void ChkTelephone(string _Telephone)
  191. {
  192. if (!string.IsNullOrEmpty(_Telephone.Trim()))
  193. {
  194. //判断是否有相同客户存在
  195. bool IsSelectExist = this.ChkIsSelectExistCustomer(this.ucControlID, _Telephone.Trim(), "");
  196. if (IsSelectExist)
  197. {
  198. this.txtCusTelephone.Text = "";
  199. MessageBoxCustom.Show(String.Format("你输入的手机号“{0}”在当前订单已存在", _Telephone));
  200. return;
  201. }
  202. }
  203. }
  204. private void TxtCusTelephone_KeyUp(object sender, KeyEventArgs e)
  205. {
  206. string CusTelephone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtCusTelephone);
  207. this.ChkTelephone(CusTelephone);
  208. if (CusTelephone.ToLower().Trim() != this.tempCusTelephone.ToLower().Trim())
  209. {
  210. this.tempCusTelephone = CusTelephone.Trim();
  211. int cusCount = 0;
  212. if (CusTelephone.Trim().Length > 6)
  213. {
  214. if (CusTelephone.Length == 11)
  215. {
  216. this.tempStrWhere = String.Format("Cus_Telephone='{0}'", CusTelephone.Trim());
  217. cusCount = customerBll.GetRecordCount(this.tempStrWhere);
  218. this.SetDuplicateNameTips(cusCount);
  219. bool isMessageBoxCustom = false;
  220. if (this.IsMainCustomer)
  221. {
  222. if (!this.AutoSelectionIntentionOrderCustomer(CusTelephone))
  223. {
  224. isMessageBoxCustom = true;
  225. }
  226. }
  227. else {
  228. isMessageBoxCustom = true;
  229. }
  230. if (cusCount > 0 && isMessageBoxCustom)
  231. {
  232. if (MessageBoxCustom.Show("根据电话<" + CusTelephone + ">查找到" + cusCount.ToString() + "位相同客户,是否要加载此客户资料?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
  233. {
  234. txtCusTelephone.Text = CusTelephone.Substring(0, CusTelephone.Length - 1);
  235. txtCusTelephone.ForCharMaskedTextBox();
  236. }
  237. else
  238. {
  239. if (cusCount == 1)
  240. {
  241. LYFZ.Model.Model_ErpCustomer modelClientModel = customerBll.GetModel("Cus_Telephone", CusTelephone.Trim());
  242. this.SetSelectCustomerInfo(modelClientModel);
  243. }
  244. else
  245. {
  246. this.LbBtnSelectSameName_Click(this.lbBtnSelectSameName, null);
  247. }
  248. }
  249. }
  250. }
  251. else
  252. {
  253. this.tempStrWhere = String.Format("Cus_Telephone Like '{0}%'", CusTelephone.Trim());
  254. cusCount = customerBll.GetRecordCount(this.tempStrWhere);
  255. this.SetDuplicateNameTips(cusCount);
  256. }
  257. }
  258. else {
  259. this.panelTips.Hide();
  260. }
  261. }
  262. }
  263. void SetDuplicateNameTips(int count)
  264. {
  265. if (count > 0)
  266. {
  267. this.panelTips.Show();
  268. this.txtTips.Text = String.Format("根据名字和电话查找到 {0} 个类似客户", count);
  269. }
  270. else
  271. {
  272. this.txtTips.Text = "";
  273. this.panelTips.Hide();
  274. }
  275. }
  276. //临时客户名
  277. string tempCusName = "";
  278. private void TxtCusName_KeyUp(object sender, KeyEventArgs e)
  279. {
  280. if (this.txtCusName.Text.ToLower().Trim() != this.tempCusName.ToLower().Trim())
  281. {
  282. this.tempCusName = this.txtCusName.Text.Trim();
  283. if (!String.IsNullOrEmpty(this.txtCusName.Text.Trim()))
  284. {
  285. string StrWhere = "";
  286. string StrPhone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtCusTelephone);
  287. if (StrPhone.Length >= 11)
  288. {
  289. StrWhere = " And Cus_Telephone Like '" + StrPhone.Trim() + "%'";
  290. }
  291. this.tempStrWhere = String.Format("Cus_Name like '%{0}%' and Cus_Type != '儿童' {1}", this.txtCusName.Text.Trim(), StrWhere);
  292. int cusCount = customerBll.GetRecordCount(this.tempStrWhere);
  293. this.SetDuplicateNameTips(cusCount);
  294. }
  295. else {
  296. this.panelTips.Hide();
  297. }
  298. }
  299. }
  300. /// <summary>
  301. /// 绑定客户信息
  302. /// </summary>
  303. /// <param name="erpModel"></param>
  304. public void GetClientValueData(Api_ErpOrderModel erpModel)
  305. {
  306. string StrTelephone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtCusTelephone);
  307. if (erpModel.customerData == null)
  308. {
  309. erpModel.customerData = new List<Api_CustomerModel>();
  310. }
  311. string cusAttrString = CusAttrType.Other_.ToString();
  312. if (this.IsMainCustomer)
  313. {
  314. cusAttrString = CusAttrType.Man_.ToString();
  315. }
  316. Api_CustomerModel apiModel = new Api_CustomerModel()
  317. {
  318. cusAttr = cusAttrString,
  319. ClientModel = new API_ClientDataModel(),
  320. cus_Type = "成人"
  321. };
  322. apiModel.ClientModel.ID = this.currentCustomer.ID;
  323. apiModel.ClientModel.CusRelations = this.cmbtreevCusRelation.Text.Trim();
  324. apiModel.ClientModel.CusAddress = this.txtCusAddress.Text.Trim();
  325. apiModel.ClientModel.Cus_Birthday = this.maskBirthday.StrValue.Trim();
  326. apiModel.ClientModel.Cus_BirthdayLunar = "";
  327. apiModel.ClientModel.Cus_Zodiac = "";
  328. if (apiModel.ClientModel.Cus_Birthday != "")
  329. {
  330. apiModel.ClientModel.Cus_BirthdayLunar = this.chkBirthday.Checked ? "1" : "0";
  331. apiModel.ClientModel.Cus_Zodiac = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(apiModel.ClientModel.Cus_Birthday, this.chkBirthday.Checked);
  332. }
  333. apiModel.ClientModel.CusIDNumber = "";
  334. // if (LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.EnabledIDNumber)
  335. // {
  336. apiModel.ClientModel.CusIDNumber = this.maskedIDNumber.StrValue;
  337. // }
  338. apiModel.ClientModel.Cus_Name = LYFZ.BLL.OtherCommonModel.ClearSpecialCharacter(this.txtCusName.Text.Trim());
  339. apiModel.ClientModel.Cus_NamePinyin = LYFZ.Command.Command_ChineseToPinyin.GetChineseSpellPinyin(apiModel.ClientModel.Cus_Name.Trim()).ToLower();
  340. apiModel.ClientModel.CusQQ = this.txtCusQQ.Text.Trim();
  341. apiModel.ClientModel.CusRegion = this.cmbtreevCusRegion.Text.Trim();
  342. apiModel.ClientModel.Cus_Sex = this.rdoCusSex1.Checked ? false : true;
  343. apiModel.ClientModel.CusTelephone = StrTelephone;
  344. apiModel.ClientModel.CusMicroSignal = this.txtMicroSignal.Text.Trim();
  345. apiModel.ClientModel.CusWorkUnit = this.txtCusWorkUnit.Text.Trim();
  346. apiModel.ClientModel.CusFixedPhone = this.txtCusFixedPhone.Text.Trim();
  347. apiModel.userRelation = string.IsNullOrEmpty(this.cmbtreevCusRelation.Text.Trim()) ? "未知" : this.cmbtreevCusRelation.Text.Trim();
  348. apiModel.ClientModel.CusRelations = string.IsNullOrEmpty(this.cmbtreevCusRelation.Text.Trim()) ? "未知" : this.cmbtreevCusRelation.Text.Trim();
  349. erpModel.customerData.Add(apiModel);
  350. }
  351. /// <summary>
  352. /// 弹出QQ对话框
  353. /// </summary>
  354. /// <param name="sender"></param>
  355. /// <param name="e"></param>
  356. private void BtnQQCall_Click(object sender, EventArgs e)
  357. {
  358. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.QQCall(this.txtCusQQ.Text.Trim());
  359. }
  360. /// <summary>
  361. /// 拨打电话
  362. /// </summary>
  363. /// <param name="sender"></param>
  364. /// <param name="e"></param>
  365. private void BtnDial_Click(object sender, EventArgs e)
  366. {
  367. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.PhoneCall(this.txtCusTelephone);
  368. }
  369. bool isChildCustomer = false;
  370. /// <summary>
  371. /// 是否为儿童版客户
  372. /// </summary>
  373. public bool IsChildCustomer
  374. {
  375. get { return isChildCustomer; }
  376. set { isChildCustomer = value; }
  377. }
  378. bool isMainCustomer = true;
  379. /// <summary>
  380. /// 是否为主客户
  381. /// </summary>
  382. public bool IsMainCustomer
  383. {
  384. get {return isMainCustomer; }
  385. set { isMainCustomer = value; }
  386. }
  387. /// <summary>
  388. /// 删除客户
  389. /// </summary>
  390. /// <param name="sender"></param>
  391. /// <param name="e"></param>
  392. public void PictDelete_Click(object sender, EventArgs e)
  393. {
  394. Control tempParentControl = this.Parent;
  395. this.Parent.Controls.Remove(this);
  396. RefreshParentHeight(tempParentControl);
  397. try
  398. {
  399. UCustomerInfo tempUcusInfo = GetLastUCustomerInfo(tempParentControl);
  400. tempUcusInfo.SetShowAddClient(true);
  401. }
  402. catch { }
  403. }
  404. /// <summary>
  405. /// 获取指定容器内的最后一个控件
  406. /// </summary>
  407. /// <param name="control"></param>
  408. /// <returns></returns>
  409. static UCustomerInfo GetLastUCustomerInfo(Control control)
  410. {
  411. return (UCustomerInfo)control.Controls[control.Controls.Count - 1];
  412. }
  413. int _UCustomerAddMaximum = 5;
  414. /// <summary>
  415. /// 可添加客户最大数
  416. /// </summary>
  417. public int UCustomerAddMaximum
  418. {
  419. set { _UCustomerAddMaximum = value; }
  420. get { return _UCustomerAddMaximum; }
  421. }
  422. /// <summary>
  423. /// 新增客户控件
  424. /// </summary>
  425. /// <param name="sender"></param>
  426. /// <param name="e"></param>
  427. public void PictAddClient_Click(object sender, EventArgs e)
  428. {
  429. int tempCount = GetUCustomerCount(this.Parent);
  430. if (tempCount < this.UCustomerAddMaximum)
  431. {
  432. AddClientToParentControls();
  433. RefreshParentHeight(this.Parent);
  434. }
  435. else {
  436. MessageBoxCustom.Show(String.Format("最多只能添加{0}个客户", this.UCustomerAddMaximum));
  437. }
  438. }
  439. /// <summary>
  440. /// 添加客户控件并返回新加的控件对象
  441. /// </summary>
  442. /// <returns></returns>
  443. public UCustomerInfo AddClientToParentControls()
  444. {
  445. UCustomerInfo uCusInfo = new UCustomerInfo(false);
  446. uCusInfo.UCustomerAddMaximum = this.UCustomerAddMaximum;
  447. uCusInfo.isChildCustomer = this.IsChildCustomer;
  448. uCusInfo.AddClientToParentControls(this.Parent);
  449. this.SetShowAddClient(false);
  450. return uCusInfo;
  451. }
  452. private bool ChkIsSelectExistCustomer(string _ucControlID, string _Telephone, string cusNumber)
  453. {
  454. bool retBl = false;
  455. foreach (Control control in this.Parent.Controls)
  456. {
  457. if (control is UCustomerInfo)
  458. {
  459. UCustomerInfo tmpCus = (UCustomerInfo)control;
  460. if (tmpCus.UcControlID.ToLower() != _ucControlID.ToLower())
  461. {
  462. if (!String.IsNullOrEmpty(cusNumber))
  463. retBl = string.IsNullOrEmpty(tmpCus.CurrentCustomer.Cus_CustomerNumber)?false:tmpCus.CurrentCustomer.Cus_CustomerNumber.ToLower() == cusNumber.ToLower();
  464. if (!retBl)
  465. {
  466. string CusTelephone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(tmpCus.txtCusTelephone);
  467. if (!String.IsNullOrEmpty(CusTelephone))
  468. retBl = CusTelephone.Trim().ToLower() == _Telephone.ToLower();
  469. }
  470. }
  471. }
  472. }
  473. return retBl;
  474. }
  475. /// <summary>
  476. /// 添加到指定的容器中
  477. /// </summary>
  478. /// <param name="control"></param>
  479. public void AddClientToParentControls(Control control)
  480. {
  481. if (this.Parent == null)
  482. {
  483. this.SetUcusInfoText(String.Format("客户资料"));
  484. if (this.IsChildCustomer)
  485. {
  486. this.SetChildClientRelationText();
  487. }
  488. else
  489. {
  490. this.SetClientRelationText();
  491. }
  492. control.Controls.Add(this);
  493. }
  494. }
  495. /// <summary>
  496. /// 设置关系标题为宝宝
  497. /// </summary>
  498. void SetChildClientRelationText()
  499. {
  500. this.SetClientRelationText(String.Format("与宝宝关系"));
  501. }
  502. /// <summary>
  503. /// 设置关系标题为客户
  504. /// </summary>
  505. void SetClientRelationText()
  506. {
  507. this.SetClientRelationText(String.Format("与客户关系"));
  508. }
  509. /// <summary>
  510. /// 获取指定容器内 客户资料控件的个数
  511. /// </summary>
  512. /// <param name="control"></param>
  513. /// <returns></returns>
  514. public int GetUCustomerCount(Control control)
  515. {
  516. int tempCount = 0;
  517. foreach (Control con in control.Controls)
  518. {
  519. if (con is UCustomerInfo)
  520. {
  521. tempCount++;
  522. }
  523. }
  524. return tempCount;
  525. }
  526. /// <summary>
  527. /// 刷新父容器高度
  528. /// </summary>
  529. /// <param name="control"></param>
  530. public static void RefreshParentHeight(Control control)
  531. {
  532. try
  533. {
  534. int tempIndex = 0;
  535. foreach (Control con in control.Controls)
  536. {
  537. if (con is UCustomerInfo)
  538. {
  539. tempIndex++;
  540. UCustomerInfo tempCus= (UCustomerInfo)con;
  541. if (!tempCus.IsMainCustomer)
  542. {
  543. tempCus.SetUcusInfoText(String.Format("第{0}联系人",tempIndex));
  544. }
  545. }
  546. }
  547. UCustomerInfo tempUcusInfo = GetLastUCustomerInfo(control);
  548. control.Height = tempUcusInfo.Location.Y + tempUcusInfo.Height + 50;
  549. }
  550. catch (Exception ex)
  551. {
  552. MessageBoxCustom.Show(String.Format("父容器高度刷新出错:{0}", ex.Message));
  553. }
  554. }
  555. /// <summary>
  556. /// 设置标题
  557. /// </summary>
  558. /// <param name="text"></param>
  559. public void SetUcusInfoText(string text)
  560. {
  561. this.lblClientText.Text = text;
  562. }
  563. /// <summary>
  564. /// 设置关系标题
  565. /// </summary>
  566. /// <param name="text"></param>
  567. public void SetClientRelationText(string text)
  568. {
  569. this.lblClientRelation.Text = text;
  570. }
  571. /// <summary>
  572. /// 刷新客户关系
  573. /// </summary>
  574. void RefreshCusRelation()
  575. {
  576. foreach (Control control in this.Parent.Controls)
  577. {
  578. if (control is UCustomerInfo)
  579. {
  580. UCustomerInfo tmp = (UCustomerInfo)control;
  581. tmp.BindCusRelation();
  582. }
  583. }
  584. }
  585. /// <summary>
  586. /// 刷新客户地区
  587. /// </summary>
  588. void RefreshCusRegion()
  589. {
  590. foreach (Control control in this.Parent.Controls)
  591. {
  592. if (control is UCustomerInfo)
  593. {
  594. UCustomerInfo tmp = (UCustomerInfo)control;
  595. tmp.BindCusRegion();
  596. }
  597. }
  598. }
  599. public delegate void UCustomerInfo_CusRelationSet(UCustomerInfo ucOBJ, ComponentLibrary.ComboBoxTreeViewEx cbxTreeView);
  600. /// <summary>
  601. /// 客户关系设置事件对象
  602. /// </summary>
  603. [Category("控件扩展事件"), Description("客户关系设置")]
  604. public event UCustomerInfo_CusRelationSet CusRelationSet;
  605. public delegate void UCustomerInfo_CusRegionSet(UCustomerInfo ucOBJ, ComponentLibrary.ComboBoxTreeViewEx cbxTreeView);
  606. /// <summary>
  607. /// 客户地区设置事件
  608. /// </summary>
  609. [Category("控件扩展事件"), Description("客户地区设置")]
  610. public event UCustomerInfo_CusRegionSet CusRegionSet;
  611. private void LbSetCusRegion_Click(object sender, EventArgs e)
  612. {
  613. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  614. frm.TypeName = BLL.BLL_ErpSystemCategory.GetSysTemCategoryCode(BLL.SysTemCategoryCodeType.客户地区).ToUpper();
  615. frm.IsLoadAllCategory = false;
  616. if (frm.ShowDialog() == DialogResult.OK)
  617. {
  618. LoadAllSystemCategory();
  619. if (this.CusRegionSet != null)
  620. {
  621. this.CusRegionSet(this,this.cmbtreevCusRegion);
  622. }
  623. RefreshCusRegion();
  624. }
  625. }
  626. private void LbSetCusRelation_Click(object sender, EventArgs e)
  627. {
  628. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  629. frm.TypeName = BLL.BLL_ErpSystemCategory.GetSysTemCategoryCode(BLL.SysTemCategoryCodeType.客户关系).ToUpper();
  630. frm.IsLoadAllCategory = false;
  631. if (frm.ShowDialog() == DialogResult.OK)
  632. {
  633. LoadAllSystemCategory();
  634. if (this.CusRelationSet != null)
  635. {
  636. this.CusRelationSet(this, this.cmbtreevCusRelation);
  637. }
  638. RefreshCusRelation();
  639. }
  640. }
  641. void LoadAllSystemCategory()
  642. {
  643. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate (object obj, BackgroundWorker backgroundWorker)
  644. {
  645. LYFZ.BLL.WageStatisticsProcess.LoadAllSystemCategory();
  646. });
  647. }
  648. private void UCustomerInfo_Load(object sender, EventArgs e)
  649. {
  650. BindCusRelation();
  651. BindCusRegion();
  652. if (LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.EnabledIDNumber)
  653. {
  654. this.panelIDNumber.Show();
  655. }
  656. else {
  657. this.panelIDNumber.Hide();
  658. }
  659. }
  660. /// <summary>
  661. /// 设置显示隐藏客户关系
  662. /// </summary>
  663. /// <param name="isShow"></param>
  664. public void SetShowRelation(bool isShow)
  665. {
  666. if (isShow)
  667. {
  668. this.panelRelation.Show();
  669. }
  670. else {
  671. this.panelRelation.Hide();
  672. }
  673. }
  674. /// <summary>
  675. /// 设置显示隐藏客户添加按钮
  676. /// </summary>
  677. /// <param name="isShow"></param>
  678. public void SetShowAddClient(bool isShow)
  679. {
  680. if (isShow)
  681. {
  682. this.Height += 24;
  683. this.plAddKeFu.Show();
  684. }
  685. else
  686. {
  687. this.plAddKeFu.Hide();
  688. this.Height -= 24;
  689. }
  690. }
  691. /// <summary>
  692. /// 绑定客户关系
  693. /// </summary>
  694. public void BindCusRelation()
  695. {
  696. FinancialManagement.frmEditStatisticsProgram.BindTreeView_SystemCategory(BLL.BLL_ErpSystemCategory.GetSysTemCategoryCode(BLL.SysTemCategoryCodeType.客户关系).ToUpper(), this.cmbtreevCusRelation.TreeView, isExpandAll: false);
  697. }
  698. /// <summary>
  699. /// 绑定客户地区
  700. /// </summary>
  701. public void BindCusRegion()
  702. {
  703. FinancialManagement.frmEditStatisticsProgram.BindTreeView_SystemCategory(BLL.BLL_ErpSystemCategory.GetSysTemCategoryCode(BLL.SysTemCategoryCodeType.客户地区).ToUpper(), this.cmbtreevCusRegion.TreeView, isExpandAll: false);
  704. }
  705. LYFZ.Model.Model_ErpCustomerGroup currentCustomerGroup = new Model.Model_ErpCustomerGroup();
  706. /// <summary>
  707. /// 当前客户组
  708. /// </summary>
  709. public LYFZ.Model.Model_ErpCustomerGroup CurrentCustomerGroup
  710. {
  711. get { return currentCustomerGroup; }
  712. }
  713. LYFZ.Model.Model_ErpCustomerGroupMembers currentGroupMember = new Model.Model_ErpCustomerGroupMembers();
  714. /// <summary>
  715. /// 当前客户成员数据
  716. /// </summary>
  717. public LYFZ.Model.Model_ErpCustomerGroupMembers CurrentGroupMember
  718. {
  719. get { return currentGroupMember; }
  720. }
  721. LYFZ.Model.Model_ErpCustomer currentCustomer = new Model.Model_ErpCustomer();
  722. /// <summary>
  723. /// 当前客户
  724. /// </summary>
  725. public LYFZ.Model.Model_ErpCustomer CurrentCustomer
  726. {
  727. get { return currentCustomer; }
  728. }
  729. /// <summary>
  730. /// 清空客户信息
  731. /// </summary>
  732. public void ClearCustomerInfo()
  733. {
  734. this.currentCustomerGroup = new Model.Model_ErpCustomerGroup();
  735. this.currentGroupMember = new Model.Model_ErpCustomerGroupMembers();
  736. this.currentCustomer = new Model.Model_ErpCustomer();
  737. this.txtCusName.Text = "";
  738. this.rdoCusSex2.Checked = true;
  739. this.maskBirthday.StrValue = "";
  740. this.chkBirthday.Checked = false;
  741. this.cmbtreevCusRelation.Text = "";
  742. this.cmbtreevCusRegion.Text = "";
  743. this.cmbtreevCusRelation.Tag = "";
  744. this.txtCusTelephone.Text = "";
  745. this.txtCusQQ.Text = "";
  746. this.txtCusFixedPhone.Text = "";
  747. this.txtCusWorkUnit.Text = "";
  748. this.txtCusAddress.Text = "";
  749. this.maskedIDNumber.Text = "";
  750. this.txtCusName.ReadOnly = false;
  751. this.txtCusTelephone.ReadOnly = false;
  752. }
  753. /// <summary>
  754. /// 是否为新开订单
  755. /// </summary>
  756. bool isNewOrder = true;
  757. /// <summary>
  758. /// 设置客户资料
  759. /// </summary>
  760. /// <param name="customerGroup"></param>
  761. /// <param name="groupMember"></param>
  762. /// <param name="customer"></param>
  763. public void SetCustomerInfo(LYFZ.Model.Model_ErpCustomerGroup customerGroup, LYFZ.Model.Model_ErpCustomerGroupMembers groupMember, LYFZ.Model.Model_ErpCustomer customer)
  764. {
  765. this.isNewOrder = false;
  766. this.currentCustomerGroup = customerGroup;
  767. this.currentGroupMember = groupMember;
  768. this.SetCustomerInfo(customer, groupMember.GM_Relation);
  769. }
  770. public void SetCustomerInfo(LYFZ.Model.Model_ErpCustomer customer,string relation)
  771. {
  772. this.txtCusName.ReadOnly = true;
  773. this.txtCusTelephone.ReadOnly = true;
  774. this.currentCustomer = customer;
  775. if (customer == null)
  776. {
  777. return;
  778. }
  779. this.txtCusName.Text = customer.Cus_Name;
  780. if (customer.Cus_Sex)
  781. {
  782. this.rdoCusSex2.Checked = true;
  783. }
  784. else
  785. {
  786. this.rdoCusSex1.Checked = true;
  787. }
  788. this.maskBirthday.StrValue = customer.Cus_Birthday;
  789. this.chkBirthday.Checked = LYFZ.Command.Command_Validate.DateLunar(customer.Cus_BirthdayLunar);
  790. this.cmbtreevCusRelation.TextFindTag(relation);
  791. this.cmbtreevCusRegion.TextFindTag(customer.Cus_Region);
  792. this.txtCusTelephone.Text = customer.Cus_Telephone;
  793. this.txtCusQQ.Text = customer.Cus_QQ;
  794. this.txtCusFixedPhone.Text = customer.Cus_FixedPhone;
  795. this.txtCusWorkUnit.Text = customer.Cus_WorkUnit;
  796. this.txtCusAddress.Text = customer.Cus_Address;
  797. this.maskedIDNumber.Text = customer.Cus_IDNumber;
  798. this.txtMicroSignal.Text = customer.Cus_MicroSignal;
  799. }
  800. /// <summary>
  801. /// 设置客户资料
  802. /// </summary>
  803. /// <param name="model"></param>
  804. public void SetHospitalClientValue(LYFZ.Model.Model_ErpHospitalClient model)
  805. {
  806. this.ClearCustomerInfo();
  807. if (model != null)
  808. {
  809. this.txtCusAddress.Text = model.Hct_HomeAddress;
  810. this.chkBirthday.Checked = false;
  811. this.txtCusName.Text = model.Hct_CustomerName;
  812. this.txtCusQQ.Text = model.Hct_QQ;
  813. this.cmbtreevCusRegion.Text = model.Hct_CustomerRegions;
  814. this.rdoCusSex2.Checked = true;
  815. this.txtCusTelephone.Text = model.Hct_MyselfMobile;
  816. this.txtCusFixedPhone.Text = model.Hct_FamilyPhone;
  817. this.TxtCusTelephone_KeyUp(null,null);
  818. }
  819. }
  820. /// <summary>
  821. /// 设置老客户信息
  822. /// </summary>
  823. /// <param name="cusList"></param>
  824. /// <param name="mainClientNumber">主要客户联系人的客户编号</param>
  825. public void SetOldCustomerInfo(List<LYFZ.Model.Model_ErpCustomer> cusList, string mainClientNumber)
  826. {
  827. this.ClearCustomerInfo();
  828. List<LYFZ.Model.Model_ErpCustomer> tempCusList = cusList.FindAll(c => c.Cus_Type != "儿童"||!String.IsNullOrEmpty(c.Cus_Telephone));
  829. if (tempCusList != null)
  830. {
  831. if (tempCusList.Count > 0)
  832. {
  833. LYFZ.Model.Model_ErpCustomer mainTempCus = cusList.Find(c => c.Cus_CustomerNumber.ToLower() == mainClientNumber.ToLower());
  834. if (mainTempCus == null || mainTempCus.ID <= 0)
  835. {
  836. mainTempCus = tempCusList[0];
  837. }
  838. this.SetCustomerInfo(mainTempCus, "");
  839. //其它联系人
  840. UCustomerInfo newCusInfo = null;
  841. foreach (LYFZ.Model.Model_ErpCustomer cus in tempCusList)
  842. {
  843. if (cus.Cus_CustomerNumber.ToLower() != mainTempCus.Cus_CustomerNumber.ToLower())
  844. {
  845. if (newCusInfo == null)
  846. {
  847. newCusInfo = this.AddClientToParentControls();
  848. }
  849. else
  850. {
  851. newCusInfo = newCusInfo.AddClientToParentControls();
  852. }
  853. UCustomerInfo.RefreshParentHeight(this.Parent);
  854. newCusInfo.SetCustomerInfo(cus, "");
  855. }
  856. }
  857. }
  858. }
  859. }
  860. }
  861. }