using BWP.B3ClientService.BL;
|
|
using BWP.B3ClientService.BO;
|
|
using BWP.Web.Layout;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BWP.Web.Pages.B3ClientService.BaseInfos.Goods_
|
|
{
|
|
class GoodsEdit : BaseInfoEditPage<Goods, IGoodsBL>
|
|
{
|
|
protected override void BuildBody(System.Web.UI.Control parent)
|
|
{
|
|
var layoutManager = new LayoutManager("main", mDFInfo, mDFContainer);
|
|
var config = new AutoLayoutConfig() { Cols = 8 };
|
|
config.Add("Name");
|
|
config.Add("Code");
|
|
config.Add("Spec");
|
|
config.Add("MainUnit");
|
|
config.Add("SecondUnit");
|
|
config.Add("GoodsType");
|
|
config.Add("Remark");
|
|
layoutManager.Config = config;
|
|
parent.Controls.Add(layoutManager.CreateLayout());
|
|
}
|
|
}
|
|
}
|