frmSendMicroTemplateSMS.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.Software.MainBusiness.SMSManagement.SmsSend
  6. {
  7. public class frmSendMicroTemplateSMS:LYFZ.Software.UI.SMSManagement.SmsSend.frmSendMicroTemplateSMS
  8. {
  9. public frmSendMicroTemplateSMS() {
  10. this.cbxTList.SelectedIndexChanged += cbxTList_SelectedIndexChanged;
  11. this.txtTitle.EventTextBoxEx_TextChanged += txtTitle_EventTextBoxEx_TextChanged;
  12. this.txtItemName.EventTextBoxEx_TextChanged += txtTitle_EventTextBoxEx_TextChanged;
  13. this.txttiem.EventTextBoxEx_TextChanged += txtTitle_EventTextBoxEx_TextChanged;
  14. this.txtAddress.EventTextBoxEx_TextChanged += txtTitle_EventTextBoxEx_TextChanged;
  15. this.txttext.EventTextBoxEx_TextChanged += txtTitle_EventTextBoxEx_TextChanged;
  16. this.linkTitle.Click += linkTitle_Click;
  17. this.linkItemName.Click += linkItemName_Click;
  18. this.linkAddress.Click += linkAddress_Click;
  19. this.linkText.Click += linkText_Click;
  20. this.linkUrl.Click += linkUrl_Click;
  21. this.txttiem.Text = SDateTime.Now.ToString("yyyy-MM-dd HH:mm");
  22. this.Shown += frmSendMicroTemplateSMS_Shown;
  23. this.btnclose.Click += btnclose_Click;
  24. this.btnSave.Click += btnSave_Click;
  25. BindTemplateNo();
  26. }
  27. bool isEmployee = false;
  28. /// <summary>
  29. /// 是否为员工消息
  30. /// </summary>
  31. public bool IsEmployee
  32. {
  33. get { return isEmployee; }
  34. set { isEmployee = value; }
  35. }
  36. LYFZ.BLL.BLL_SMSTemplates mybllsmsT = new BLL.BLL_SMSTemplates();
  37. void btnSave_Click(object sender, EventArgs e)
  38. {
  39. if (this.lbNo.Text.Trim().Length <= 1)
  40. {
  41. MessageBoxCustom.Show("选择的消息模板还没有配置,请先配置模板后重试。");
  42. return;
  43. }
  44. if (this.txtTitle.Text.Trim().Length <= 0) {
  45. MessageBoxCustom.Show("消息标题不能为空");
  46. return;
  47. }
  48. if (this.txtOPENID.Text.Trim().Length <= 0)
  49. {
  50. MessageBoxCustom.Show("消息接收人OPENID不能为空");
  51. return;
  52. }
  53. string tUrl = this.txtUrl.Text.Trim();
  54. if (tUrl.Trim().Length>0&&!tUrl.Trim().ToLower().StartsWith("https://") && !tUrl.Trim().ToLower().StartsWith("http://"))
  55. {
  56. MessageBoxCustom.Show("消息链接URL格式不正确");
  57. return;
  58. }
  59. string TMessageTitle = this.txtTitle.Text.Trim();
  60. string[] OPENIDs=this.txtOPENID.Text.Trim().Trim(',').Split(',');
  61. string User_Name=LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  62. dynamic tMParameters = null;
  63. switch (this.TemplateNo)
  64. {
  65. case EnumPublic.MicroTemplate.待办事项通知:
  66. if (this.txtItemName.Text.Trim().Length <= 0)
  67. {
  68. MessageBoxCustom.Show("事项名称不能为空");
  69. return;
  70. }
  71. if (this.txttiem.Text.Trim().Length <= 0)
  72. {
  73. MessageBoxCustom.Show("时间不能为空");
  74. return;
  75. }
  76. if (this.txttext.Text.Trim().Length <= 0)
  77. {
  78. MessageBoxCustom.Show("事项内容不能为空");
  79. return;
  80. }
  81. tMParameters = new System.Dynamic.ExpandoObject();
  82. tMParameters.MessageTitle = TMessageTitle;
  83. tMParameters.ItemName = this.txtItemName.Text.Trim();
  84. tMParameters.Time = this.txttiem.Text.Trim();
  85. tMParameters.Remark = this.txttext.Text.Trim();
  86. break;
  87. case EnumPublic.MicroTemplate.拍摄服务提醒:
  88. if (this.txtItemName.Text.Trim().Length <= 0)
  89. {
  90. MessageBoxCustom.Show("拍摄事项不能为空");
  91. return;
  92. }
  93. if (this.txttiem.Text.Trim().Length <= 0)
  94. {
  95. MessageBoxCustom.Show("服务时间不能为空");
  96. return;
  97. }
  98. if (this.txtAddress.Text.Trim().Length <= 0)
  99. {
  100. MessageBoxCustom.Show("服务地点不能为空");
  101. return;
  102. }
  103. if (this.txttext.Text.Trim().Length <= 0)
  104. {
  105. MessageBoxCustom.Show("服务内容不能为空");
  106. return;
  107. }
  108. tMParameters = new System.Dynamic.ExpandoObject();
  109. tMParameters.MessageTitle = TMessageTitle;
  110. tMParameters.ItemName = this.txtItemName.Text.Trim();
  111. tMParameters.Time = this.txttiem.Text.Trim();
  112. tMParameters.Address = this.txtAddress.Text.Trim();
  113. tMParameters.Remark = this.txttext.Text.Trim();
  114. break;
  115. case EnumPublic.MicroTemplate.影楼服务通知:
  116. if (this.txtItemName.Text.Trim().Length <= 0)
  117. {
  118. MessageBoxCustom.Show("服务状态不能为空");
  119. return;
  120. }
  121. if (this.txttiem.Text.Trim().Length <= 0)
  122. {
  123. MessageBoxCustom.Show("服务时间不能为空");
  124. return;
  125. }
  126. if (this.txtAddress.Text.Trim().Length <= 0)
  127. {
  128. MessageBoxCustom.Show("备注不能为空");
  129. return;
  130. }
  131. tMParameters = new System.Dynamic.ExpandoObject();
  132. tMParameters.MessageTitle = TMessageTitle;
  133. tMParameters.ServiceStatus = this.txtItemName.Text.Trim();
  134. tMParameters.Time = this.txttiem.Text.Trim();
  135. tMParameters.Remark = this.txtAddress.Text.Trim();
  136. break;
  137. }
  138. tMParameters.TMessageUrl = tUrl;
  139. if (mybllsmsT.GenerateEventTemplateMessage(this.TemplateNo, OPENIDs, tMParameters, User_Name, LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetCompanyInfoID(), this.lbNo.Text.Trim(), isEmployee))
  140. {
  141. MessageBoxCustom.Show("模板消息发送成功");
  142. this.DialogResult = System.Windows.Forms.DialogResult.OK;
  143. }
  144. else {
  145. MessageBoxCustom.Show("模板消息发送失败,请关闭后重试!");
  146. }
  147. }
  148. void btnclose_Click(object sender, EventArgs e)
  149. {
  150. this.Close();
  151. }
  152. void frmSendMicroTemplateSMS_Shown(object sender, EventArgs e)
  153. {
  154. this.txtOPENID.Text = receiveOPNIDs;
  155. for(int i=0;i<this.cbxTList.Items.Count;i++)
  156. {
  157. if (this.DfTemplateNo == (EnumPublic.MicroTemplate)Enum.Parse(typeof(EnumPublic.MicroTemplate), this.cbxTList.Items[i].ToString()))
  158. {
  159. this.cbxTList.SelectedIndex = i;
  160. }
  161. }
  162. }
  163. string receiveOPNIDs = "";
  164. /// <summary>
  165. /// 接收人的OPENID
  166. /// </summary>
  167. public string ReceiveOPNIDs
  168. {
  169. get { return receiveOPNIDs; }
  170. set { receiveOPNIDs = value; }
  171. }
  172. void linkUrl_Click(object sender, EventArgs e)
  173. {
  174. SetTxtValue(this.txtUrl);
  175. }
  176. void linkText_Click(object sender, EventArgs e)
  177. {
  178. SetTxtValue(this.txttext);
  179. }
  180. void linkAddress_Click(object sender, EventArgs e)
  181. {
  182. SetTxtValue(this.txtAddress);
  183. }
  184. void linkItemName_Click(object sender, EventArgs e)
  185. {
  186. SetTxtValue(this.txtItemName);
  187. }
  188. void linkTitle_Click(object sender, EventArgs e)
  189. {
  190. SetTxtValue(this.txtTitle);
  191. }
  192. void SetTxtValue(ComponentLibrary.TextBoxEx tbox)
  193. {
  194. frmSelectSmsInfo selectInfo = new frmSelectSmsInfo();
  195. if (selectInfo.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  196. {
  197. if (selectInfo.SmsModel.ID > 0)
  198. {
  199. tbox.Text = selectInfo.SmsModel.ST_SMSContent;
  200. }
  201. }
  202. }
  203. void txtTitle_EventTextBoxEx_TextChanged(object sender, EventArgs e)
  204. {
  205. int sumCount = this.txtTitle.Text.Trim().Length +
  206. this.txtItemName.Text.Trim().Length +
  207. this.txttiem.Text.Trim().Length +
  208. this.txtAddress.Text.Trim().Length +
  209. this.txttext.Text.Trim().Length;
  210. this.lbtxtCount.Text = "已输入消息内容长度 " + sumCount.ToString() + " 个字";
  211. }
  212. LYFZ.DAL.DAL_SMSTemplates smsDal = new DAL.DAL_SMSTemplates();
  213. void cbxTList_SelectedIndexChanged(object sender, EventArgs e)
  214. {
  215. if (this.cbxTList.SelectedItem != null)
  216. {
  217. this.TemplateNo = (EnumPublic.MicroTemplate)Enum.Parse(typeof(EnumPublic.MicroTemplate), this.cbxTList.SelectedItem.ToString());
  218. // this.lbtitle.Text = this.TemplateNo.ToString();
  219. this.lbContentExamples.Text = LYFZ.BLL.BLL_SMSTemplates.GetMicroTemplateExample(this.TemplateNo);
  220. this.TemplateIDModel = (LYFZ.Model.Model_SMSTemplates)smsDal.GetModelObject("ST_Category=" + (int)this.TemplateNo + " and ST_DividedShop='" + LYFZ.BLL.BLL_ErpCompanyInfo.CurrentCompanyInfoID + "'");
  221. this.lbNo.Text = this.TemplateIDModel.ST_Remark.Trim();
  222. if (this.lbNo.Text.Trim().Length <= 1)
  223. {
  224. this.lbNo.Text = "没有找到相关模板";
  225. this.lbNo.ForeColor = System.Drawing.Color.Red;
  226. }
  227. else
  228. {
  229. this.lbNo.ForeColor = this.lbtitle.ForeColor;
  230. }
  231. switch (this.TemplateNo)
  232. {
  233. case EnumPublic.MicroTemplate.待办事项通知:
  234. this.plTitle.Visible = true;
  235. this.plItemName.Visible = true;
  236. this.pltime.Visible = true;
  237. this.plAddress.Visible = false;
  238. this.plText.Visible = true;
  239. this.lbItemName.Text = "事项名称";
  240. this.lbtime.Text = "时间";
  241. this.lbtext.Text = "事项内容";
  242. /* this.txtTitle.Visible = "";
  243. this.txtItemName.Visible = true;
  244. this.txttiem.Visible = true;
  245. this.txtAddress.Visible = true;
  246. this.txttext.Visible = true;*/
  247. break;
  248. case EnumPublic.MicroTemplate.拍摄服务提醒:
  249. this.plTitle.Visible = true;
  250. this.plItemName.Visible = true;
  251. this.pltime.Visible = true;
  252. this.plAddress.Visible = true;
  253. this.plText.Visible = true;
  254. this.lbItemName.Text = "拍摄事项";
  255. this.lbtime.Text = "服务时间";
  256. this.lbAddress.Text = "服务地点";
  257. this.lbtext.Text = "服务内容";
  258. break;
  259. case EnumPublic.MicroTemplate.影楼服务通知:
  260. this.plTitle.Visible = true;
  261. this.plItemName.Visible = true;
  262. this.pltime.Visible = true;
  263. this.plAddress.Visible = true;
  264. this.plText.Visible =false;
  265. this.lbItemName.Text = "服务状态";
  266. this.lbtime.Text = "时间";
  267. this.lbAddress.Text = "备注";
  268. break;
  269. }
  270. }
  271. }
  272. LYFZ.Model.Model_SMSTemplates _TemplateIDModel = new Model.Model_SMSTemplates();
  273. /// <summary>
  274. /// 当前模板ID对象
  275. /// </summary>
  276. public LYFZ.Model.Model_SMSTemplates TemplateIDModel
  277. {
  278. get { return _TemplateIDModel; }
  279. set { _TemplateIDModel = value; }
  280. }
  281. /// <summary>
  282. /// 当前消息模板
  283. /// </summary>
  284. EnumPublic.MicroTemplate _TemplateNo = EnumPublic.MicroTemplate.拍摄服务提醒;
  285. /// <summary>
  286. /// 当前消息模板
  287. /// </summary>
  288. public EnumPublic.MicroTemplate TemplateNo
  289. {
  290. get { return _TemplateNo; }
  291. set { _TemplateNo = value; }
  292. }
  293. /// <summary>
  294. /// 默认消息模板
  295. /// </summary>
  296. EnumPublic.MicroTemplate _DfTemplateNo = EnumPublic.MicroTemplate.拍摄服务提醒;
  297. /// <summary>
  298. /// 默认消息模板
  299. /// </summary>
  300. public EnumPublic.MicroTemplate DfTemplateNo
  301. {
  302. get { return _DfTemplateNo; }
  303. set { _DfTemplateNo = value; }
  304. }
  305. /// <summary>
  306. /// 邦定消息模板
  307. /// </summary>
  308. void BindTemplateNo()
  309. {
  310. this.cbxTList.Items.Clear();
  311. this.cbxTList.DataSource = GetTemplateNoList();
  312. }
  313. List<string> GetTemplateNoList()
  314. {
  315. List<string> elist = new List<string>();
  316. Array tValues = Enum.GetValues(typeof(LYFZ.EnumPublic.MicroTemplate));
  317. foreach (int tValue in tValues)
  318. {
  319. if (tValue > 3000 && tValue != 3003)
  320. {
  321. LYFZ.EnumPublic.MicroTemplate mT = (LYFZ.EnumPublic.MicroTemplate)tValue;
  322. elist.Add(mT.ToString());
  323. }
  324. }
  325. return elist;
  326. }
  327. }
  328. }