FrmAddInterestedBuyers.cs 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140
  1. using LYFZ.DAL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. using System.Web.UI.WebControls;
  11. namespace LYFZ.Software.MainBusiness.Customers.OldCustomer
  12. {
  13. public partial class FrmAddInterestedBuyers : LYFZ.Software.UI.Customers.OldCustomer.FrmAddInterestedBuyers
  14. {
  15. public FrmAddInterestedBuyers()
  16. {
  17. this.btnSave.Click += btnSave_Click;
  18. this.btnClear.Click += btnClear_Click;
  19. this.Shown += FrmAddInterestedBuyers_Shown;
  20. this.btnRegion.Click += btnRegion_Click;
  21. this.btnCustomerSource.Click += btnCustomerSource_Click;
  22. this.chkLKH.Click += chkLKH_Click;
  23. this.chkPYJS.Click += chkPYJS_Click;
  24. this.chkQT.Click += chkQT_Click;
  25. this.btnAddcommunication.Click += btnAddcommunication_Click;
  26. this.dgvData.RefreshTheme();
  27. this.txtCus_Name.EventTextBoxEx_TextChanged += txtCus_Name_EventTextBoxEx_TextChanged;
  28. this.txtCus_Telephone.TextChanged += txtCus_Telephone_TextChanged;
  29. this.btnXiangXi.Click += btnXiangXi_Click;
  30. this.btnDelete.Click += btnDelete_Click;
  31. this.btnClose.Click += btnClose_Click;
  32. this.FormClosing += FrmAddInterestedBuyers_FormClosing;
  33. this.btnQQCall.Click += btnQQCall_Click;
  34. this.btnDial.Click += btnDial_Click;
  35. this.dgvData.CellMouseDoubleClick += dgvData_CellMouseDoubleClick;
  36. this.btnUnbind.Click += btnUnbind_Click;
  37. this.cmbtreevClientStatus.ComboBoxTree_NodeMouseClick += cmbtreevClientStatus_ComboBoxTree_NodeMouseClick;
  38. this.btnClientStatusTypeSet.Click += btnClientStatusTypeSet_Click;
  39. this.btnIntentLevel.Click += btnIntentLevel_Click;
  40. }
  41. public void EditOnlyRead()
  42. {
  43. chkLKH.Enabled = false;
  44. chkPYJS.Enabled = false;
  45. chkQT.Enabled = false;
  46. cmbCus_CustomerSource.Enabled = false;
  47. btnCustomerSource.Enabled = false;
  48. txtCus_Name.Enabled = false;
  49. txtCus_Telephone.Enabled = false;
  50. rdoCus_Sex1_1.Enabled = false;
  51. rdoCus_Sex1_2.Enabled = false;
  52. txtCus_Birthday.Enabled = false;
  53. chkCus_Lunar.Enabled = false;
  54. txtCus_FixedPhone.Enabled = false;
  55. txtCus_QQ.Enabled = false;
  56. txtCus_MicroSignal.Enabled = false;
  57. cmbDegree.Enabled = false;
  58. btnIntentLevel.Enabled = false;
  59. cmbCus_Region.Enabled = false;
  60. btnRegion.Enabled = false;
  61. txtCus_Address.Enabled = false;
  62. comType.Enabled = false;
  63. cmbtreevClientStatus.Enabled = false;
  64. btnUnbind.Enabled = false;
  65. btnUnbind.Visible = false;
  66. txtCus_WorkUnit.Enabled = false;
  67. cmbtreevClientStatusType.Enabled = false;
  68. btnClientStatusTypeSet.Enabled = false;
  69. txtClientStatusReason.Enabled = false;
  70. cmbtreevBelongsPerson.Enabled = false;
  71. txtXiangxi.Enabled = false;
  72. btnXiangXi.Enabled = false;
  73. btnClear.Enabled = false;
  74. txtMicroID.Enabled = false;
  75. }
  76. /// <summary>
  77. /// 意向程度设置
  78. /// </summary>
  79. /// <param name="sender"></param>
  80. /// <param name="e"></param>
  81. void btnIntentLevel_Click(object sender, EventArgs e)
  82. {
  83. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  84. frm.TypeName = "BEBABEAGFDDAHIHJD";
  85. frm.Version = "Version";
  86. if (frm.ShowDialog() == DialogResult.OK)
  87. { this.GetIntentLevel(); }
  88. }
  89. /// <summary>
  90. ///
  91. /// </summary>
  92. /// <param name="sender"></param>
  93. /// <param name="e"></param>
  94. void btnClientStatusTypeSet_Click(object sender, EventArgs e)
  95. {
  96. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  97. frm.TypeName = "AAAAABX";
  98. frm.Version = "Version";
  99. if (frm.ShowDialog() == DialogResult.OK)
  100. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAABX", this.cmbtreevClientStatusType, IsFirstNodeNull: true); }
  101. }
  102. /// <summary>
  103. /// 是否添加操作
  104. /// </summary>
  105. bool IsAdd = false;
  106. /// <summary>
  107. /// 判断上一个焦点是姓名还是电话 false为姓名
  108. /// </summary>
  109. bool Is = false;
  110. /// <summary>
  111. /// 是否被选中出来的数据
  112. /// </summary>
  113. bool selected = false;
  114. /// <summary>
  115. /// 客户组 编号
  116. /// </summary>
  117. public string GMID = "";
  118. /// <summary>
  119. /// 选出来的ID
  120. /// </summary>
  121. int UsertID;
  122. BLL.BLL_ErpCustomer ctbll = new BLL.BLL_ErpCustomer();
  123. BLL.BLL_ErpCustomerGroup GPbll = new BLL.BLL_ErpCustomerGroup();
  124. BLL.BLL_ErpCustomerGroupMembers GMbll = new BLL.BLL_ErpCustomerGroupMembers();
  125. Model.Model_ErpCustomer model = null;
  126. Model.Model_ErpCustomerGroup modelGP = null;
  127. Model.Model_ErpCustomerGroupMembers modelGM = null;
  128. List<Model.Model_ErpCustomerGroupMembers> modellist = new List<Model.Model_ErpCustomerGroupMembers>();
  129. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  130. List<Helper.CommandInfo> clist = null;
  131. string userID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  132. void GetIntentLevel()
  133. {
  134. DataTable dt = new DataTable();
  135. DataTable dt2 = new DataTable();
  136. cmbDegree.Items.Clear();
  137. cmbDegree.Items.Add(new ListItem("", ""));
  138. LYFZ.BLL.BLL_ErpSystemCategory SystemCategorybll = new LYFZ.BLL.BLL_ErpSystemCategory();
  139. dt2 = SystemCategorybll.GetList("Sc_ClassCode='BEBABEAGFDDAHIHJD'").Tables[0];
  140. dt = SystemCategorybll.GetList("Sc_ClassParentID=" + dt2.Rows[0]["ID"] + "").Tables[0];
  141. if (dt.Rows.Count > 0)
  142. {
  143. for (int i = 0; i < dt.Rows.Count; i++)
  144. { cmbDegree.Items.Add(new ListItem(dt.Rows[i]["Sc_ClassName"].ToString(), dt.Rows[i]["Sc_ClassName"].ToString())); }
  145. }
  146. }
  147. ListItem item;
  148. /// <summary>
  149. /// 窗体加载
  150. /// </summary>
  151. void FrmAddInterestedBuyers_Shown(object sender, EventArgs e)
  152. {
  153. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtCus_Telephone);
  154. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtCus_FixedPhone);
  155. //获取客户意向程度
  156. this.GetIntentLevel();
  157. #region 绑定客户类型
  158. item = new ListItem();
  159. item.Text = "婚纱";
  160. item.Value = "0";
  161. this.comType.Items.Add(item);
  162. item = new ListItem();
  163. item.Text = "儿童";
  164. item.Value = "1";
  165. this.comType.Items.Add(item);
  166. item = new ListItem();
  167. item.Text = "写真";
  168. this.item.Value = "2";
  169. this.comType.Items.Add(item);
  170. item = new ListItem();
  171. item.Text = "服务套系";
  172. item.Value = "3";
  173. this.comType.Items.Add(item);
  174. item = new ListItem();
  175. item.Text = "婚庆套系";
  176. item.Value = "4";
  177. this.comType.Items.Add(item);
  178. #endregion
  179. //跟进人
  180. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevBelongsPerson, IsFirstNodeNull: true);
  181. //流失类型
  182. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAABX", this.cmbtreevClientStatusType, IsFirstNodeNull: true);
  183. //获取客户区域
  184. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAC", this.cmbCus_Region, strHideFiled: "");
  185. //获取客户来源
  186. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAF", this.cmbCus_CustomerSource, strHideFiled: "BFACBABGBGBJGDHIE,BFAFBCBADBDCABFDD");
  187. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevClientStatus, StrBindData: "跟进中,流失", IsFirstNodeNull: false);
  188. //GMID不等于空的时候 修改状态
  189. if (this.GMID != "" && this.GMID != null)
  190. {
  191. this.btnUnbind.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MicroInfo, CustomAttributes.OperatingAuthority.MicroInfo_Unbind);
  192. modelGP = GPbll.GetModel("GP_CustomerGroupID", this.GMID);
  193. modellist = GMbll.GetModelList("GM_CustomerGroupID='" + this.GMID + "' and GM_Master=1 ");
  194. model = ctbll.GetModel("Cus_CustomerNumber", modellist[0].GM_CustomerID);
  195. this.txtCus_Name.Text = model.Cus_Name;
  196. this.txtCus_Telephone.Text = model.Cus_Telephone;
  197. this.txtCus_Birthday.Text = model.Cus_Birthday;
  198. this.chkCus_Lunar.Checked = model.Cus_BirthdayLunar == "1" ? true : false;
  199. this.txtCus_Address.Text = model.Cus_Address;
  200. if (model.Cus_Sex == false)
  201. {
  202. this.rdoCus_Sex1_1.Checked = true;
  203. }
  204. else
  205. {
  206. this.rdoCus_Sex1_2.Checked = true;
  207. }
  208. this.txtCus_FixedPhone.Text = model.Cus_FixedPhone;
  209. this.txtCus_MicroSignal.Text = model.Cus_MicroSignal;
  210. this.txtCus_QQ.Text = model.Cus_QQ;
  211. this.txtCus_WorkUnit.Text = model.Cus_WorkUnit;
  212. this.cmbCus_Region.Text = model.Cus_Region;
  213. this.cmbDegree.Text = modelGP.GP_DegreeOfIntent;
  214. this.cmbtreevClientStatus.TextFindTag(modelGP.GP_CustomerStatus == "意向" ? "跟进中" : modelGP.GP_CustomerStatus);
  215. this.lblClientStatusReason.Text = modelGP.GP_CustomerStatus.Trim() + "原因:";
  216. this.txtClientStatusReason.Text = modelGP.GP_LossReason;
  217. this.cmbtreevClientStatusType.TextFindTag(modelGP.GP_LossType);
  218. if (!string.IsNullOrEmpty(model.Cus_OpenID.Trim()))
  219. {
  220. this.txtMicroID.Text = "已绑定";
  221. }
  222. else
  223. {
  224. this.txtMicroID.Text = "未绑定";
  225. }
  226. if (modelGP.GP_CustomerSource != "")
  227. {
  228. if (modelGP.GP_CustomerSource == "老客户")
  229. { this.chkLKH.Checked = true; chkLKH_Click(null, null); }
  230. else if (modelGP.GP_CustomerSource == "朋友介绍")
  231. { this.chkPYJS.Checked = true; chkPYJS_Click(null, null); }
  232. else
  233. {
  234. this.cmbCus_CustomerSource.Text = modelGP.GP_CustomerSource;
  235. this.chkQT.Checked = true;
  236. this.chkQT_Click(null, null);
  237. }
  238. }
  239. //选中客户类型
  240. switch (modelGP.GP_CustomerType)
  241. {
  242. case 0: this.comType.SelectedIndex = 0; break;
  243. case 1: this.comType.SelectedIndex = 1; break;
  244. case 2: this.comType.SelectedIndex = 2; break;
  245. case 3: this.comType.SelectedIndex = 3; break;
  246. }
  247. //获取沟通记录
  248. this.BindDgvTaskView();
  249. if (modelGP.GP_CustomerStatus.Trim() == "流失")
  250. {
  251. this.panelClientStatusReason.Visible = true;
  252. this.panelBelongsPerson.Visible = false;
  253. }
  254. else if (modelGP.GP_CustomerStatus.Trim() == "意向")
  255. {
  256. this.panelClientStatusReason.Visible = false;
  257. this.panelBelongsPerson.Visible = true;
  258. this.panelBelongsPerson.Location = this.panelClientStatusReason.Location;
  259. if (!String.IsNullOrEmpty(modelGP.GP_BelongsPersonID))
  260. {
  261. this.cmbtreevBelongsPerson.TagFindText(modelGP.GP_BelongsPersonID);
  262. }
  263. }
  264. else
  265. {
  266. this.cmbtreevClientStatus.Enabled = false;
  267. }
  268. }
  269. else
  270. {
  271. this.panelBelongsPerson.Visible = true;
  272. this.panelBelongsPerson.Location = this.panelClientStatusReason.Location;
  273. this.cmbtreevBelongsPerson.TagFindText(userID);
  274. }
  275. cmbCus_CustomerSource.Enabled = false;
  276. }
  277. /// <summary>
  278. /// 解绑
  279. /// </summary>
  280. /// <param name="sender"></param>
  281. /// <param name="e"></param>
  282. void btnUnbind_Click(object sender, EventArgs e)
  283. {
  284. if (this.txtMicroID.Text.Trim() == "已绑定")
  285. {
  286. if (MessageBoxCustom.Show("是否要解除绑定?", "温馨提示!", MessageBoxButtons.YesNo) == DialogResult.No)
  287. { return; }
  288. LYFZ.Model.Model_ErpCustomer modelA = ctbll.GetModel(model.ID);
  289. modelA.Cus_OpenID = "";
  290. modelA.Cus_UpdateDateTime = SDateTime.Now;
  291. modelA.Cus_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  292. if (ctbll.Update(modelA))
  293. {
  294. MessageBoxCustom.Show("解绑成功!");
  295. this.txtMicroID.Text = "未绑定";
  296. }
  297. else
  298. { MessageBoxCustom.Show("解绑失败"); }
  299. }
  300. }
  301. /// <summary>
  302. /// 窗体关闭时
  303. /// </summary>
  304. void FrmAddInterestedBuyers_FormClosing(object sender, FormClosingEventArgs e)
  305. {
  306. if (IsAdd)
  307. { this.DialogResult = DialogResult.OK; }
  308. }
  309. /// <summary>
  310. /// 添加沟通记录
  311. /// </summary>
  312. void btnAddcommunication_Click(object sender, EventArgs e)
  313. {
  314. //如果GMID等于空就是没人客户存在
  315. if (this.GMID != "")
  316. {
  317. LYFZ.Software.MainBusiness.CameraControlBook.SuperSmallForm.A_AddCommunicateRecords addfrm = new CameraControlBook.SuperSmallForm.A_AddCommunicateRecords();
  318. addfrm.StrClientNumber = this.GMID;
  319. addfrm.EnumClientServiceTaskType = LYFZ.EnumPublic.ClientServiceTaskType.意向跟踪;
  320. addfrm.EnumClientServiceTaskItem = LYFZ.EnumPublic.ClientServiceTaskItem.意向客户;
  321. addfrm.Areminderdate = true;
  322. addfrm.ShowDialog();
  323. if (addfrm.IsSaveed)
  324. { this.BindDgvTaskView(); }
  325. }
  326. else
  327. { MessageBoxCustom.Show("请先添加信息!"); }
  328. }
  329. /// <summary>
  330. /// 保存
  331. /// </summary>
  332. /// <param name="sender"></param>
  333. /// <param name="e"></param>
  334. void btnSave_Click(object sender, EventArgs e)
  335. {
  336. try
  337. {
  338. clist = new List<Helper.CommandInfo>();
  339. #region 手机存在
  340. if (string.IsNullOrEmpty(this.txtCus_Name.Text.Trim()))
  341. { MessageBoxCustom.Show("客户姓名不能为空"); return; }
  342. string StrPhone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtCus_Telephone);
  343. if (!string.IsNullOrEmpty(StrPhone))
  344. {
  345. if (StrPhone.Length != 11)
  346. { MessageBoxCustom.Show("手机号码必须为11位数!"); return; }
  347. }
  348. if (this.chkQT.Checked == true && string.IsNullOrEmpty(this.cmbCus_CustomerSource.Text.Trim()))
  349. { MessageBoxCustom.Show("请选择客户来源"); return; }
  350. int intMasse = this.txtCus_Birthday.CheckDateValue(this.txtCus_Birthday, this.chkCus_Lunar);
  351. if (intMasse == 1) { MessageBoxCustom.Show("客户生日日期格式输入错误!"); return; }
  352. else if (intMasse == 2)
  353. { MessageBoxCustom.Show("客户生日:" + this.txtCus_Birthday.StrValue.Trim() + "不是公历日期,若要保存请勾上农历!"); return; }
  354. if (comType.Text == "")
  355. { MessageBoxCustom.Show("请选择客户类型"); return; }
  356. if (string.IsNullOrEmpty(this.cmbtreevClientStatus.Text.Trim()))
  357. { MessageBoxCustom.Show("请选择客户状态!"); return; }
  358. else
  359. {
  360. switch (this.cmbtreevClientStatus.Text.Trim())
  361. {
  362. case "流失":
  363. if (string.IsNullOrEmpty(this.cmbtreevClientStatusType.Text.Trim()))
  364. { MessageBoxCustom.Show("请选择 或 输入流失类型!"); return; }
  365. break;
  366. default: break;
  367. }
  368. }
  369. if (this.GMID == "" && selected == false)
  370. {
  371. if (!string.IsNullOrEmpty(StrPhone))
  372. {
  373. DataTable tblClient = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_Telephone = '" + StrPhone + "'", ShowColumnName: "ID").Tables[0];
  374. if (tblClient.Rows.Count > 0)
  375. { MessageBoxCustom.Show("手机号已存在"); return; }
  376. }
  377. }
  378. else
  379. {
  380. if (!string.IsNullOrEmpty(StrPhone))
  381. {
  382. DataTable tblClient = orbll.GetView_Custom("tb_ErpCustomer cus left join tb_ErpCustomerGroupMembers gm on gm.GM_CustomerID=cus.Cus_CustomerNumber left join tb_ErpCustomerGroup gp on gm.GM_CustomerGroupID=gp.GP_CustomerGroupID",
  383. StrWhere: "Cus_Telephone = '" + StrPhone + "' and GP_CustomerGroupID!='" + this.GMID + "'", ShowColumnName: "cus.ID").Tables[0];
  384. if (tblClient.Rows.Count > 0)
  385. { MessageBoxCustom.Show("手机号已存在"); return; }
  386. }
  387. }
  388. if (!string.IsNullOrEmpty(txtCus_MicroSignal.Text.Trim()))
  389. {
  390. string sql = " ";
  391. if (model != null)
  392. {
  393. sql = " select * from tb_erpcustomer where Cus_MicroSignal = '" + txtCus_MicroSignal.Text + "' and Cus_CustomerNumber != '" + model.Cus_CustomerNumber + "' ";
  394. }
  395. else
  396. {
  397. sql = " select * from tb_erpcustomer where Cus_MicroSignal = '" + txtCus_MicroSignal.Text + "' ";
  398. }
  399. DataTable tblClient = orbll.GetView_Custom(sql).Tables[0];
  400. if (tblClient.Rows.Count > 0)
  401. { MessageBoxCustom.Show("当前微信号重复,请核实数据!"); return; }
  402. }
  403. if (string.IsNullOrEmpty(txtCus_MicroSignal.Text.Trim()) && string.IsNullOrEmpty(txtCus_Telephone.Text.Trim()))
  404. {
  405. MessageBoxCustom.Show("客户电话和微信号至少填写一个!"); return;
  406. }
  407. #endregion
  408. //新建
  409. if (this.GMID == "")
  410. {
  411. model = new Model.Model_ErpCustomer();
  412. modelGP = new Model.Model_ErpCustomerGroup();
  413. modelGM = new Model.Model_ErpCustomerGroupMembers();
  414. #region Model 添加
  415. if (this.cmbtreevBelongsPerson.Tag == null)
  416. {
  417. MessageBoxCustom.Show("请选择跟进人!"); return;
  418. }
  419. DateTime strTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  420. string Kehuzu = LYFZ.BLL.BLL_ErpCustomer.GetNewClientGroupNumber();
  421. //客户组表
  422. modelGP.GP_CustomerGroupID = Kehuzu;
  423. modelGP.GP_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  424. modelGP.GP_GroupType = 2;
  425. item = comType.SelectedItem as ListItem;
  426. modelGP.GP_CustomerType = Convert.ToInt32(item.Value);
  427. modelGP.GP_DegreeOfIntent = this.cmbDegree.Text;
  428. modelGP.GP_CustomerStatus = this.cmbtreevClientStatus.Text.Trim() == "跟进中" ? "意向" : this.cmbtreevClientStatus.Text.Trim();
  429. modelGP.GP_LossReason = this.txtClientStatusReason.Text.Trim();
  430. modelGP.GP_LossType = this.cmbtreevClientStatusType.Text.Trim();
  431. modelGP.GP_CreateDatetime = strTime;
  432. modelGP.GP_CreateName = userID;
  433. if (this.chkLKH.Checked == false && this.chkPYJS.Checked == false && this.chkQT.Checked == false)
  434. { modelGP.GP_CustomerSource = ""; }
  435. if (this.chkLKH.Checked == true)
  436. { modelGP.GP_CustomerSource = "老客户"; }
  437. if (this.chkPYJS.Checked == true)
  438. { modelGP.GP_CustomerSource = "朋友介绍"; }
  439. if (this.chkQT.Checked == true && this.cmbCus_CustomerSource.Text != "")
  440. { modelGP.GP_CustomerSource = this.cmbCus_CustomerSource.Text; }
  441. modelGP.GP_Remark = "";
  442. modelGP.GP_OrderNumber = "";
  443. modelGP.GP_LossReason = "";
  444. modelGP.GP_IntroducerCustomerID = "";
  445. modelGP.GP_BelongsPersonID = this.cmbtreevBelongsPerson.Tag.ToString().Trim();
  446. modelGP.GP_ISIntentionCustomer = 1;
  447. clist.Add(GPbll.GetAddCommandInfo(modelGP));
  448. //用户信息表
  449. //是否选出来的数据 是则修改
  450. if (this.selected)
  451. {
  452. model = ctbll.GetModel(this.UsertID);
  453. model.Cus_Name = LYFZ.BLL.OtherCommonModel.ClearSpecialCharacter(this.txtCus_Name.Text);
  454. model.Cus_NamePinyin = LYFZ.Command.Command_ChineseToPinyin.GetChineseSpellPinyin(model.Cus_Name).ToLower();
  455. if (this.rdoCus_Sex1_1.Checked == true)
  456. { model.Cus_Sex = false; }
  457. else { model.Cus_Sex = true; }
  458. //判断生日是否有填
  459. model.Cus_Birthday = this.txtCus_Birthday.StrValue.Trim();
  460. if (model.Cus_Birthday != "")
  461. {
  462. model.Cus_Zodiac = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(this.txtCus_Birthday.StrValue.Trim(), this.chkCus_Lunar.Checked);
  463. if (chkCus_Lunar.Checked == true)
  464. { model.Cus_BirthdayLunar = "1"; }
  465. else { model.Cus_BirthdayLunar = "0"; }
  466. }
  467. model.Cus_QQ = this.txtCus_QQ.Text.ToString().Trim();
  468. model.Cus_MicroSignal = this.txtCus_MicroSignal.Text.ToString().Trim();
  469. model.Cus_Telephone = StrPhone;
  470. model.Cus_FixedPhone = this.txtCus_FixedPhone.Text.ToString().Trim();
  471. model.Cus_Region = this.cmbCus_Region.Text.ToString().Trim();
  472. model.Cus_Address = this.txtCus_Address.Text.ToString().Trim();
  473. model.Cus_WorkUnit = this.txtCus_WorkUnit.Text.ToString().Trim();
  474. clist.Add(ctbll.GetUpdateCommandInfo(model));
  475. }
  476. else
  477. {
  478. model.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber();
  479. model.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  480. //model.Cus_Type = "";
  481. //model.Cus_ServiceType = "other";
  482. model.Cus_Name = LYFZ.BLL.OtherCommonModel.ClearSpecialCharacter(this.txtCus_Name.Text);
  483. model.Cus_NamePinyin = LYFZ.Command.Command_ChineseToPinyin.GetChineseSpellPinyin(model.Cus_Name).ToLower();
  484. if (this.rdoCus_Sex1_1.Checked == true)
  485. { model.Cus_Sex = false; }
  486. else
  487. { model.Cus_Sex = true; }
  488. //判断生日是否有填
  489. model.Cus_Birthday = this.txtCus_Birthday.StrValue.Trim();
  490. if (model.Cus_Birthday != "")
  491. {
  492. model.Cus_Zodiac = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(this.txtCus_Birthday.StrValue.Trim(), this.chkCus_Lunar.Checked);
  493. if (chkCus_Lunar.Checked == true)
  494. { model.Cus_BirthdayLunar = "1"; }
  495. else { model.Cus_BirthdayLunar = "0"; }
  496. }
  497. else
  498. {
  499. model.Cus_Birthday = "";
  500. model.Cus_BirthdayLunar = "";
  501. model.Cus_Zodiac = "";
  502. }
  503. model.Cus_DayForMarriage = "";
  504. model.Cus_DayForMarriageLunar = "";
  505. model.Cus_Relations = "";
  506. model.Cus_QQ = this.txtCus_QQ.Text.ToString().Trim();
  507. model.Cus_MicroSignal = this.txtCus_MicroSignal.Text.ToString().Trim();
  508. model.Cus_Telephone = StrPhone;
  509. model.Cus_FixedPhone = this.txtCus_FixedPhone.Text.ToString().Trim();
  510. model.Cus_Region = this.cmbCus_Region.Text.ToString().Trim();
  511. model.Cus_Address = this.txtCus_Address.Text.ToString().Trim();
  512. model.Cus_WorkUnit = this.txtCus_WorkUnit.Text.ToString().Trim();
  513. model.Cus_BabyWeight = "";
  514. model.Cus_BornHospital = "";
  515. model.Cus_CustomerSource = "";
  516. model.Cus_Status = "";
  517. model.Cus_LossReason = "";
  518. model.Cus_DegreeOfIntent = "";
  519. model.Cus_TrackName = "";
  520. model.Cus_Remark = "";
  521. model.Cus_CreateDateTime = strTime;
  522. model.Cus_Grade = "";
  523. model.Cus_CreateName = userID;
  524. clist.Add(ctbll.GetAddCommandInfo(model));
  525. }
  526. //成员表
  527. //如果选中的是儿童 关系处不是本人
  528. if (comType.Text == "儿童")
  529. {
  530. modelGM.GM_CustomerGroupID = Kehuzu;
  531. modelGM.GM_CustomerID = model.Cus_CustomerNumber;
  532. modelGM.GM_Master = 1;
  533. modelGM.GM_ProtagonistCustomer = 0;
  534. modelGM.GM_RelatedPersonID = model.Cus_CustomerNumber;
  535. modelGM.GM_Relation = "亲人";
  536. modelGM.GM_IsOrder = 0;
  537. modelGM.GM_IsOrderNumber = "";
  538. }
  539. else
  540. {
  541. modelGM.GM_CustomerGroupID = Kehuzu;
  542. modelGM.GM_CustomerID = model.Cus_CustomerNumber;
  543. modelGM.GM_Master = 1;
  544. modelGM.GM_ProtagonistCustomer = 0;
  545. modelGM.GM_RelatedPersonID = model.Cus_CustomerNumber;
  546. modelGM.GM_Relation = "本人";
  547. modelGM.GM_IsOrder = 0;
  548. modelGM.GM_IsOrderNumber = "";
  549. }
  550. modelGM.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  551. clist.Add(GMbll.GetAddCommandInfo(modelGM));
  552. #endregion
  553. if (clist.Count > 0)
  554. {
  555. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) >= 0)
  556. {
  557. DAL_ErpCustomer.UpdateAggregationCustomer(modelGP.GP_CustomerGroupID);
  558. this.GMID = Kehuzu;
  559. this.IsAdd = true;
  560. //日志
  561. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.添加客户资料, "添加儿童版客户资料:'" + model.Cus_Name + "';客户组=" + modelGM.GM_CustomerGroupID + ",时间:" + SDateTime.Now, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  562. MessageBoxCustom.Show("保存成功");
  563. }
  564. else
  565. { MessageBoxCustom.Show("保存失败!"); }
  566. return;
  567. }
  568. }
  569. //修改
  570. else
  571. {
  572. clist = new List<Helper.CommandInfo>();
  573. modelGP = GPbll.GetModel("GP_CustomerGroupID", this.GMID);
  574. modellist = GMbll.GetModelList("GM_CustomerGroupID='" + this.GMID + "' and GM_Master=1 ");
  575. modelGM = modellist[0];
  576. model = ctbll.GetModel("Cus_CustomerNumber", modellist[0].GM_CustomerID);
  577. model.Cus_Name = this.txtCus_Name.Text;
  578. model.Cus_Sex = this.rdoCus_Sex1_1.Checked == true ? false : true;
  579. model.Cus_Telephone = StrPhone;
  580. model.Cus_Birthday = this.txtCus_Birthday.StrValue;
  581. model.Cus_BirthdayLunar = this.chkCus_Lunar.Checked == true ? "1" : "0";
  582. model.Cus_Address = this.txtCus_Address.Text;
  583. model.Cus_FixedPhone = this.txtCus_FixedPhone.Text;
  584. model.Cus_MicroSignal = this.txtCus_MicroSignal.Text;
  585. model.Cus_QQ = this.txtCus_QQ.Text;
  586. model.Cus_WorkUnit = this.txtCus_WorkUnit.Text;
  587. model.Cus_Region = this.cmbCus_Region.Text;
  588. clist.Add(ctbll.GetUpdateCommandInfo(model));
  589. item = comType.SelectedItem as ListItem;
  590. modelGP.GP_CustomerType = Convert.ToInt32(item.Value);
  591. modelGP.GP_DegreeOfIntent = cmbDegree.Text;
  592. modelGP.GP_CustomerStatus = this.cmbtreevClientStatus.Text.Trim() == "跟进中" ? "意向" : this.cmbtreevClientStatus.Text.Trim();
  593. modelGP.GP_LossType = this.cmbtreevClientStatusType.Text.Trim();
  594. modelGP.GP_LossReason = this.txtClientStatusReason.Text.Trim();
  595. if (this.chkLKH.Checked == false && this.chkPYJS.Checked == false && this.chkQT.Checked == false)
  596. {
  597. modelGP.GP_CustomerSource = "";
  598. }
  599. if (this.chkLKH.Checked == true)
  600. {
  601. modelGP.GP_CustomerSource = "老客户";
  602. }
  603. if (this.chkPYJS.Checked == true)
  604. {
  605. modelGP.GP_CustomerSource = "朋友介绍";
  606. }
  607. if (this.chkQT.Checked == true && this.cmbCus_CustomerSource.Text != "")
  608. {
  609. modelGP.GP_CustomerSource = this.cmbCus_CustomerSource.Text;
  610. }
  611. if (this.cmbtreevBelongsPerson.Tag != null && this.cmbtreevBelongsPerson.Visible)
  612. {
  613. modelGP.GP_BelongsPersonID = this.cmbtreevBelongsPerson.Tag.ToString().Trim();
  614. }
  615. clist.Add(GPbll.GetUpdateCommandInfo(modelGP));
  616. if (item.Value == "1")
  617. {
  618. modelGM.GM_Master = 1;
  619. modelGM.GM_ProtagonistCustomer = 0;
  620. modelGM.GM_Relation = "亲人";
  621. clist.Add(GMbll.GetUpdateCommandInfo(modelGM));
  622. }
  623. else
  624. {
  625. modelGM.GM_Master = 1;
  626. modelGM.GM_ProtagonistCustomer = 0;
  627. modelGM.GM_Relation = "本人";
  628. clist.Add(GMbll.GetUpdateCommandInfo(modelGM));
  629. }
  630. if (clist.Count > 0)
  631. {
  632. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) >= 0)
  633. {
  634. DAL_ErpCustomer.UpdateAggregationCustomer(modelGP.GP_CustomerGroupID);
  635. this.IsAdd = true;
  636. //日志
  637. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.修改客户资料, "修改儿童版客户资料:'" + model.Cus_Name + "',客户组:" + modelGM.GM_CustomerGroupID + ",时间:" + SDateTime.Now, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  638. MessageBoxCustom.Show("保存成功");
  639. }
  640. else { MessageBoxCustom.Show("保存失败!"); }
  641. return;
  642. }
  643. }
  644. }
  645. catch (Exception ex)
  646. { MessageBoxCustom.Show(ex.Message); }
  647. }
  648. /// <summary>
  649. /// 手机号匹配
  650. /// </summary>
  651. void txtCus_Telephone_TextChanged(object sender, EventArgs e)
  652. {
  653. try
  654. {
  655. if (this.GMID == "")
  656. {
  657. string StrPhone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtCus_Telephone);
  658. if (StrPhone != "")
  659. {
  660. Is = true;
  661. DataTable tblClient = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_Telephone Like '" + StrPhone.Trim() + "%'", ShowColumnName: "ID,Cus_Name,Cus_Telephone,Cus_Birthday,Cus_BirthdayLunar,Cus_Address,Cus_Sex,Cus_FixedPhone,Cus_MicroSignal,Cus_QQ,Cus_WorkUnit,Cus_Region").Tables[0];
  662. if (tblClient.Rows.Count > 0)
  663. {
  664. if (StrPhone.Length == 11 && tblClient.Rows.Count == 1)
  665. {
  666. if (MessageBoxCustom.Show("有一条与客户相关的数据,是否加载!", "提示消息!", MessageBoxButtons.YesNo) == DialogResult.Yes)
  667. {
  668. this.UsertID = Convert.ToInt32(tblClient.Rows[0]["ID"].ToString());
  669. this.txtCus_Name.Text = tblClient.Rows[0]["Cus_Name"].ToString();
  670. this.txtCus_Telephone.Text = tblClient.Rows[0]["Cus_Telephone"].ToString();
  671. this.txtCus_Birthday.Text = tblClient.Rows[0]["Cus_Birthday"].ToString();
  672. this.chkCus_Lunar.Checked = tblClient.Rows[0]["Cus_BirthdayLunar"].ToString() == "1" ? true : false;
  673. this.txtCus_Address.Text = tblClient.Rows[0]["Cus_Address"].ToString();
  674. if (Convert.ToBoolean(tblClient.Rows[0]["Cus_Sex"].ToString()) == false)
  675. { this.rdoCus_Sex1_1.Checked = true; }
  676. else
  677. { this.rdoCus_Sex1_2.Checked = true; }
  678. this.txtCus_FixedPhone.Text = tblClient.Rows[0]["Cus_FixedPhone"].ToString();
  679. this.txtCus_MicroSignal.Text = tblClient.Rows[0]["Cus_MicroSignal"].ToString();
  680. this.txtCus_QQ.Text = tblClient.Rows[0]["Cus_QQ"].ToString();
  681. this.txtCus_WorkUnit.Text = tblClient.Rows[0]["Cus_WorkUnit"].ToString();
  682. this.cmbCus_Region.Text = tblClient.Rows[0]["Cus_Region"].ToString();
  683. this.selected = true;
  684. this.txtCus_Name.Enabled = false;
  685. this.txtCus_Telephone.Enabled = false;
  686. this.panXiangxi.Visible = false;
  687. return;
  688. }
  689. }
  690. this.panXiangxi.Visible = true;
  691. this.txtXiangxi.Text = "查找到 " + tblClient.Rows.Count + "条,相关客户数据";
  692. }
  693. else
  694. { this.panXiangxi.Visible = false; }
  695. }
  696. else
  697. { this.panXiangxi.Visible = false; }
  698. }
  699. }
  700. catch (Exception ex)
  701. { MessageBoxCustom.Show(ex.Message); }
  702. }
  703. /// <summary>
  704. /// 姓名匹配
  705. /// </summary>
  706. /// <param name="sender"></param>
  707. /// <param name="e"></param>
  708. void txtCus_Name_EventTextBoxEx_TextChanged(object sender, EventArgs e)
  709. {
  710. try
  711. {
  712. if (this.GMID == "")
  713. {
  714. if (this.txtCus_Name.Text != "")
  715. {
  716. Is = false;
  717. DataTable tblClient = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: " Cus_Name like '%" + this.txtCus_Name.Text.Trim() + "%' and Cus_Type != '儿童'", ShowColumnName: "ID").Tables[0];
  718. if (tblClient.Rows.Count > 0)
  719. {
  720. this.panXiangxi.Visible = true;
  721. this.txtXiangxi.Text = "查找到 " + tblClient.Rows.Count + "条,相关客户数据";
  722. }
  723. else
  724. { this.panXiangxi.Visible = false; }
  725. }
  726. else { this.panXiangxi.Visible = false; }
  727. }
  728. }
  729. catch (Exception ex)
  730. { MessageBoxCustom.Show(ex.Message); }
  731. }
  732. /// <summary>
  733. /// 选择详情
  734. /// </summary>
  735. /// <param name="sender"></param>
  736. /// <param name="e"></param>
  737. void btnXiangXi_Click(object sender, EventArgs e)
  738. {
  739. try
  740. {
  741. if (this.GMID == "")
  742. {
  743. string StrPhone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtCus_Telephone);
  744. LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.OrderHistoryCustomerSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.OrderHistoryCustomerSuperSmallForm();
  745. if (Is)
  746. { frm.StrWhere = "Cus_Telephone Like '" + StrPhone.Trim() + "%'"; }
  747. else
  748. { frm.StrWhere = " Cus_Name like '%" + this.txtCus_Name.Text.Trim() + "%' and Cus_Type != '儿童'"; }
  749. frm.ShowDialog();
  750. if (frm.IsSaveed)
  751. {
  752. //判断是否有相同客户存在
  753. if (frm.model != null)
  754. {
  755. UsertID = frm.model.ID;
  756. //移除事件
  757. this.txtCus_Name.EventTextBoxEx_TextChanged -= txtCus_Name_EventTextBoxEx_TextChanged;
  758. this.txtCus_Telephone.TextChanged -= txtCus_Telephone_TextChanged;
  759. this.txtCus_Name.Text = frm.model.Cus_Name;
  760. this.txtCus_Telephone.Text = frm.model.Cus_Telephone;
  761. //添加回来
  762. this.txtCus_Name.EventTextBoxEx_TextChanged += txtCus_Name_EventTextBoxEx_TextChanged;
  763. this.txtCus_Telephone.TextChanged += txtCus_Telephone_TextChanged;
  764. this.txtCus_Birthday.Text = frm.model.Cus_Birthday;
  765. this.chkCus_Lunar.Checked = frm.model.Cus_BirthdayLunar == "1" ? true : false;
  766. this.txtCus_Address.Text = frm.model.Cus_Address;
  767. if (frm.model.Cus_Sex == false)
  768. { this.rdoCus_Sex1_1.Checked = true; }
  769. else
  770. { this.rdoCus_Sex1_2.Checked = true; }
  771. this.txtCus_FixedPhone.Text = frm.model.Cus_FixedPhone;
  772. this.txtCus_MicroSignal.Text = frm.model.Cus_MicroSignal;
  773. this.txtCus_QQ.Text = frm.model.Cus_QQ;
  774. this.txtCus_WorkUnit.Text = frm.model.Cus_WorkUnit;
  775. this.cmbCus_Region.Text = frm.model.Cus_Region;
  776. this.txtCus_Name.Enabled = false;
  777. this.txtCus_Telephone.Enabled = false;
  778. this.selected = true;
  779. }
  780. this.panXiangxi.Visible = false;
  781. }
  782. }
  783. }
  784. catch (Exception ex)
  785. { MessageBoxCustom.Show(ex.Message); }
  786. }
  787. /// <summary>
  788. /// 打电话按钮
  789. /// </summary>
  790. void btnDial_Click(object sender, EventArgs e)
  791. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.PhoneCall(this.txtCus_Telephone); }
  792. /// <summary>
  793. /// QQ按钮
  794. /// </summary>
  795. void btnQQCall_Click(object sender, EventArgs e)
  796. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.QQCall(txtCus_QQ.Text.Trim()); }
  797. /// <summary>
  798. /// 重置按钮
  799. /// </summary>
  800. void btnClear_Click(object sender, EventArgs e)
  801. {
  802. this.txtCus_Name.Text = "";
  803. this.txtCus_Telephone.Text = "";
  804. this.txtCus_Birthday.Text = "";
  805. this.chkCus_Lunar.Checked = false;
  806. this.txtCus_Address.Text = "";
  807. this.rdoCus_Sex1_1.Checked = true;
  808. this.txtCus_FixedPhone.Text = "";
  809. this.txtCus_MicroSignal.Text = "";
  810. this.txtCus_QQ.Text = "";
  811. this.txtCus_WorkUnit.Text = "";
  812. this.cmbCus_Region.Text = "";
  813. this.comType.Text = "";
  814. this.chkLKH.Checked = false;
  815. this.chkQT.Checked = false;
  816. this.chkPYJS.Checked = false;
  817. this.cmbCus_CustomerSource.Text = "";
  818. this.txtCus_Name.Enabled = true;
  819. this.txtCus_Telephone.Enabled = true;
  820. this.selected = false;
  821. }
  822. /// <summary>
  823. /// 关闭
  824. /// </summary>
  825. void btnClose_Click(object sender, EventArgs e)
  826. { this.Close(); }
  827. /// <summary>
  828. /// 删除沟通记录
  829. /// </summary>
  830. void btnDelete_Click(object sender, EventArgs e)
  831. {
  832. try
  833. {
  834. BLL.BLL_ErpCustomersTrackRecord bll = new BLL.BLL_ErpCustomersTrackRecord();
  835. if (MessageBoxCustom.Show("确定删除!", "提示消息!", MessageBoxButtons.YesNo) == DialogResult.Yes)
  836. {
  837. if (bll.Delete(Convert.ToInt32(dgvData.CurrentRow.Cells["ID"].Value.ToString().Trim())))
  838. { BindDgvTaskView(); MessageBoxCustom.Show("删除成功!"); }
  839. else
  840. { MessageBoxCustom.Show("删除失败!"); }
  841. }
  842. }
  843. catch (Exception ex)
  844. { MessageBoxCustom.Show(ex.Message); }
  845. }
  846. /// <summary>
  847. /// 设置客户来源
  848. /// </summary>
  849. /// <param name="sender"></param>
  850. /// <param name="e"></param>
  851. void btnCustomerSource_Click(object sender, EventArgs e)
  852. {
  853. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet set = new InitialSet.FrmSystemSet();
  854. set.TypeName = "AAAAAAF";
  855. set.Version = "Version";
  856. if (set.ShowDialog() == DialogResult.OK)
  857. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAF", this.cmbCus_CustomerSource, strHideFiled: "BFACBABGBGBJGDHIE,BFAFBCBADBDCABFDD"); }
  858. }
  859. /// <summary>
  860. /// 设置客户区域
  861. /// </summary>
  862. /// <param name="sender"></param>
  863. /// <param name="e"></param>
  864. void btnRegion_Click(object sender, EventArgs e)
  865. {
  866. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet set = new InitialSet.FrmSystemSet();
  867. set.TypeName = "AAAAAAC";
  868. set.Version = "Version";
  869. if (set.ShowDialog() == DialogResult.OK)
  870. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAC", this.cmbCus_Region, strHideFiled: ""); }
  871. }
  872. /// <summary>
  873. /// 客户状态
  874. /// </summary>
  875. /// <param name="sender"></param>
  876. /// <param name="e"></param>
  877. void cmbtreevClientStatus_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  878. {
  879. switch (this.cmbtreevClientStatus.Text.Trim())
  880. {
  881. case "流失":
  882. this.panelClientStatusReason.Visible = true;
  883. this.panelBelongsPerson.Visible = false;
  884. this.lblClientStatusReason.Text = this.cmbtreevClientStatus.Text.Trim() + "原因:";
  885. break;
  886. case "跟进中":
  887. this.panelClientStatusReason.Visible = false;
  888. this.panelBelongsPerson.Visible = true;
  889. this.panelBelongsPerson.Location = this.panelClientStatusReason.Location;
  890. break;
  891. default: this.panelClientStatusReason.Visible = false; break;
  892. }
  893. }
  894. /// <summary>
  895. /// 其他
  896. /// </summary>
  897. /// <param name="sender"></param>
  898. /// <param name="e"></param>
  899. void chkQT_Click(object sender, EventArgs e)
  900. {
  901. this.chkLKH.Checked = false;
  902. this.chkPYJS.Checked = false;
  903. this.cmbCus_CustomerSource.Enabled = true;
  904. }
  905. /// <summary>
  906. /// 朋友介绍
  907. /// </summary>
  908. /// <param name="sender"></param>
  909. /// <param name="e"></param>
  910. void chkPYJS_Click(object sender, EventArgs e)
  911. {
  912. this.cmbCus_CustomerSource.Enabled = false;
  913. this.chkLKH.Checked = false;
  914. this.chkQT.Checked = false;
  915. this.cmbCus_CustomerSource.Text = "";
  916. }
  917. /// <summary>
  918. /// 老客户
  919. /// </summary>
  920. /// <param name="sender"></param>
  921. /// <param name="e"></param>
  922. void chkLKH_Click(object sender, EventArgs e)
  923. {
  924. this.chkPYJS.Checked = false;
  925. this.chkQT.Checked = false;
  926. this.cmbCus_CustomerSource.Enabled = false;
  927. this.cmbCus_CustomerSource.Text = "";
  928. }
  929. /// <summary>
  930. /// 列表双击查看备注信息
  931. /// </summary>
  932. /// <param name="sender"></param>
  933. /// <param name="e"></param>
  934. void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
  935. {
  936. if (this.dgvData.Columns[e.ColumnIndex].Name.Trim() == "沟通备注")
  937. {
  938. if(e.RowIndex==-1)
  939. {
  940. return;
  941. }
  942. LYFZ.Software.MainBusiness.CameraControlBook.SuperSmallForm.GetTextRemarkSuperSmallForm frm = new CameraControlBook.SuperSmallForm.GetTextRemarkSuperSmallForm();
  943. frm.Text = "沟通备注";
  944. frm.StrValue = this.dgvData.Rows[e.RowIndex].Cells["沟通备注"].Value.ToString();
  945. frm.ShowDialog();
  946. }
  947. }
  948. /// <summary>
  949. /// 绑定数据
  950. /// </summary>
  951. void BindDgvTaskView()
  952. {
  953. try
  954. {
  955. DataTable tbl = orbll.GetView_Custom("tb_ErpCustomersTrackRecord left join tb_ErpUser on User_EmployeeID = TR_TracePersonID", StrWhere: "TR_CustomerGroupID='" + this.GMID + "'", filedOrder: "TR_CustomerGroupID DESC", ShowColumnName: "tb_ErpCustomersTrackRecord.ID, TR_CustomerGroupID, User_Name as 客服人员, TR_Communicationstatus as 沟通状态, TR_TraceDateTime as 沟通时间, TR_TraceTimeLength as 沟通时长, TR_TraceType as 沟通类型, TR_TraceWay as 沟通方式, TR_SpecificMatters as 具体事项, TR_Remark as 沟通备注").Tables[0];
  956. if (tbl.Rows.Count > 0)
  957. {
  958. if (dgvData.Rows.Count > 0)
  959. { this.dgvData.Rows.Clear(); }
  960. for (int i = 0; i < tbl.Rows.Count; i++)
  961. {
  962. DataGridViewRow row = new DataGridViewRow();
  963. DataGridViewCell cell = null;
  964. cell = new DataGridViewTextBoxCell();
  965. cell.Value = tbl.Rows[i]["客服人员"].ToString().ToString().Trim();
  966. row.Cells.Add(cell);
  967. cell = new DataGridViewTextBoxCell();
  968. cell.Value = tbl.Rows[i]["沟通状态"].ToString();
  969. row.Cells.Add(cell);
  970. cell = new DataGridViewTextBoxCell();
  971. cell.Value = LYFZ.Command.Command_Validate.DateTimeToString(tbl.Rows[i]["沟通时间"], "yyyy-MM-dd");
  972. row.Cells.Add(cell);
  973. cell = new DataGridViewTextBoxCell();
  974. cell.Value = tbl.Rows[i]["沟通时长"].ToString();
  975. row.Cells.Add(cell);
  976. cell = new DataGridViewTextBoxCell();
  977. cell.Value = tbl.Rows[i]["沟通类型"].ToString();
  978. row.Cells.Add(cell);
  979. cell = new DataGridViewTextBoxCell();
  980. cell.Value = tbl.Rows[i]["沟通方式"].ToString();
  981. row.Cells.Add(cell);
  982. cell = new DataGridViewTextBoxCell();
  983. cell.Value = tbl.Rows[i]["具体事项"].ToString();
  984. row.Cells.Add(cell);
  985. cell = new DataGridViewTextBoxCell();
  986. cell.Value = tbl.Rows[i]["沟通备注"].ToString();
  987. row.Cells.Add(cell);
  988. cell = new DataGridViewTextBoxCell();
  989. cell.Value = tbl.Rows[i]["ID"].ToString();
  990. row.Cells.Add(cell);
  991. this.dgvData.Rows.Add(row);
  992. }
  993. }
  994. }
  995. catch (Exception ex)
  996. { MessageBoxCustom.Show(ex.Message); }
  997. }
  998. private void InitializeComponent()
  999. {
  1000. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAddInterestedBuyers));
  1001. this.panelClientStatusReason.SuspendLayout();
  1002. this.panXiangxi.SuspendLayout();
  1003. this.panelBelongsPerson.SuspendLayout();
  1004. this.plFormMainContent.SuspendLayout();
  1005. this.SuspendLayout();
  1006. //
  1007. // btnClientStatusTypeSet
  1008. //
  1009. this.btnClientStatusTypeSet.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnClientStatusTypeSet.BackImg")));
  1010. //
  1011. // txtClientStatusReason
  1012. //
  1013. this.txtClientStatusReason.Lines = new string[0];
  1014. //
  1015. // txtMicroID
  1016. //
  1017. this.txtMicroID.Lines = new string[] {
  1018. "未绑定"};
  1019. //
  1020. // btnUnbind
  1021. //
  1022. this.btnUnbind.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnUnbind.BackImg")));
  1023. this.btnUnbind.Enabled = false;
  1024. //
  1025. // txtCus_Address
  1026. //
  1027. this.txtCus_Address.Lines = new string[0];
  1028. //
  1029. // txtXiangxi
  1030. //
  1031. this.txtXiangxi.Lines = new string[0];
  1032. //
  1033. // btnXiangXi
  1034. //
  1035. this.btnXiangXi.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnXiangXi.BackImg")));
  1036. //
  1037. // txtCus_MicroSignal
  1038. //
  1039. this.txtCus_MicroSignal.Lines = new string[0];
  1040. //
  1041. // btnClear
  1042. //
  1043. this.btnClear.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnClear.BackImg")));
  1044. //
  1045. // btnClose
  1046. //
  1047. this.btnClose.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnClose.BackImg")));
  1048. //
  1049. // btnSave
  1050. //
  1051. this.btnSave.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnSave.BackImg")));
  1052. //
  1053. // btnRegion
  1054. //
  1055. this.btnRegion.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnRegion.BackImg")));
  1056. //
  1057. // btnCustomerSource
  1058. //
  1059. this.btnCustomerSource.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnCustomerSource.BackImg")));
  1060. //
  1061. // btnQQCall
  1062. //
  1063. this.btnQQCall.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnQQCall.BackImg")));
  1064. //
  1065. // btnDial
  1066. //
  1067. this.btnDial.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnDial.BackImg")));
  1068. //
  1069. // txtCus_FixedPhone
  1070. //
  1071. this.txtCus_FixedPhone.Lines = new string[0];
  1072. //
  1073. // txtCus_Name
  1074. //
  1075. this.txtCus_Name.Lines = new string[0];
  1076. //
  1077. // txtCus_QQ
  1078. //
  1079. this.txtCus_QQ.Lines = new string[0];
  1080. //
  1081. // txtCus_WorkUnit
  1082. //
  1083. this.txtCus_WorkUnit.Lines = new string[0];
  1084. //
  1085. // FrmAddInterestedBuyers
  1086. //
  1087. this.BottomBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.BottomBgImage")));
  1088. this.ClientSize = new System.Drawing.Size(930, 610);
  1089. this.CustomBorderStyles.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(63)))), ((int)(((byte)(109)))), ((int)(((byte)(139)))));
  1090. this.Name = "FrmAddInterestedBuyers";
  1091. this.TitleBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.TitleBgImage")));
  1092. this.Controls.SetChildIndex(this.btnAppFormMaximize, 0);
  1093. this.Controls.SetChildIndex(this.btnAppFormExit, 0);
  1094. this.Controls.SetChildIndex(this.btnAppFormMinimize, 0);
  1095. this.Controls.SetChildIndex(this.btnAppFormMenu, 0);
  1096. this.Controls.SetChildIndex(this.btnAppFormSkin, 0);
  1097. this.Controls.SetChildIndex(this.plFormMainContent, 0);
  1098. this.panelClientStatusReason.ResumeLayout(false);
  1099. this.panelClientStatusReason.PerformLayout();
  1100. this.panXiangxi.ResumeLayout(false);
  1101. this.panelBelongsPerson.ResumeLayout(false);
  1102. this.panelBelongsPerson.PerformLayout();
  1103. this.plFormMainContent.ResumeLayout(false);
  1104. this.ResumeLayout(false);
  1105. }
  1106. }
  1107. }