屠宰场管理服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
778 B

using BWP.B3ClientService.BL;
using BWP.B3ClientService.BO;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TSingSoft.WebControls2;
namespace BWP.Web.Pages.B3ClientService.BaseInfos.ClientGoodsSet_
{
class ClientGoodsSetList : BaseInfoListPage<ClientGoodsSet, IClientGoodsSetBL>
{
protected override void AddQueryControls(VLayoutPanel vPanel)
{
vPanel.Add(CreateDefaultBaseInfoQueryControls((panel, config) =>
{
config.AddBefore("ApplyClient", "Name");
}));
}
protected override void AddDFBrowseGridColumn(DFBrowseGrid grid, string field)
{
if (field == "Name")
AddDFBrowseGridColumn(grid, "ApplyClient");
base.AddDFBrowseGridColumn(grid, field);
}
}
}