FrmOldCustomerPortraitEdit.cs 32 KB

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