Example #1
0
        protected void btnRptPointChangeExcel_Click(object sender, EventArgs e)
        {
            PointLog bllPointLog = new PointLog();
            int      Counts      = this.NetPagerParameter.RecordCount;
            string   strSql      = this.QueryCondition();

            strSql += "and PointLog.PointShopID = SysShop.ShopID and PointLog.PointMemID = Mem.MemID and Mem.MemLevelID=MemLevel.LevelID and PointLog.PointUserID = SysUser.UserID";
            strSql  = PubFunction.GetShopAuthority(this._UserShopID, "PointShopID", strSql);
            DataTable dtPointLog = bllPointLog.GetListSP(100000, 1, out Counts, new string[]
            {
                strSql
            }).Tables[0];

            DataExcelInfo.PointChangeReportExcel(dtPointLog, this._UserName);
        }
Example #2
0
        private void Get_ParameterList(string strSql)
        {
            PointLog bllPointLog = new PointLog();
            int      Counts      = this.NetPagerParameter.RecordCount;

            strSql += "and PointLog.PointShopID = SysShop.ShopID and PointLog.PointMemID = Mem.MemID and Mem.MemLevelID=MemLevel.LevelID and PointLog.PointUserID = SysUser.UserID";
            DataTable db = bllPointLog.GetListSP(this.NetPagerParameter.PageSize, this.NetPagerParameter.CurrentPageIndex, out Counts, new string[]
            {
                strSql
            }).Tables[0];

            this.NetPagerParameter.RecordCount    = Counts;
            this.NetPagerParameter.CustomInfoHTML = string.Format("<div class=\"results\"><span>当前第{0}/{1}页 共{2}条记录 每页{3}条</span></div>", new object[]
            {
                this.NetPagerParameter.CurrentPageIndex,
                this.NetPagerParameter.PageCount,
                this.NetPagerParameter.RecordCount,
                this.NetPagerParameter.PageSize
            });
            this.gvRptPointChange.DataSource = db;
            this.gvRptPointChange.DataBind();
            PageBase.BindSerialRepeater(this.gvRptPointChange, this.NetPagerParameter.PageSize * (this.NetPagerParameter.CurrentPageIndex - 1));
        }