A_CommunicationDetails.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.CameraControlBook.SuperSmallForm
  10. {
  11. public partial class A_CommunicationDetails : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.A_CommunicationDetails
  12. {
  13. LYFZ.BLL.BLL_ErpCustomersTrackRecord ambll = new BLL.BLL_ErpCustomersTrackRecord();
  14. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  15. public A_CommunicationDetails()
  16. {
  17. this.Load += A_CommunicationDetails_Load;
  18. //this.cmbtreevName.ComboBoxTree_NodeMouseClick += cmbtreevName_ComboBoxTree_NodeMouseClick;
  19. this.btnClose.Click += btnClose_Click;
  20. this.btnDelete.Click += btnDelete_Click;
  21. this.btnDelete.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.CommunicationAide, CustomAttributes.OperatingAuthority.Delete);
  22. this.dgvDetails.CellDoubleClick += DgvDetails_CellDoubleClick;
  23. this.btnSearch.Click += BtnSearch_Click;
  24. panelEx3.Visible = true;
  25. //dtpEndDate.Value = DateTime.Now;
  26. //dtpStartDate.Value = DateTime.Now;
  27. }
  28. private void BtnSearch_Click(object sender, EventArgs e)
  29. {
  30. string where = "";
  31. if (!string.IsNullOrEmpty(txtOrdernumber.Text.Trim()))
  32. {
  33. if (!string.IsNullOrEmpty(where))
  34. {
  35. where += " and ";
  36. }
  37. where += "( GP_OrderNumber like '%" + txtOrdernumber.Text.Trim() + "%' or Cus_Name like '%" + txtOrdernumber.Text.Trim() + "%' or Cus_Telephone like '%" + txtOrdernumber.Text.Trim() + "%' )";
  38. }
  39. if (txtOrdernumber.Tag!=null)
  40. {
  41. if (!string.IsNullOrEmpty(where))
  42. {
  43. where += " and ";
  44. }
  45. where += " TR_CustomerID like '%" + txtOrdernumber.Tag.ToString() + "%' ";
  46. }
  47. if (!string.IsNullOrEmpty(dtpStartDate.Text.Trim()))
  48. {
  49. if (!string.IsNullOrEmpty(where))
  50. {
  51. where += " and ";
  52. }
  53. where += " TR_TraceDateTime >='"+ dtpStartDate.Value.ToString("yyyy-MM-dd") + " 00:00:00' ";
  54. }
  55. if (!string.IsNullOrEmpty(dtpEndDate.Text.Trim()))
  56. {
  57. if (!string.IsNullOrEmpty(where))
  58. {
  59. where += " and ";
  60. }
  61. where += " TR_TraceDateTime <='" + dtpEndDate.Value.ToString("yyyy-MM-dd") + " 23:59:59' ";
  62. }
  63. GetDetailLog(where);
  64. }
  65. #region 查看沟通附件;
  66. /// <summary>
  67. /// 双击沟通记录,弹出对话框;
  68. /// </summary>
  69. /// <param name="sender"></param>
  70. /// <param name="e"></param>
  71. private void DgvDetails_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
  72. {
  73. if (this.dgvDetails.SelectedRows.Count > 0)
  74. {
  75. // 沟通id;
  76. string strTrackRecordId = this.dgvDetails.CurrentRow.Cells["ID"].Value.ToString();
  77. // 沟通的顾客编号;
  78. string strCustomerId = this.dgvDetails.CurrentRow.Cells["TR_CustomerID"].Value.ToString();
  79. // 沟通的附件地址;
  80. string strTrackImages = this.dgvDetails.CurrentRow.Cells["TR_Images"].Value.ToString();
  81. // 沟通日期;
  82. string strCommunicateDate = this.dgvDetails.CurrentRow.Cells["沟通时间"].Value.ToString();
  83. // 沟通时长;
  84. string strCommunicateDuration = this.dgvDetails.CurrentRow.Cells["沟通时长"].Value.ToString();
  85. // 沟通事项;
  86. string strCommunicateMatters = this.dgvDetails.CurrentRow.Cells["沟通事项"].Value.ToString();
  87. // 沟通类型;
  88. string strCommunicateType = this.dgvDetails.CurrentRow.Cells["沟通类型"].Value.ToString();
  89. // 沟通方式;
  90. string strCommunicateWay = this.dgvDetails.CurrentRow.Cells["沟通方式"].Value.ToString();
  91. // 沟通备注;
  92. string strCommunicateRemark = this.dgvDetails.CurrentRow.Cells["沟通备注"].Value.ToString();
  93. // 沟通状态;
  94. string strCommunicateState = this.dgvDetails.CurrentRow.Cells["沟通状态"].Value.ToString();
  95. // 下次沟通日期;
  96. string strNextCommunicateDate = this.dgvDetails.CurrentRow.Cells["下次提醒"].Value.ToString();
  97. // 获取顾客信息;
  98. LYFZ.BLL.BLL_ErpCustomer bll = new BLL.BLL_ErpCustomer();
  99. LYFZ.Model.Model_ErpCustomer model = bll.GetModel("Cus_CustomerNumber", strCustomerId);
  100. // 创建查看对话框;
  101. A_AddCommunicateRecords dlg = new A_AddCommunicateRecords();
  102. dlg.IsSaveDailog = false;
  103. //dlg.strTrackRecordId = strTrackRecordId;
  104. //dlg.strCustomerName = model.Cus_Name;
  105. //dlg.strCustomerPhone = model.Cus_Telephone;
  106. dlg.CusCommInfo.strTrackRecordId = strTrackRecordId;
  107. dlg.CusCommInfo.strCustomerName = model.Cus_Name;
  108. dlg.CusCommInfo.strCustomerPhone = model.Cus_Telephone;
  109. dlg.CusCommInfo.strTrackImages = strTrackImages;
  110. dlg.CusCommInfo.strCommunicateDate = strCommunicateDate;
  111. dlg.CusCommInfo.strCommunicateDuration = strCommunicateDuration;
  112. dlg.CusCommInfo.strCommunicateMatters = strCommunicateMatters;
  113. dlg.CusCommInfo.strCommunicateType = strCommunicateType;
  114. dlg.CusCommInfo.strCommunicateWay = strCommunicateWay;
  115. dlg.CusCommInfo.strCommunicateRemark = strCommunicateRemark;
  116. dlg.CusCommInfo.strCommunicateState = strCommunicateState;
  117. dlg.CusCommInfo.strNextCommunicateDate = strNextCommunicateDate;
  118. dlg.ShowDialog();
  119. }
  120. }
  121. #endregion
  122. /// <summary>
  123. /// 客户组编号
  124. /// </summary>
  125. public string StrClientGroupNumber = "";
  126. /// <summary>
  127. /// 客户编号
  128. /// </summary>
  129. public string StrClientNumber = "";
  130. /// <summary>
  131. /// 订单号
  132. /// </summary>
  133. public string StrNumber = "";
  134. /// <summary>
  135. /// 来单批号
  136. /// </summary>
  137. public string StrHctOddnumber = "";
  138. /// <summary>
  139. /// 是否保存
  140. /// </summary>
  141. public bool IsSaveed = false;
  142. /// <summary>
  143. /// 当前登录者的ID
  144. /// </summary>
  145. string strUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  146. /// <summary>
  147. /// 窗体加载
  148. /// </summary>
  149. /// <param name="sender"></param>
  150. /// <param name="e"></param>
  151. void A_CommunicationDetails_Load(object sender, EventArgs e)
  152. {
  153. txtOrdernumber.Text = StrNumber;
  154. if(!string.IsNullOrEmpty(StrClientNumber)&&string.IsNullOrEmpty(txtOrdernumber.Text))
  155. {
  156. string sql = " select Cus_Name from tb_ErpCustomer where Cus_CustomerNumber = '" + StrClientNumber + "' ";
  157. DataTable cusDt = orbll.GetView_Custom(sql).Tables[0];
  158. if(cusDt.Rows.Count>0)
  159. {
  160. txtOrdernumber.Text = cusDt.Rows[0]["Cus_Name"].ToString_s();
  161. }
  162. }
  163. //LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtPhone);
  164. //DataTable tbl = new DataTable();
  165. //TreeNode trNode = null;
  166. //if (!string.IsNullOrEmpty(this.StrNumber) || !string.IsNullOrEmpty(this.StrClientGroupNumber))
  167. //{
  168. // string StrWhere = "";
  169. // if (!string.IsNullOrEmpty(this.StrNumber))
  170. // { StrWhere = "GP_OrderNumber = '" + this.StrNumber + "'"; }
  171. // else if (!string.IsNullOrEmpty(this.StrClientGroupNumber))
  172. // { StrWhere = "GP_CustomerGroupID = '" + this.StrClientGroupNumber + "'"; }
  173. // tbl = orbll.GetView_Custom("tb_ErpCustomerGroupMembers Left Join tb_ErpCustomer on GM_CustomerID = Cus_CustomerNumber Left Join tb_ErpCustomerGroup on GP_CustomerGroupID = GM_CustomerGroupID", StrWhere: StrWhere, filedOrder: "GM_Master DESC", ShowColumnName: "Cus_CustomerNumber,Cus_Type,Cus_Name,Cus_Telephone").Tables[0];
  174. //}
  175. //else if (!string.IsNullOrEmpty(this.StrClientNumber))
  176. //{ tbl = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_CustomerNumber = '" + this.StrClientNumber + "'", ShowColumnName: "Cus_CustomerNumber,Cus_Type,Cus_Name,Cus_Telephone").Tables[0]; }
  177. ////else if (!string.IsNullOrEmpty(this.StrHctOddnumber))
  178. //{
  179. // DataTable dt = orbll.GetView_Custom("tb_ErpHospitalClient", StrWhere: "Hct_Oddnumber = '" + this.StrHctOddnumber + "'", ShowColumnName: "Hct_CustomerName,Hct_MyselfMobile").Tables[0];
  180. // trNode = new TreeNode();
  181. // trNode.Text = dt.Rows[0]["Hct_CustomerName"].ToString().Trim();
  182. // trNode.Tag = dt.Rows[0]["Hct_CustomerName"].ToString().Trim();
  183. // trNode.Name = dt.Rows[0]["Hct_MyselfMobile"].ToString().Trim();
  184. // this.cmbtreevName.Nodes.Add(trNode);
  185. // this.cmbtreevName.TextFindTag(dt.Rows[0]["Hct_CustomerName"].ToString().Trim());
  186. // this.cmbtreevName.Enabled = false;
  187. // this.txtPhone.Text = dt.Rows[0]["Hct_MyselfMobile"].ToString().Trim();
  188. //}
  189. //string StrCurrentClientNumber = "";
  190. //for (int i = 0; i < tbl.Rows.Count; i++)
  191. //{
  192. // if (i == 0)
  193. // {
  194. // trNode = new TreeNode();
  195. // trNode.Text = "";
  196. // trNode.Tag = "";
  197. // trNode.Name = "";
  198. // this.cmbtreevName.Nodes.Add(trNode);
  199. // }
  200. // if (tbl.Rows[i]["Cus_Type"].ToString().Trim() != "儿童")
  201. // {
  202. // if (StrCurrentClientNumber == "")
  203. // { StrCurrentClientNumber = tbl.Rows[i]["Cus_CustomerNumber"].ToString().Trim(); }
  204. // trNode = new TreeNode();
  205. // trNode.Text = tbl.Rows[i]["Cus_Name"].ToString().Trim();
  206. // trNode.Tag = tbl.Rows[i]["Cus_CustomerNumber"].ToString().Trim();
  207. // trNode.Name = tbl.Rows[i]["Cus_Telephone"].ToString().Trim();
  208. // this.cmbtreevName.Nodes.Add(trNode);
  209. // }
  210. //}
  211. //if (!string.IsNullOrEmpty(this.StrNumber))
  212. //{
  213. // this.txtOrdernumber.Text = this.StrNumber;
  214. // this.panelEx3.Visible = true;
  215. //}
  216. //else if (!string.IsNullOrEmpty(this.StrHctOddnumber))
  217. //{
  218. // this.txtOrdernumber.Text = this.StrHctOddnumber;
  219. // this.panelEx3.Visible = true;
  220. //}
  221. //else
  222. //{ this.panelEx4.Width += this.panelEx3.Width; }
  223. //if (this.cmbtreevName.Nodes.Count == 2)
  224. //{ this.GetClientData(StrCurrentClientNumber); }
  225. //this.GetDetailLog("");
  226. BtnSearch_Click(null, null);
  227. txtOrdernumber.Tag = null;
  228. }
  229. /// <summary>
  230. /// 删除数据
  231. /// </summary>
  232. /// <param name="sender"></param>
  233. /// <param name="e"></param>
  234. void btnDelete_Click(object sender, EventArgs e)
  235. {
  236. try
  237. {
  238. if (this.dgvDetails.Rows.Count > 0)
  239. {
  240. if (this.dgvDetails.CurrentRow.Index >= 0 && this.dgvDetails.CurrentCell.ColumnIndex >= 0)
  241. {
  242. if (this.dgvDetails.CurrentRow != null)
  243. {
  244. if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  245. {
  246. if (ambll.Delete(Convert.ToInt32(this.dgvDetails.CurrentRow.Cells["ID"].Value)))
  247. {
  248. this.IsSaveed = true;
  249. MessageBoxCustom.Show("删除成功!");
  250. //this.GetDetailLog(this.cmbtreevName.Tag.ToString().Trim());
  251. BtnSearch_Click(null, null);
  252. }
  253. else
  254. { MessageBoxCustom.Show("删除失败!"); }
  255. }
  256. return;
  257. }
  258. MessageBoxCustom.Show("请选中你要删除的数据!");
  259. }
  260. }
  261. }
  262. catch (Exception ex)
  263. { MessageBoxCustom.Show(ex.Message); }
  264. }
  265. /// <summary>
  266. /// 关闭窗体
  267. /// </summary>
  268. /// <param name="sender"></param>
  269. /// <param name="e"></param>
  270. void btnClose_Click(object sender, EventArgs e)
  271. { this.Close(); }
  272. /// <summary>
  273. /// 选择客户事件
  274. /// </summary>
  275. /// <param name="sender"></param>
  276. /// <param name="e"></param>
  277. void cmbtreevName_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  278. {
  279. this.GetClientData(e.Node.Tag.ToString().Trim());
  280. this.GetDetailLog(e.Node.Tag.ToString().Trim());
  281. }
  282. /// <summary>
  283. /// 获取当前选择的客户信息
  284. /// </summary>
  285. /// <param name="StrTag"></param>
  286. void GetClientData(string StrTag)
  287. {
  288. //this.cmbtreevName.TagFindText(StrTag);
  289. //this.txtPhone.Text = this.cmbtreevName.StrGetName;
  290. }
  291. /// <summary>
  292. /// 定义显示
  293. /// </summary>
  294. void GetDetailLog(string StrTag)
  295. {
  296. //if (string.IsNullOrEmpty(StrTag))
  297. //{
  298. // for (int i = 0; i < this.cmbtreevName.Nodes.Count; i++)
  299. // {
  300. // if (this.cmbtreevName.Nodes[i].Tag.ToString().Trim() != "")
  301. // { StrTag += "'" + this.cmbtreevName.Nodes[i].Tag.ToString().Trim() + "',"; }
  302. // }
  303. //}
  304. //else
  305. //{ StrTag = "'" + StrTag + "'"; }
  306. //DataTable tbl = orbll.GetView_Custom(@"tb_ErpCustomersTrackRecord
  307. // inner join tb_ErpCustomerGroup on TR_CustomerGroupID = GP_CustomerGroupID
  308. // inner join tb_ErpCustomer on TR_CustomerID = Cus_CustomerNumber",
  309. // StrWhere: "TR_CustomerID in (" + StrTag.TrimEnd(',') + ")",
  310. // ShowColumnName: "ID, TR_CustomerID, dbo.fn_CheckUserIDGetUserName(TR_TracePersonID) as 客服人员, TR_Communicationstatus as 沟通状态, dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(TR_TraceDateTime)) as 沟通时间, TR_TraceTimeLength as 沟通时长, TR_TraceType as 沟通类型,TR_SpecificMatters AS 沟通事项 , TR_TraceWay as 沟通方式, dbo.fn_CheckDateTime(TR_CreateDateTime) as 录入时间, dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(TR_NextRemindTime)) AS 下次提醒, TR_Remark as 沟通备注, TR_Images"
  311. //).Tables[0];
  312. if(string.IsNullOrEmpty(StrTag))
  313. {
  314. StrTag = " 1=-1 ";
  315. }
  316. DataTable tbl = orbll.GetView_Custom(@"select distinct
  317. tb_ErpCustomersTrackRecord.ID, TR_CustomerID, dbo.fn_CheckUserIDGetUserName(TR_TracePersonID) as 客服人员,
  318. TR_Communicationstatus as 沟通状态, dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(TR_TraceDateTime)) as 沟通时间,
  319. TR_TraceTimeLength as 沟通时长, TR_TraceType as 沟通类型,TR_SpecificMatters AS 沟通事项 ,
  320. TR_TraceWay as 沟通方式, dbo.fn_CheckDateTime(TR_CreateDateTime) as 录入时间, dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(TR_NextRemindTime)) AS 下次提醒,
  321. TR_Remark as 沟通备注, TR_Images
  322. from tb_ErpCustomersTrackRecord
  323. left join tb_ErpCustomerGroup on TR_CustomerGroupID = GP_CustomerGroupID
  324. left join tb_ErpCustomer on TR_CustomerID = Cus_CustomerNumber" +
  325. " where "+ StrTag
  326. ).Tables[0];
  327. this.dgvDetails.DataSource(tbl, strHideField: "ID,TR_CustomerID,TR_Images");
  328. try
  329. {
  330. this.dgvDetails.Columns["沟通时长"].Width = 60;
  331. this.dgvDetails.Columns["沟通时间"].Width = 70;
  332. this.dgvDetails.Columns["下次提醒"].Width = 70;
  333. this.dgvDetails.Columns["录入时间"].Width = 110;
  334. this.dgvDetails.Columns["沟通备注"].Width = 250;
  335. }
  336. catch
  337. { }
  338. }
  339. }
  340. }