123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.Software.MainBusiness.SMSManagement.SmsSend
- {
- public class frmSendMicroTemplateSMS:LYFZ.Software.UI.SMSManagement.SmsSend.frmSendMicroTemplateSMS
- {
- public frmSendMicroTemplateSMS() {
- this.cbxTList.SelectedIndexChanged += cbxTList_SelectedIndexChanged;
- this.txtTitle.EventTextBoxEx_TextChanged += txtTitle_EventTextBoxEx_TextChanged;
- this.txtItemName.EventTextBoxEx_TextChanged += txtTitle_EventTextBoxEx_TextChanged;
- this.txttiem.EventTextBoxEx_TextChanged += txtTitle_EventTextBoxEx_TextChanged;
- this.txtAddress.EventTextBoxEx_TextChanged += txtTitle_EventTextBoxEx_TextChanged;
- this.txttext.EventTextBoxEx_TextChanged += txtTitle_EventTextBoxEx_TextChanged;
- this.linkTitle.Click += linkTitle_Click;
- this.linkItemName.Click += linkItemName_Click;
- this.linkAddress.Click += linkAddress_Click;
- this.linkText.Click += linkText_Click;
- this.linkUrl.Click += linkUrl_Click;
- this.txttiem.Text = SDateTime.Now.ToString("yyyy-MM-dd HH:mm");
- this.Shown += frmSendMicroTemplateSMS_Shown;
- this.btnclose.Click += btnclose_Click;
- this.btnSave.Click += btnSave_Click;
- BindTemplateNo();
-
- }
- bool isEmployee = false;
- /// <summary>
- /// 是否为员工消息
- /// </summary>
- public bool IsEmployee
- {
- get { return isEmployee; }
- set { isEmployee = value; }
- }
- LYFZ.BLL.BLL_SMSTemplates mybllsmsT = new BLL.BLL_SMSTemplates();
- void btnSave_Click(object sender, EventArgs e)
- {
- if (this.lbNo.Text.Trim().Length <= 1)
- {
- MessageBoxCustom.Show("选择的消息模板还没有配置,请先配置模板后重试。");
- return;
- }
- if (this.txtTitle.Text.Trim().Length <= 0) {
- MessageBoxCustom.Show("消息标题不能为空");
- return;
- }
- if (this.txtOPENID.Text.Trim().Length <= 0)
- {
- MessageBoxCustom.Show("消息接收人OPENID不能为空");
- return;
- }
- string tUrl = this.txtUrl.Text.Trim();
- if (tUrl.Trim().Length>0&&!tUrl.Trim().ToLower().StartsWith("https://") && !tUrl.Trim().ToLower().StartsWith("http://"))
- {
- MessageBoxCustom.Show("消息链接URL格式不正确");
- return;
- }
- string TMessageTitle = this.txtTitle.Text.Trim();
- string[] OPENIDs=this.txtOPENID.Text.Trim().Trim(',').Split(',');
- string User_Name=LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
- dynamic tMParameters = null;
- switch (this.TemplateNo)
- {
- case EnumPublic.MicroTemplate.待办事项通知:
- if (this.txtItemName.Text.Trim().Length <= 0)
- {
- MessageBoxCustom.Show("事项名称不能为空");
- return;
- }
- if (this.txttiem.Text.Trim().Length <= 0)
- {
- MessageBoxCustom.Show("时间不能为空");
- return;
- }
- if (this.txttext.Text.Trim().Length <= 0)
- {
- MessageBoxCustom.Show("事项内容不能为空");
- return;
- }
- tMParameters = new System.Dynamic.ExpandoObject();
- tMParameters.MessageTitle = TMessageTitle;
- tMParameters.ItemName = this.txtItemName.Text.Trim();
- tMParameters.Time = this.txttiem.Text.Trim();
- tMParameters.Remark = this.txttext.Text.Trim();
-
- break;
- case EnumPublic.MicroTemplate.拍摄服务提醒:
- if (this.txtItemName.Text.Trim().Length <= 0)
- {
- MessageBoxCustom.Show("拍摄事项不能为空");
- return;
- }
- if (this.txttiem.Text.Trim().Length <= 0)
- {
- MessageBoxCustom.Show("服务时间不能为空");
- return;
- }
- if (this.txtAddress.Text.Trim().Length <= 0)
- {
- MessageBoxCustom.Show("服务地点不能为空");
- return;
- }
- if (this.txttext.Text.Trim().Length <= 0)
- {
- MessageBoxCustom.Show("服务内容不能为空");
- return;
- }
- tMParameters = new System.Dynamic.ExpandoObject();
-
- tMParameters.MessageTitle = TMessageTitle;
- tMParameters.ItemName = this.txtItemName.Text.Trim();
- tMParameters.Time = this.txttiem.Text.Trim();
- tMParameters.Address = this.txtAddress.Text.Trim();
- tMParameters.Remark = this.txttext.Text.Trim();
- break;
- case EnumPublic.MicroTemplate.影楼服务通知:
- if (this.txtItemName.Text.Trim().Length <= 0)
- {
- MessageBoxCustom.Show("服务状态不能为空");
- return;
- }
- if (this.txttiem.Text.Trim().Length <= 0)
- {
- MessageBoxCustom.Show("服务时间不能为空");
- return;
- }
- if (this.txtAddress.Text.Trim().Length <= 0)
- {
- MessageBoxCustom.Show("备注不能为空");
- return;
- }
- tMParameters = new System.Dynamic.ExpandoObject();
-
- tMParameters.MessageTitle = TMessageTitle;
- tMParameters.ServiceStatus = this.txtItemName.Text.Trim();
- tMParameters.Time = this.txttiem.Text.Trim();
- tMParameters.Remark = this.txtAddress.Text.Trim();
-
- break;
- }
- tMParameters.TMessageUrl = tUrl;
- if (mybllsmsT.GenerateEventTemplateMessage(this.TemplateNo, OPENIDs, tMParameters, User_Name, LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetCompanyInfoID(), this.lbNo.Text.Trim(), isEmployee))
- {
- MessageBoxCustom.Show("模板消息发送成功");
- this.DialogResult = System.Windows.Forms.DialogResult.OK;
- }
- else {
- MessageBoxCustom.Show("模板消息发送失败,请关闭后重试!");
- }
-
- }
- void btnclose_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- void frmSendMicroTemplateSMS_Shown(object sender, EventArgs e)
- {
- this.txtOPENID.Text = receiveOPNIDs;
- for(int i=0;i<this.cbxTList.Items.Count;i++)
- {
- if (this.DfTemplateNo == (EnumPublic.MicroTemplate)Enum.Parse(typeof(EnumPublic.MicroTemplate), this.cbxTList.Items[i].ToString()))
- {
- this.cbxTList.SelectedIndex = i;
- }
- }
-
- }
- string receiveOPNIDs = "";
- /// <summary>
- /// 接收人的OPENID
- /// </summary>
- public string ReceiveOPNIDs
- {
- get { return receiveOPNIDs; }
- set { receiveOPNIDs = value; }
- }
- void linkUrl_Click(object sender, EventArgs e)
- {
- SetTxtValue(this.txtUrl);
- }
- void linkText_Click(object sender, EventArgs e)
- {
- SetTxtValue(this.txttext);
- }
- void linkAddress_Click(object sender, EventArgs e)
- {
- SetTxtValue(this.txtAddress);
- }
- void linkItemName_Click(object sender, EventArgs e)
- {
- SetTxtValue(this.txtItemName);
- }
- void linkTitle_Click(object sender, EventArgs e)
- {
- SetTxtValue(this.txtTitle);
- }
- void SetTxtValue(ComponentLibrary.TextBoxEx tbox)
- {
- frmSelectSmsInfo selectInfo = new frmSelectSmsInfo();
- if (selectInfo.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- if (selectInfo.SmsModel.ID > 0)
- {
- tbox.Text = selectInfo.SmsModel.ST_SMSContent;
- }
- }
- }
- void txtTitle_EventTextBoxEx_TextChanged(object sender, EventArgs e)
- {
- int sumCount = this.txtTitle.Text.Trim().Length +
- this.txtItemName.Text.Trim().Length +
- this.txttiem.Text.Trim().Length +
- this.txtAddress.Text.Trim().Length +
- this.txttext.Text.Trim().Length;
- this.lbtxtCount.Text = "已输入消息内容长度 " + sumCount.ToString() + " 个字";
- }
- LYFZ.DAL.DAL_SMSTemplates smsDal = new DAL.DAL_SMSTemplates();
- void cbxTList_SelectedIndexChanged(object sender, EventArgs e)
- {
- if (this.cbxTList.SelectedItem != null)
- {
- this.TemplateNo = (EnumPublic.MicroTemplate)Enum.Parse(typeof(EnumPublic.MicroTemplate), this.cbxTList.SelectedItem.ToString());
- // this.lbtitle.Text = this.TemplateNo.ToString();
- this.lbContentExamples.Text = LYFZ.BLL.BLL_SMSTemplates.GetMicroTemplateExample(this.TemplateNo);
- this.TemplateIDModel = (LYFZ.Model.Model_SMSTemplates)smsDal.GetModelObject("ST_Category=" + (int)this.TemplateNo + " and ST_DividedShop='" + LYFZ.BLL.BLL_ErpCompanyInfo.CurrentCompanyInfoID + "'");
- this.lbNo.Text = this.TemplateIDModel.ST_Remark.Trim();
- if (this.lbNo.Text.Trim().Length <= 1)
- {
- this.lbNo.Text = "没有找到相关模板";
- this.lbNo.ForeColor = System.Drawing.Color.Red;
- }
- else
- {
- this.lbNo.ForeColor = this.lbtitle.ForeColor;
- }
- switch (this.TemplateNo)
- {
- case EnumPublic.MicroTemplate.待办事项通知:
- this.plTitle.Visible = true;
- this.plItemName.Visible = true;
- this.pltime.Visible = true;
- this.plAddress.Visible = false;
- this.plText.Visible = true;
- this.lbItemName.Text = "事项名称";
- this.lbtime.Text = "时间";
- this.lbtext.Text = "事项内容";
- /* this.txtTitle.Visible = "";
- this.txtItemName.Visible = true;
- this.txttiem.Visible = true;
- this.txtAddress.Visible = true;
- this.txttext.Visible = true;*/
- break;
- case EnumPublic.MicroTemplate.拍摄服务提醒:
- this.plTitle.Visible = true;
- this.plItemName.Visible = true;
- this.pltime.Visible = true;
- this.plAddress.Visible = true;
- this.plText.Visible = true;
- this.lbItemName.Text = "拍摄事项";
- this.lbtime.Text = "服务时间";
- this.lbAddress.Text = "服务地点";
- this.lbtext.Text = "服务内容";
- break;
- case EnumPublic.MicroTemplate.影楼服务通知:
- this.plTitle.Visible = true;
- this.plItemName.Visible = true;
- this.pltime.Visible = true;
- this.plAddress.Visible = true;
- this.plText.Visible =false;
- this.lbItemName.Text = "服务状态";
- this.lbtime.Text = "时间";
- this.lbAddress.Text = "备注";
-
- break;
- }
- }
- }
- LYFZ.Model.Model_SMSTemplates _TemplateIDModel = new Model.Model_SMSTemplates();
- /// <summary>
- /// 当前模板ID对象
- /// </summary>
- public LYFZ.Model.Model_SMSTemplates TemplateIDModel
- {
- get { return _TemplateIDModel; }
- set { _TemplateIDModel = value; }
- }
- /// <summary>
- /// 当前消息模板
- /// </summary>
- EnumPublic.MicroTemplate _TemplateNo = EnumPublic.MicroTemplate.拍摄服务提醒;
- /// <summary>
- /// 当前消息模板
- /// </summary>
- public EnumPublic.MicroTemplate TemplateNo
- {
- get { return _TemplateNo; }
- set { _TemplateNo = value; }
- }
- /// <summary>
- /// 默认消息模板
- /// </summary>
- EnumPublic.MicroTemplate _DfTemplateNo = EnumPublic.MicroTemplate.拍摄服务提醒;
- /// <summary>
- /// 默认消息模板
- /// </summary>
- public EnumPublic.MicroTemplate DfTemplateNo
- {
- get { return _DfTemplateNo; }
- set { _DfTemplateNo = value; }
- }
- /// <summary>
- /// 邦定消息模板
- /// </summary>
- void BindTemplateNo()
- {
- this.cbxTList.Items.Clear();
- this.cbxTList.DataSource = GetTemplateNoList();
- }
- List<string> GetTemplateNoList()
- {
- List<string> elist = new List<string>();
- Array tValues = Enum.GetValues(typeof(LYFZ.EnumPublic.MicroTemplate));
- foreach (int tValue in tValues)
- {
- if (tValue > 3000 && tValue != 3003)
- {
- LYFZ.EnumPublic.MicroTemplate mT = (LYFZ.EnumPublic.MicroTemplate)tValue;
- elist.Add(mT.ToString());
- }
- }
-
- return elist;
- }
- }
- }
|