FrmOldCustomerPortraitAdd.cs 26 KB

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