怎么获取子单据体的所有值,帮我看下。。。。
2,988次浏览
编辑于2015年05月10日 23:00:05
我想在单据加载的时候,把每个子单据体中的第一个值付给主单据体中。可是用了下面获取子单据体方法,只能当前分录的值。看不到所有子单据体中的值。希望给段代码分享下。谢谢了。
//获取主单据体
EntryEntity entryEntity = this.View.BusinessInfo.GetEntryEntity("FInStockEntry");
DynamicObjectCollection docCustomerContactIds = this.View.Model.GetEntityDataObject(entryEntity);
//获取子单据体
EntryEntity FSerialSubEntity = this.View.BusinessInfo.GetEntryEntity("FSerialSubEntity");
DynamicObjectCollection FSerialSubCollection = this.View.Model.GetEntityDataObject(FSerialSubEntity);
推荐阅读