Esempio n. 1
0
        private bool DoEdit()
        {
            int    _id    = MyCommFun.Str2Int(lblId.Text);
            string strErr = "";

            if (this.txtwxName.Text.Trim().Length == 0)
            {
                strErr += "公众帐号名称不能为空!";
            }
            if (this.txtwxId.Text.Trim().Length == 0)
            {
                strErr += "公众号原始id不能为空!";
            }

            if (this.txtweixinCode.Text.Trim().Length == 0)
            {
                strErr += "微信号不能为空!";
            }
            if (this.txtwxToken.Text.Trim().Length == 0)
            {
                strErr += "TOKEN值不能为空!";
            }

            if (strErr != "")
            {
                JscriptMsg(strErr, "back", "Error");
                return(false);
            }

            string wxName     = this.txtwxName.Text;
            string wxId       = this.txtwxId.Text;
            string weixinCode = this.txtweixinCode.Text;
            string headerpic  = this.txtImgUrl.Text;
            string apiurl     = this.txtapiurl.Text;
            string wxToken    = this.txtwxToken.Text;
            string AppId      = this.txtAppId.Text;
            string AppSecret  = this.txtAppSecret.Text;

            var model = bll.GetAppInfo(_id);

            model.WxName    = wxName;
            model.WxId      = wxId;
            model.WxCode    = weixinCode;
            model.Headerpic = headerpic;
            model.Apiurl    = apiurl;
            model.WxToken   = wxToken;
            model.AppId     = AppId;
            model.AppSecret = AppSecret;

            //TODO:状态赋值不对
            //model.wStatus = MyCommFun.Str2Int( rblwStatus.SelectedItem.Value);

            int addYear = MyCommFun.Str2Int(ddlMaxNum.SelectedItem.Value);

            if (addYear > 0)
            {
                if (model.EndDate.HasValue && model.EndDate.Value >= DateTime.Now)
                {
                    //直接加
                    model.EndDate = model.EndDate.Value.AddYears(addYear);
                }
                else
                {
                    //已过期的,直接在当天开始加年份
                    model.EndDate = DateTime.Now.AddYears(addYear);
                }

                bool isAgent = false;
                if (adminEntity.AgentLevel < 0)
                {
                    return(false);
                }
                if (adminEntity.AgentLevel > 0)
                {
                    agent   = aBll.GetAgentModel(adminEntity.Id);
                    isAgent = true;
                    if (agent.RemainMony < agent.AgentPrice)
                    {
                        JscriptMsg("余额不足,请联系管理员充值!", "", "Error");
                        return(false);
                    }
                    else
                    {
                        int xfjine = addYear * agent.AgentPrice.Value;//消费金额

                        //是代理商 :缴费,扣除金额,增加消费记录
                        agent.RemainMony -= xfjine;
                        bool updateRet = aBll.Update(agent);
                        if (updateRet)
                        {
                            var bBll = new WXManagerBillService(new ManagerBillRepository());
                            var bill = new ManagerBillInfo
                            {
                                BillMoney    = xfjine,
                                ManagerId    = agent.ManagerId,
                                OperPersonId = agent.ManagerId,
                                OperDate     = DateTime.Now,
                                BillUsed     = "微帐号" + model.WxName + "增加时间" + addYear + "年",
                                MoneyType    = "扣减"
                            };

                            bBll.Add(bill);
                        }
                        else
                        {
                            JscriptMsg("数据执行错误,请重新操作!", "", "Error");
                            return(false);
                        }
                    }
                }
            }

            bool ret = bll.Update(model);

            if (ret)
            {
                AddAdminLog(MXEnums.ActionEnum.Edit.ToString(), "【管理】修改微信号,主键为:" + model.Id + ",微信号为:" + model.WxCode); //记录日志
                return(true);
            }
            return(false);
        }
Esempio n. 2
0
        private bool DoEdit(int _id)
        {
            string strErr = "";

            if (this.txtwxName.Text.Trim().Length == 0)
            {
                strErr += "公众帐号名称不能为空!";
            }
            if (this.txtwxId.Text.Trim().Length == 0)
            {
                strErr += "公众号原始id不能为空!";
            }

            if (this.txtweixinCode.Text.Trim().Length == 0)
            {
                strErr += "微信号不能为空!";
            }
            if (this.txtwxToken.Text.Trim().Length == 0)
            {
                strErr += "TOKEN值不能为空!";
            }

            if (strErr != "")
            {
                JscriptMsg(strErr, "back", "Error");

                return(false);
            }

            string wxName          = this.txtwxName.Text;
            string wxId            = this.txtwxId.Text;
            string weixinCode      = this.txtweixinCode.Text;
            string headerpic       = this.txtImgUrl.Text;
            string apiurl          = MyCommFun.getWebSite() + "/api/weixin/api.aspx?apiid=" + _id;
            string wxToken         = this.txtwxToken.Text;
            string AppId           = this.txtAppId.Text;
            string AppSecret       = this.txtAppSecret.Text;
            bool   noChangeAppProp = true;
            string EncodingAESKey  = txtEncodingAESKey.Text;
            var    model           = _appInfoService.GetAppInfo(_id);

            model.WxName    = wxName;
            model.WxId      = wxId;
            model.WxCode    = weixinCode;
            model.Headerpic = headerpic;
            model.Apiurl    = apiurl;
            model.WxToken   = wxToken;
            model.ExtStr    = EncodingAESKey;//暂存入extStr字段里
            model.WxType    = MyCommFun.Obj2Int(rblweixintype.SelectedItem.Value);

            if (model.AppId != AppId || model.AppSecret != AppSecret)
            {
                //改变了
                noChangeAppProp = false;
            }
            model.AppId     = AppId;
            model.AppSecret = AppSecret;

            bool ret = _appInfoService.Update(model);

            if (ret)
            {
                AddAdminLog(MXEnums.ActionEnum.Edit.ToString(), "修改微信号,主键为:" + model.Id + ",微信号为:" + model.WxCode); //记录日志
                if (!noChangeAppProp)
                {                                                                                                   //更新access_token值
                    UpdateAccess_Token(_id, AppId, AppSecret);
                }
                return(true);
            }
            return(false);
        }