物料辅助属性过滤问题?
858次浏览
编辑于2016年06月29日 17:27:29
需求:
物料与辅助属性 有共同的物料分组
选择物料后能根据 物料分组过滤 辅助属性吗
string parentKey = "FEntity";
Entity parent = this.View.ParentFormView.BusinessInfo.GetEntity(parentKey);
int rowIndex = this.View.ParentFormView.Model.GetEntryCurrentRowIndex(parentKey);
DynamicObject obj = this.View.ParentFormView.Model.GetEntityDataObject(parent, rowIndex);
if (obj != null)
{
string filter = string.Format("FMATERIALGROUP = {0}", ((DynamicObject)obj["MaterialId"])["MaterialGroup"]);
e.AppendQueryFilter(filter);
}
好像不行
推荐阅读