//查询
 protected void btn_Search_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(DDL_HostingFilialeAuth.SelectedValue) || DDL_HostingFilialeAuth.SelectedValue == Guid.Empty.ToString())
     {
         RAM.Alert("请选择公司!");
         return;
     }
     GridDataBind();
     RG_AvgSettlePrice.CurrentPageIndex = 0;
     RG_AvgSettlePrice.DataBind();
 }
 /// <summary>商品分类树点击事件
 /// </summary>
 protected void TvGoodsClassNodeClick(object sender, RadTreeNodeEventArgs e)
 {
     if (!string.IsNullOrEmpty(e.Node.Value))
     {
         Hid_GoodsClassId.Value             = e.Node.Value;
         RG_AvgSettlePrice.CurrentPageIndex = 0;
         RG_AvgSettlePrice.Rebind();
     }
     else
     {
         Hid_GoodsClassId.Value = Guid.Empty.ToString();
     }
 }