Exemplo n.º 1
0
        /// <summary>
        /// 得到订单信息
        /// </summary>
        /// <param name="payer"></param>
        /// <param name="paytype"></param>
        private void To_OrderCollectDetial()
        {
            string payer   = Request.QueryString["payer"];
            string paytype = Request.QueryString["type"];
            string sql     = " factid = " + payer + " and payType='" + paytype + "' and iscancel='N' ";

            sql += this.cbxshowfile.Checked ? "" : " and fileStatus=0 ";
            sql += strsql;
            sql += " order by outTime desc";
            RpPolicyList.DataSource = To_OrderInfoManager.GetViewOrder("", sql.ToString());
            RpPolicyList.DataBind();
        }