protected void Page_Load(object sender, EventArgs e)
        {
            string sequence = Request.QueryString["seq"];
            string userId = Request.QueryString["userId"];
            PolicyDao policyDao = new ChinaUnion_DataAccess.PolicyDao();
            Policy policy = policyDao.Get(Int32.Parse(sequence));

            if (policy != null)
            {
                PolicyReceiverLogDao policyReceiverLogDao = new PolicyReceiverLogDao();
                PolicyReceiverLog policyReceiverLog = new PolicyReceiverLog();
                policyReceiverLog.policySequence = policy.sequence;
                policyReceiverLog.readtime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
                policyReceiverLog.userId = userId;
                policyReceiverLogDao.Add(policyReceiverLog);

                Response.ContentType = "Application/pdf";
                this.Response.Clear();

                System.IO.Stream fs = this.Response.OutputStream;
                fs.Write(policy.attachment, 0, policy.attachment.Length);

                fs.Close();
                this.Response.End();
            }

        }
Exemple #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            string sequence =  Request.QueryString["seq"];
            string userId =  Request.QueryString["userId"];
            logger.Info("sequence=" + sequence);
            logger.Info("userId=" + userId);

            
            if (!String.IsNullOrEmpty(sequence))
            {
                PolicyDao policyDao = new ChinaUnion_DataAccess.PolicyDao();
                Policy policy = policyDao.Get(Int32.Parse(sequence));
                if (policy != null)
                {
                    this.lblSubject.Text = policy.subject;
                   // this.lblSendTime.Text = policy.creatTime;
                    if (!String.IsNullOrEmpty(policy.content))
                    {
                        this.lblContent.Text = " <br>"+policy.content.Replace("\r\n", " <br>").Replace("\n", " <br>"); ;
                    }
                    logger.Info("sequence=" + sequence);
                    logger.Info("userId=" + userId);
                    PolicyReceiverLogDao policyReceiverLogDao = new PolicyReceiverLogDao();
                    PolicyReceiverLog policyReceiverLog = new PolicyReceiverLog();
                    policyReceiverLog.policySequence = policy.sequence;
                    policyReceiverLog.readtime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
                    policyReceiverLog.userId = userId;
                    policyReceiverLogDao.Add(policyReceiverLog);
                }
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            string sequence =  Request.QueryString["seq"];
            string userId =  Request.QueryString["userId"];
            logger.Info("sequence=" + sequence);
            logger.Info("userId=" + userId);

            if (String.IsNullOrEmpty(sequence))
            {
                string code = Request.QueryString["code"];
                sequence = Request.QueryString["state"];
                string search_scope = Request.QueryString["search_scope"];
                string agentId = Request.QueryString["agentId"];
                logger.Info("agentId=" + Request.QueryString["agentId"]);
                logger.Info("code=" + Request.QueryString["code"]);
                logger.Info("state=" + Request.QueryString["state"]);
                logger.Info("search_scope=" + Request.QueryString["search_scope"]);
                WechatUtil wechatUtil = new Util.WechatUtil();
                HttpResult result = wechatUtil.getUserInfoFromWechat(code, agentId, MyConstant.ScretId);
                logger.Info("result=" + result.Html);
                if (result != null && result.Html != null && result.Html.Contains("UserId"))
                {
                    WechatUserId returnMessage = (WechatUserId)JsonConvert.DeserializeObject(result.Html, typeof(WechatUserId));
                    userId = returnMessage.UserId;
                }
                
            }
            if (!String.IsNullOrEmpty(sequence))
            {
                PolicyDao policyDao = new ChinaUnion_DataAccess.PolicyDao();
                Policy policy = policyDao.Get(Int32.Parse(sequence));
                if (policy != null)
                {
                    this.lblSubject.Text = policy.subject;
                    this.lblSendTime.Text = policy.creatTime;
                    if (!String.IsNullOrEmpty(policy.content))
                    {
                        this.lblContent.Text = policy.content.Replace("\r\n"," <br>").Replace("\n"," <br>");
                    }
                    this.lblValidateStartTime.Text = policy.validateStartTime;
                    this.lblValidateEndTime.Text = policy.validateEndTime;
                    this.lblAttachment.Text = policy.attachmentName;
                    this.lblAttachment.NavigateUrl = "BusinessPolicyAttachmentDetail.aspx?seq=" + policy.sequence + "&userId=" + userId;

                    logger.Info("sequence=" + sequence);
                    logger.Info("userId=" + userId);
                    PolicyReceiverLogDao policyReceiverLogDao = new PolicyReceiverLogDao();
                    PolicyReceiverLog policyReceiverLog = new PolicyReceiverLog();
                    policyReceiverLog.policySequence = policy.sequence;
                    policyReceiverLog.readtime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
                    policyReceiverLog.userId = userId;
                    policyReceiverLogDao.Add(policyReceiverLog);


                    WechatQueryLog wechatQueryLog = new ChinaUnion_BO.WechatQueryLog();
                    wechatQueryLog.agentName = "";
                    wechatQueryLog.module = Util.MyConstant.module_Notice;
                    wechatQueryLog.subSystem = "通知公告与促销政策";
                    wechatQueryLog.queryTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
                    wechatQueryLog.queryString = policy.type;
                    wechatQueryLog.wechatId = userId;
                    WechatQueryLogDao wechatQueryLogDao = new WechatQueryLogDao();
                    try
                    {
                        wechatQueryLogDao.Add(wechatQueryLog);
                    }
                    catch
                    {
                    }
                }
            }
        }
Exemple #4
0
        private void btnQuery_Click(object sender, EventArgs e)
        {
            this.Cursor = Cursors.WaitCursor;


            // Queryworker.ReportProgress(4, "代理商佣金...\r\n");
            //代理商佣金
            PolicyReceiverLogDao policyReceiverLogDao = new PolicyReceiverLogDao();
            PolicyDao policyDao = new PolicyDao();
            AgentWechatAccountDao agentWechatAccountDao = new AgentWechatAccountDao();
            IList<PolicyReceiverLog> policyReceiverLogList = policyReceiverLogDao.GetList(this.txtSubjectKeyword.Text.Trim(), this.txtUserKeyword.Text.Trim(), this.dtDay.Value.ToString("yyyy-MM-dd"));
            dgPolicyReadLog.Rows.Clear();
            dgPolicyReadLog.Columns.Clear();
            if (policyReceiverLogList != null && policyReceiverLogList.Count > 0)
            {
                this.grpAgentFee.Text = "阅读日志(" + policyReceiverLogList.Count + ")";
                dgPolicyReadLog.Columns.Add("渠道类型", "渠道类型");
                dgPolicyReadLog.Columns.Add("渠道编码", "渠道编码");
                dgPolicyReadLog.Columns.Add("渠道名称", "渠道名称");
                dgPolicyReadLog.Columns.Add("代理商编号", "代理商编号");
                dgPolicyReadLog.Columns.Add("代理商名称", "代理商名称");
                dgPolicyReadLog.Columns.Add("用户账号", "用户账号");
                dgPolicyReadLog.Columns.Add("用户名", "用户名");
                dgPolicyReadLog.Columns.Add("用户微信", "用户微信");
                dgPolicyReadLog.Columns.Add("阅读时间", "阅读时间");
                dgPolicyReadLog.Columns.Add("主题", "主题");
                dgPolicyReadLog.Columns.Add("内容", "内容");
               

                for (int i = 0; i < policyReceiverLogList.Count; i++)
                {

                   // Policy policy = policyDao.Get(Int32.Parse(policyReceiverLogList[i].policySequence));
                    //AgentWechatAccount agentWechatAccount = agentWechatAccountDao.Get(policyReceiverLogList[i].userId);
                    dgPolicyReadLog.Rows.Add();
                    DataGridViewRow row = dgPolicyReadLog.Rows[i];
                    if (policyReceiverLogList[i].agentContact != null)
                    {
                        row.Cells[0].Value = policyReceiverLogList[i].agentContact.type;
                        row.Cells[1].Value = policyReceiverLogList[i].agentContact.branchNo;
                        row.Cells[2].Value = policyReceiverLogList[i].agentContact.branchName;
                        row.Cells[3].Value = policyReceiverLogList[i].agentContact.agentNo;
                        row.Cells[4].Value = policyReceiverLogList[i].agentContact.agentName;
                        row.Cells[5].Value = policyReceiverLogList[i].agentContact.contactId;
                        row.Cells[6].Value = policyReceiverLogList[i].agentContact.contactName;
                        row.Cells[7].Value = policyReceiverLogList[i].agentContact.contactWechat;
                    }
                    row.Cells[8].Value = policyReceiverLogList[i].readtime;
                    if (policyReceiverLogList[i].policy != null)
                    {
                        row.Cells[9].Value = policyReceiverLogList[i].policy.subject;
                        row.Cells[10].Value = policyReceiverLogList[i].policy.content;
                    }
                   



                }
            }
            dgPolicyReadLog.ColumnHeadersDefaultCellStyle.WrapMode = DataGridViewTriState.False;
            this.dgPolicyReadLog.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.None;
            dgPolicyReadLog.AutoResizeColumns();


            this.Cursor = Cursors.Default;


        }