小技巧--插件获取单据相关信息

栏目:云星空知识作者:金蝶来源:金蝶云社区发布:2024-09-16浏览:1

小技巧--插件获取单据相关信息

(1)获取当前行号

int rowIndex = this.Model.GetEntryCurrentRowIndex("FEntity");   //  FEntity为单据体标识


(2)获取单据体集合 

Entity entity = this.View.BillBusinessInfo.GetEntity("FSaleOrderEntry");    FSaleOrderEntry为单据体标识 
DynamicObjectCollection entrys = this.Model.GetEntityDataObject(entity);

(3)操作插件获取选中行 // 扩展方法,需要 using Kingdee.BOS.Core.DynamicForm 

var selectedRows = this.Option.GetBillOperationSelectedRows();

(4)获取选中行

int[] selectedIndexsR = this.View.GetControl("FSaleOrderEntry").GetSelectedRows();

(5)获取选中行数据

//当前选中行行号

int[] selectedIndexsR = this.View.GetControl("FSaleOrderEntry").GetSelectedRows();

//单据体数据

DynamicObjectCollection selectedRowsDy = this.Model.DataObject["SaleOrderEntry"] as DynamicObjectCollection;

//选中行数据

DynamicObject selectedRow = selectedRowsDy[selectedIndexsR[0]];

(6)获取单据内码

long billNo = Convert.ToInt64(this.View.Model.GetPKValue());//获取当前单据编号内码

(7)获取单据分录内码

int row = this.Model.GetEntryCurrentRowIndex("FSubEntity");
Entity entiry = this.View.Model.BillBusinessInfo.GetEntity("FSubEntity");
object pkValue = this.View.Model.GetEntryPKValue(entiry.Key, row);

(8)在单据列表界面,使用如下语句获取当前选择行的单据内码

this.ListView.CurrentSelectedRowInfo.PrimaryKeyValue


小技巧--插件获取单据相关信息

(1)获取当前行号int rowIndex = this.Model.GetEntryCurrentRowIndex("FEntity"); // FEntity为单据体标识(2)获取单据体集合 Entity...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息