FrmOldCustomerOtherAdd.cs 26 KB

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