//获取数据集合
var objs = this.Model.GetEntityDataObject(entity);
//获取单据体的当前行索引
int entityRowIndex = this.Model.GetEntryCurrentRowIndex(entityKey);
//方法1:GetValue根据获得的行索引取值
this.View.Model.GetValue("单据体字段Key", entityRowIndex);
//方法2:
//取得单据体当前行
DynamicObject row = objs[entityRowIndex];
//取得当前行字段值
var entityFieldValue = row["单据体字段Key"];
原文:http://blog.51cto.com/yataigp/2167628