FrmAddContacts.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. using LYFZ.BLL;
  2. using LYFZ.DAL;
  3. using LYFZ.Model;
  4. using LYFZ.Software.MainBusiness.DoorCityProcess;
  5. using System;
  6. using System.Collections;
  7. using System.Collections.Generic;
  8. using System.ComponentModel;
  9. using System.Data;
  10. using System.Drawing;
  11. using System.Linq;
  12. using System.Text;
  13. using System.Windows.Forms;
  14. namespace LYFZ.Software.MainBusiness.Customers.OldCustomer
  15. {
  16. /// <summary>
  17. /// 添加(Zhuangtai=添加) 修改(可订单号:或根据修改的表对应赋值)
  18. /// </summary>
  19. public partial class FrmAddContacts : LYFZ.Software.UI.Customers.OldCustomer.FrmAddContacts
  20. {
  21. LYFZ.BLL.BLL_ErpOrder orbll = new BLL_ErpOrder();
  22. public LYFZ.Model.Model_ErpCustomer model = null;
  23. BLL_ErpCustomer ctbll = new BLL_ErpCustomer();
  24. /// <summary>
  25. /// 状态 添加还是编辑
  26. /// </summary>
  27. public string Zhuangtai = "";
  28. /// <summary>
  29. /// 客户组编号
  30. /// </summary>
  31. public string GP = "";
  32. //修改操作时 传入客户信息ID 客户组ID
  33. /// <summary>
  34. /// 个人信息ID
  35. /// </summary>
  36. public string YouID = "";
  37. /// <summary>
  38. /// 客户组ID
  39. /// </summary>
  40. public string GMID = "";
  41. /// <summary>
  42. /// 判断是否 其他客户调用
  43. /// </summary>
  44. public bool Qita;
  45. public FrmAddContacts()
  46. {
  47. this.txtCus_FixedPhone.KeyPress += txtCus_FixedPhone_KeyPress;
  48. this.btnUnbind.Click += btnUnbind_Click;
  49. }
  50. LYFZ.BLL.BLL_ErpSystemCategory scbll = new BLL.BLL_ErpSystemCategory();
  51. BLL_ErpCustomerGroupMembers gmbll = new BLL_ErpCustomerGroupMembers();
  52. Model_ErpCustomerGroupMembers modelGm = null;
  53. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  54. /// <summary>
  55. /// 窗体加载事件
  56. /// </summary>
  57. /// <param name="sender"></param>
  58. /// <param name="e"></param>
  59. protected override void FrmAddContacts_Shown(object sender, EventArgs e)
  60. {
  61. try
  62. {
  63. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtCus_Telephone);
  64. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtCus_FixedPhone);
  65. //获取客户区域,客户来源,生肖,客户关系
  66. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAC", this.cmbtxtCus_Region, strHideFiled: "");
  67. DataTable dt_tbl = scbll.GetList(" Sc_ClassParentID = '" + scbll.GetModel("BFABDBAJBJCEBDJCJ").ID.ToString().Trim() + "'").Tables[0];
  68. for (int i = 0; i < dt_tbl.Rows.Count; i++)
  69. { this.cmbCus_Relations.Items.Add(dt_tbl.Rows[i]["Sc_ClassName"].ToString().Trim()); }
  70. if (this.Zhuangtai == "添加")
  71. {
  72. this.Text = "新增联系人";
  73. this.btnSave.Text = "添加";
  74. if (this.Qita)
  75. { this.labelEx15.Visible = false; this.cmbCus_Relations.Visible = false; }
  76. }
  77. if (this.Zhuangtai == "编辑")
  78. {
  79. this.panelMicroID.Visible = true;
  80. this.btnUnbind.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MicroInfo, CustomAttributes.OperatingAuthority.MicroInfo_Unbind);
  81. if (this.GMID != "")
  82. {
  83. this.modelGm = gmbll.GetModel(Convert.ToInt32(GMID.Trim()));
  84. this.cmbCus_Relations.Text = this.modelGm.GM_Relation;
  85. }
  86. else
  87. { this.labelEx15.Visible = false; this.cmbCus_Relations.Visible = false; }
  88. this.model = ctbll.GetModel(Convert.ToInt32(YouID));
  89. this.Text = "编辑联系人";
  90. this.txtCus_Name.Text = this.model.Cus_Name;
  91. if (this.model.Cus_Sex == false)
  92. { this.radCus_Nan.Checked = true; }
  93. else { this.radCus_Nv.Checked = true; }
  94. this.txtCus_Birthday.Text = model.Cus_Birthday;
  95. if (this.model.Cus_BirthdayLunar == "1")
  96. { this.chkCus_Lunar.Checked = true; }
  97. this.txtCus_QQ.Text = this.model.Cus_QQ;
  98. this.txtCus_MicroSignal.Text = this.model.Cus_MicroSignal;
  99. this.txtCus_Telephone.Text = this.model.Cus_Telephone;
  100. this.txtCus_FixedPhone.Text = this.model.Cus_FixedPhone;
  101. this.cmbtxtCus_Region.Text = this.model.Cus_Region;
  102. this.txtCus_Address.Text = this.model.Cus_Address;
  103. this.txtCus_WorkUnit.Text = this.model.Cus_WorkUnit;
  104. if (!string.IsNullOrEmpty(this.model.Cus_OpenID.Trim()))
  105. { this.txtMicroID.Text = "已绑定"; }
  106. else
  107. { this.txtMicroID.Text = "未绑定"; }
  108. }
  109. //如果不等于空,修改DGV的信息
  110. if (this.model != null && GP == "")
  111. {
  112. this.Text = "编辑联系人";
  113. this.txtCus_Name.Text = this.model.Cus_Name;
  114. if (this.model.Cus_Sex == false)
  115. { this.radCus_Nan.Checked = true; }
  116. else { this.radCus_Nv.Checked = true; }
  117. this.txtCus_Birthday.Text = this.model.Cus_Birthday;
  118. if (this.model.Cus_BirthdayLunar == "1")
  119. { this.chkCus_Lunar.Checked = true; }
  120. this.txtCus_QQ.Text = this.model.Cus_QQ;
  121. this.txtCus_MicroSignal.Text = this.model.Cus_MicroSignal;
  122. this.txtCus_Telephone.Text = this.model.Cus_Telephone;
  123. this.txtCus_FixedPhone.Text = this.model.Cus_FixedPhone;
  124. this.cmbtxtCus_Region.Text = this.model.Cus_Region;
  125. this.txtCus_Address.Text = this.model.Cus_Address;
  126. this.txtCus_WorkUnit.Text = this.model.Cus_WorkUnit;
  127. this.cmbCus_Relations.Text = this.model.Cus_Relations;
  128. if (!string.IsNullOrEmpty(this.model.Cus_OpenID.Trim()))
  129. { this.txtMicroID.Text = "已绑定"; }
  130. else
  131. { this.txtMicroID.Text = "未绑定"; }
  132. }
  133. }
  134. catch (Exception ex)
  135. { MessageBoxCustom.Show(ex.Message); }
  136. }
  137. /// <summary>
  138. /// 解绑微信
  139. /// </summary>
  140. /// <param name="sender"></param>
  141. /// <param name="e"></param>
  142. void btnUnbind_Click(object sender, EventArgs e)
  143. {
  144. if (this.txtMicroID.Text.Trim() == "已绑定")
  145. {
  146. if (MessageBoxCustom.Show("是否要解除绑定?", "温馨提示!", MessageBoxButtons.YesNo) == DialogResult.No)
  147. { return; }
  148. LYFZ.Model.Model_ErpCustomer model = ctbll.GetModel(this.model.ID);
  149. model.Cus_OpenID = "";
  150. model.Cus_UpdateDateTime = SDateTime.Now;
  151. model.Cus_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  152. if (ctbll.Update(model))
  153. {
  154. MessageBoxCustom.Show("解绑成功!");
  155. this.txtMicroID.Text = "未绑定";
  156. }
  157. else
  158. { MessageBoxCustom.Show("解绑失败"); }
  159. }
  160. }
  161. /// <summary>
  162. /// 保存
  163. /// </summary>
  164. protected override void btnSave_Click(object sender, EventArgs e)
  165. {
  166. if (Zhuangtai == "编辑")
  167. {
  168. #region 保存时
  169. try
  170. {
  171. #region 判断手机是否存在
  172. string StrPhone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtCus_Telephone);
  173. if (!string.IsNullOrEmpty(StrPhone))
  174. {
  175. if (StrPhone.Length != 11)
  176. { MessageBoxCustom.Show("手机号码必须为11位数!"); return; }
  177. DataTable tblClient = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_Telephone = '" + StrPhone + "' and ID != '" + YouID + "'", ShowColumnName: "ID").Tables[0];
  178. if (tblClient.Rows.Count > 0)
  179. { MessageBoxCustom.Show("手机号已存在"); return; }
  180. }
  181. #endregion
  182. #region 输入不能为空
  183. if (string.IsNullOrEmpty(this.txtCus_Name.Text))
  184. { MessageBoxCustom.Show("姓名不能为空"); return; }
  185. int intMasse = this.txtCus_Birthday.CheckDateValue(this.txtCus_Birthday, chkCus_Lunar);
  186. if (intMasse == 1) { MessageBoxCustom.Show("生日日期日期格式输入错误"); return; }
  187. else if (intMasse == 2)
  188. { MessageBoxCustom.Show("生日日期:" + this.txtCus_Birthday.StrValue.Trim() + "不是公历日期,若要保存请勾上农历"); return; }
  189. //如果有没客户组编号,可能是其他客户
  190. if (GMID != "")
  191. {
  192. if (string.IsNullOrEmpty(cmbCus_Relations.Text))
  193. { MessageBoxCustom.Show("与主客户的关系不能为空!"); return; }
  194. }
  195. #endregion
  196. #region 取值
  197. model.Cus_Name = LYFZ.BLL.OtherCommonModel.ClearSpecialCharacter(this.txtCus_Name.Text.ToString().Trim());
  198. model.Cus_NamePinyin = LYFZ.Command.Command_ChineseToPinyin.GetChineseSpellPinyin(model.Cus_Name).ToLower();
  199. if (this.radCus_Nan.Checked == true)
  200. { model.Cus_Sex = false; }
  201. else
  202. { model.Cus_Sex = true; }
  203. model.Cus_Telephone = StrPhone;
  204. model.Cus_Birthday = "";
  205. model.Cus_BirthdayLunar = "";
  206. model.Cus_Zodiac = "";
  207. if (txtCus_Birthday.StrValue.Trim() != "")
  208. {
  209. model.Cus_Birthday = txtCus_Birthday.StrValue.Trim();
  210. model.Cus_Zodiac = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(this.txtCus_Birthday.StrValue.Trim(), this.chkCus_Lunar.Checked);
  211. if (chkCus_Lunar.Checked == true)
  212. { model.Cus_BirthdayLunar = "1"; }
  213. else
  214. { model.Cus_BirthdayLunar = "0"; }
  215. }
  216. model.Cus_MicroSignal = this.txtCus_MicroSignal.Text.ToString().Trim();
  217. model.Cus_QQ = this.txtCus_QQ.Text.ToString().Trim();
  218. model.Cus_Address = this.txtCus_Address.Text.ToString().Trim();
  219. model.Cus_FixedPhone = this.txtCus_FixedPhone.Text.ToString().Trim();
  220. model.Cus_Region = this.cmbtxtCus_Region.Text.ToString().Trim();
  221. model.Cus_WorkUnit = this.txtCus_WorkUnit.Text.ToString().Trim();
  222. model.Cus_UpdateDateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  223. model.Cus_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  224. //添加到LIst
  225. clist.Add(ctbll.GetUpdateCommandInfo(model));
  226. //如果有没客户组编号,可能是其他客户
  227. if (GMID != "")
  228. {
  229. modelGm.GM_Relation = cmbCus_Relations.Text.ToString().Trim();
  230. clist.Add(gmbll.GetUpdateCommandInfo(modelGm));
  231. }
  232. #endregion
  233. //执行sql事务
  234. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  235. {
  236. if (GP != "")
  237. { DAL_ErpCustomer.UpdateAggregationCustomer(GP); }
  238. //日志
  239. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.修改客户资料, "修改客户:'" + model.Cus_Name + "'资料,时间:" + SDateTime.Now, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  240. MessageBoxCustom.Show("修改成功");
  241. this.DialogResult = DialogResult.OK;
  242. }
  243. else
  244. { MessageBoxCustom.Show("修改失败"); }
  245. }
  246. catch (Exception ex)
  247. { MessageBoxCustom.Show(ex.Message); }
  248. #endregion
  249. }
  250. if (Zhuangtai == "添加")
  251. {
  252. #region 添加时
  253. model = new Model.Model_ErpCustomer();
  254. try
  255. {
  256. #region 不能为空
  257. if (string.IsNullOrEmpty(this.txtCus_Name.Text))
  258. { MessageBoxCustom.Show("姓名或不能为空"); return; }
  259. string StrPhone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtCus_Telephone);
  260. if (!string.IsNullOrEmpty(txtCus_Telephone.Text))
  261. {
  262. if (StrPhone.Length != 11)
  263. { MessageBoxCustom.Show("手机号码必须为11位数!"); return; }
  264. DataTable tblClient = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_Telephone = '" + StrPhone + "'", ShowColumnName: "ID").Tables[0];
  265. if (tblClient.Rows.Count > 0)
  266. { MessageBoxCustom.Show("手机号已存在"); return; }
  267. }
  268. if (string.IsNullOrEmpty(cmbCus_Relations.Text) && !Qita)
  269. { MessageBoxCustom.Show("与主客户的关系不能为空!"); return; }
  270. int intMasse = this.txtCus_Birthday.CheckDateValue(this.txtCus_Birthday, this.chkCus_Lunar);
  271. if (intMasse == 1) { MessageBoxCustom.Show("客户生日日期格式输入错误!"); return; }
  272. else if (intMasse == 2)
  273. { MessageBoxCustom.Show("客户生日:" + this.txtCus_Birthday.StrValue.Trim() + "不是公历日期,若要保存请勾上农历!"); return; }
  274. #endregion
  275. model.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber();//获取新编号
  276. model.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  277. model.Cus_Type = "";
  278. model.Cus_Name = LYFZ.BLL.OtherCommonModel.ClearSpecialCharacter(this.txtCus_Name.Text);
  279. model.Cus_NamePinyin = LYFZ.Command.Command_ChineseToPinyin.GetChineseSpellPinyin(model.Cus_Name).ToLower();
  280. if (this.radCus_Nan.Checked == true)
  281. { model.Cus_Sex = false; }
  282. else { model.Cus_Sex = true; }
  283. model.Cus_Birthday = txtCus_Birthday.StrValue.Trim();
  284. if (model.Cus_Birthday != "")
  285. {
  286. model.Cus_Zodiac = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(this.txtCus_Birthday.StrValue.Trim(), this.chkCus_Lunar.Checked);
  287. if (chkCus_Lunar.Checked == true)
  288. { model.Cus_BirthdayLunar = "1"; }
  289. else
  290. { model.Cus_BirthdayLunar = "0"; }
  291. }
  292. else
  293. {
  294. model.Cus_Zodiac = "";
  295. model.Cus_Birthday = "";
  296. model.Cus_BirthdayLunar = "";
  297. }
  298. model.Cus_Telephone = StrPhone;
  299. model.Cus_MicroSignal = this.txtCus_MicroSignal.Text.ToString().Trim();
  300. model.Cus_QQ = this.txtCus_QQ.Text.ToString().Trim();
  301. model.Cus_Address = this.txtCus_Address.Text.ToString().Trim();
  302. model.Cus_FixedPhone = this.txtCus_FixedPhone.Text.ToString().Trim();
  303. model.Cus_Region = this.cmbtxtCus_Region.Text.ToString().Trim();
  304. model.Cus_WorkUnit = this.txtCus_WorkUnit.Text.ToString().Trim();
  305. model.Cus_Relations = cmbCus_Relations.Text.ToString().Trim();
  306. model.Cus_CreateDateTime = SDateTime.Now;
  307. model.Cus_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  308. if (MessageBoxCustom.Show("是否添加", "提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  309. {
  310. //如果为true 侧是其他客户进入此窗体
  311. if (Qita)
  312. {
  313. if (ctbll.Add(model))
  314. {
  315. this.DialogResult = DialogResult.OK;
  316. //日志
  317. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.添加客户资料, "添加客户:'" + model.Cus_Name + "'资料,客户编号:" + model.Cus_CustomerNumber + ",时间:" + SDateTime.Now, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  318. }
  319. else { MessageBoxCustom.Show("添加失败!"); }
  320. return;
  321. }
  322. this.DialogResult = DialogResult.OK;
  323. }
  324. }
  325. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  326. #endregion
  327. }
  328. }
  329. /// <summary>
  330. /// 关闭
  331. /// </summary>
  332. /// <param name="sender"></param>
  333. /// <param name="e"></param>
  334. protected override void btnClose_Click(object sender, EventArgs e)
  335. {
  336. this.Close();
  337. }
  338. /// <summary>
  339. /// 文本框输入
  340. /// </summary>
  341. /// <param name="sender"></param>
  342. /// <param name="e"></param>
  343. protected override void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  344. {
  345. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  346. { e.Handled = true; }
  347. }
  348. /// <summary>
  349. /// 文本框输入
  350. /// </summary>
  351. /// <param name="sender"></param>
  352. /// <param name="e"></param>
  353. protected override void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
  354. {
  355. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  356. { e.Handled = true; }
  357. }
  358. /// <summary>
  359. /// 文本框输入
  360. /// </summary>
  361. /// <param name="sender"></param>
  362. /// <param name="e"></param>
  363. void txtCus_FixedPhone_KeyPress(object sender, KeyPressEventArgs e)
  364. {
  365. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  366. { e.Handled = true; }
  367. }
  368. /// <summary>
  369. /// 设置客户区域
  370. /// </summary>
  371. /// <param name="sender"></param>
  372. /// <param name="e"></param>
  373. protected override void btnRegion_Click(object sender, EventArgs e)
  374. {
  375. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet set = new InitialSet.FrmSystemSet();
  376. set.TypeName = "AAAAAAC";
  377. set.Version = "Version";
  378. if (set.ShowDialog() == DialogResult.OK)
  379. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAC", this.cmbtxtCus_Region, strHideFiled: ""); }
  380. }
  381. }
  382. }