• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

实现对数据进行分组小计并计算合计的实例asp.net

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

可以通过数据绑定来实现  通过union all 来实现数据库

SELECT * FROM v3_pay_list2 where ( (ought_date >= '2012-12-06') and (ought_date <'2013/9/16 0:00:00') and (corp_id = '0001'))

union all select 'XXXXXXXXXX', corp_id,dep_id,dep_name,vendor_id,'','',  sum(amt),'','',vendor_pay,vendor_approval from (select * from v3_pay_list where ( (ought_date >= '2012-12-06') and (ought_date <'2013/9/16 0:00:00') and (corp_id = '0001')) ) u1 group by corp_id,dep_id,dep_name,vendor_id,vendor_pay,vendor_approval

 union all select 'YYYYYYYYYY', corp_id,dep_id,dep_name,'Z','','',sum(amt),'','',vendor_pay,vendor_approval  from (select * from v3_pay_list where ( (ought_date >= '2012-12-06') and (ought_date <'2013/9/16 0:00:00') and (corp_id = '0001')) ) u2 group by corp_id,dep_id,dep_name,vendor_pay,vendor_approval 

 union all select '','','ZZZZZZZZZZ','','','','',sum(amt),'','',max(vendor_pay),max(vendor_approval) from (select * from v3_pay_list where ( (ought_date >= '2012-12-06') and (ought_date <'2013/9/16 0:00:00') and (corp_id = '0001'))) u3  having sum(amt) is not null  order by dep_id ,vendor_id ,compare_list_id

查出的结果类似于:

这样的结果集 然后在Gridview  OnRowDataBound 事件中进行绑定修改:

 protected void dgResult_ItemDataBound(object sender, DataGridItemEventArgs e)
    {
        //设置datagrid的颜色
        e.Item.BackColor = CommonTools.getDGRowColor(e.Item.ItemIndex + 1);

        //设置小计和合计
        DataRowView drv = (DataRowView)e.Item.DataItem;
        if (drv != null)
        {
            if (drv["compare_list_id"].ToString().Trim().Equals("XXXXXXXXXX"))
            {
                e.Item.BackColor = CommonTools.SubRowColor;
                e.Item.Cells[0].Text = "小计:";
                e.Item.Cells[0].ColumnSpan = 5;
                for (int i = 1; i < 5; i++)
                    e.Item.Cells.RemoveAt(1);
                e.Item.Cells[0].HorizontalAlign = HorizontalAlign.Right;
                e.Item.Cells[1].HorizontalAlign = HorizontalAlign.Right;
                e.Item.Cells[2].Text = " ";
                e.Item.Cells[3].Text = " ";
            }
            else if (drv["compare_list_id"].ToString().Trim().Equals("YYYYYYYYYY"))
            {
                e.Item.BackColor = CommonTools.TotalRowColor;
                e.Item.Cells[0].Text = "合计:";
                e.Item.Cells[0].ColumnSpan = 5;
                for (int i = 1; i < 5; i++)
                    e.Item.Cells.RemoveAt(1);
                e.Item.Cells[0].HorizontalAlign = HorizontalAlign.Right;
                e.Item.Cells[1].HorizontalAlign = HorizontalAlign.Right;
                e.Item.Cells[2].Text = " ";
                e.Item.Cells[3].Text = " ";
            }
            else if (drv["dep_id"].ToString().Trim().Equals("ZZZZZZZZZZ"))
            {
                e.Item.BackColor = CommonTools.TotalRowColor;
                e.Item.Cells[0].Text = "总计:";
                e.Item.Cells[0].ColumnSpan = 5;
                for (int i = 1; i < 5; i++)
                    e.Item.Cells.RemoveAt(1);
                e.Item.Cells[0].HorizontalAlign = HorizontalAlign.Right;
                e.Item.Cells[1].HorizontalAlign = HorizontalAlign.Right;
                e.Item.Cells[2].Text = " ";
                e.Item.Cells[3].Text = " ";
            }
            else
            {
                e.Item.Cells[1].Text = CommonTools.TrimZeroLeft(e.Item.Cells[1].Text.Trim());
            }
        }
    }

  

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.NETwindows验证IIS配置发布时间:2022-07-10
下一篇:
ASP.NET管理系统退出(Session、清除浏览器缓存)发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap