예제 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            //判断权限
            if (!CheckGrant(global::Common.Enum.TravelPermission.短信中心_短信中心_栏目))
            {
                Utils.ResponseNoPermit(global::Common.Enum.TravelPermission.短信中心_短信中心_栏目, true);
                return;
            }
            pageIndex = Utils.GetInt(Utils.GetQueryStringValue("Page"), 1);
            itemIndex = (pageIndex - 1) * pageSize + 1;
            EyouSoft.BLL.SMSStructure.CommonWords           commonBll = new EyouSoft.BLL.SMSStructure.CommonWords();
            IList <EyouSoft.Model.SMSStructure.CommonWords> list      = commonBll.GetList(pageSize, pageIndex, ref recordCount, CurrentUserCompanyID, "", 0);

            //绑定短语
            if (list != null && list.Count > 0)
            {
                rptSms.DataSource = list;
                rptSms.DataBind();
                BindExportPage();
            }
            else
            {
                rptSms.EmptyText        = "<tr><td colspan='4' align='center'>对不起,暂无短语信息!</td></tr>";
                ExportPageInfo1.Visible = false;
            }
        }
예제 #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            //判断权限
            if (!CheckGrant(global::Common.Enum.TravelPermission.短信中心_短信中心_栏目))
            {
                Utils.ResponseNoPermit(global::Common.Enum.TravelPermission.短信中心_短信中心_栏目, true);
                return;
            }
            string method = Utils.GetQueryStringValue("method");            //当前操作

            pageIndex = Utils.GetInt(Utils.GetQueryStringValue("Page"), 1); //获取当前页码
            EyouSoft.BLL.SMSStructure.CommonWords commonBll = new EyouSoft.BLL.SMSStructure.CommonWords();
            //绑定短语类别列表
            IList <EyouSoft.Model.SMSStructure.CommonWordClass> classList = commonBll.GetCommonWordsClass(CurrentUserCompanyID);

            if (classList != null && classList.Count > 0)
            {
                selSmsType.DataTextField  = "ClassName";
                selSmsType.DataValueField = "ID";
                selSmsType.DataSource     = classList;
                selSmsType.DataBind();
            }
            selSmsType.Items.Insert(0, new ListItem("请选择", ""));
            //删除短语
            if (method == "del")
            {
                string cid    = Utils.GetQueryStringValue("cid");
                bool   result = commonBll.DeleteCommonWords(cid.Split(','));
                Utils.ResponseMeg(result, string.Empty);
                return;
            }
            //绑定短语列表
            string smsKeyword = Request.QueryString["smsKeyword"];//短语关键字

            smsKeyword = !string.IsNullOrEmpty(smsKeyword) ? Utils.InputText(Server.UrlDecode(smsKeyword)) : "";
            string cmstype = Utils.GetQueryStringValue("smstype");//短语类别
            IList <EyouSoft.Model.SMSStructure.CommonWords> list = commonBll.GetList(pageSize, pageIndex, ref recordCount, CurrentUserCompanyID, smsKeyword, Utils.GetInt(cmstype));

            if (list != null && list.Count > 0)
            {
                rptSms.DataSource = list;
                rptSms.DataBind();
                BindExportPage();
            }
            else
            {
                rptSms.EmptyText        = "<tr><td colspan='4' align='center'>对不起,暂无短语信息!</td></tr>";
                ExportPageInfo1.Visible = false;
            }
            //恢复查询条件
            txtKeyWord.Value = smsKeyword; //短语关键字
            selSmsType.Value = cmstype;    //短语类别
        }
예제 #3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            //判断权限
            if (!CheckGrant(global::Common.Enum.TravelPermission.短信中心_短信中心_栏目))
            {
                Utils.ResponseNoPermit(global::Common.Enum.TravelPermission.短信中心_短信中心_栏目, true);
                return;
            }
            string sId    = Utils.GetQueryStringValue("sid"); //短语Id
            string method = Utils.GetFormValue("hidMethod");  //当前操作

            EyouSoft.BLL.SMSStructure.CommonWords commonBll = new EyouSoft.BLL.SMSStructure.CommonWords();
            if (method != "")
            {
                bool result = false;
                Utils.InputText(txtSmsContent.Value, 200);//短信内容
                Utils.InputText(selClass.Value);
                string showMess = "数据保存成功!";

                if (method == "save" || method == "continue")//如果是保存数据
                {
                    #region 保存短语
                    int    classId    = Utils.GetInt(Utils.GetFormValue(selClass.UniqueID));
                    string commonWord = Utils.InputText(txtSmsContent.Value);
                    EyouSoft.Model.SMSStructure.CommonWords wordModel = new EyouSoft.Model.SMSStructure.CommonWords
                    {
                        ClassID     = classId,
                        CompanyID   = CurrentUserCompanyID,
                        IssueTime   = DateTime.Now,
                        UserID      = SiteUserInfo.ID,
                        WordContent = commonWord
                    };
                    if (sId != "")//短语id不为空修改
                    {
                        wordModel.ID = sId;
                        result       = commonBll.UpdateCommonWords(wordModel);
                    }
                    else//短语id为空添加
                    {
                        result = commonBll.AddCommonWords(wordModel);
                    }
                    if (!result)
                    {
                        showMess = "数据保存失败";
                    }
                    if (method == "save")//如果是保存则关闭弹窗否则刷新页面
                    {
                        MessageBox.ResponseScript(this, string.Format(";alert('{0}');window.parent.Boxy.getIframeDialog('{1}').hide();window.parent.location='/SMS/CommonSms.aspx';", showMess, Utils.GetQueryStringValue("iframeId")));
                    }
                    else
                    {
                        MessageBox.ShowAndRedirect(this, showMess, "EditCommonSms.aspx");
                    }
                    return;

                    #endregion
                }
                if (method == "addClass")//添加类别
                {
                    #region 添加类别
                    string className = Utils.GetFormValue("className");
                    EyouSoft.Model.SMSStructure.CommonWordClass wordClass =
                        new EyouSoft.Model.SMSStructure.CommonWordClass
                    {
                        ClassName = className,
                        CompanyID = CurrentUserCompanyID,
                        IssueTime = DateTime.Now,
                        UserID    = SiteUserInfo.ID
                    };

                    int classId = commonBll.AddCommonWordsClass(wordClass);
                    //添加类别
                    Utils.ResponseMeg(classId != 0, classId.ToString());
                    return;

                    #endregion
                }
                if (method == "delClass")//删除类别
                {
                    #region  除类别
                    int classId = Utils.GetInt(Utils.GetFormValue("classId"));
                    //删除类别
                    result = commonBll.DeleteCommonWordsClass(classId);
                    Utils.ResponseMeg(result, string.Empty);
                    return;

                    #endregion
                }
            }
            else
            {
                #region 初始化数据
                //绑定短语类别
                IList <EyouSoft.Model.SMSStructure.CommonWordClass> classList = commonBll.GetCommonWordsClass(CurrentUserCompanyID);
                if (classList != null && classList.Count > 0)
                {
                    selClass.DataTextField  = "ClassName";
                    selClass.DataValueField = "ID";
                    selClass.DataSource     = classList;
                    selClass.DataBind();
                }
                selClass.Items.Insert(0, new ListItem("请选择", ""));
                //初始化短语
                if (sId != "")
                {
                    EyouSoft.Model.SMSStructure.CommonWords wordModel = commonBll.GetCommonWords(sId);
                    if (wordModel != null)
                    {
                        txtSmsContent.Value = wordModel.WordContent;
                        selClass.Value      = wordModel.ClassID.ToString();
                    }
                }
                #endregion
            }
        }