写插件代码查看单据简单示例分享
金蝶云社区-星星火
星星火
0人赞赏了该文章 3570次浏览 未经作者许可,禁止转载编辑于2014年04月23日 10:33:20
[code]BillShowParameter para = new BillShowParameter();
para.OpenStyle.ShowType = ShowType.Modal;//模态显示
para.FormId = "单据标识";
para.Status = OperationStatus.EDIT;// 修改显示
para.PKey = "100010";// 内码
para.ParentPageId = this.View.ParentFormView.PageId;
this.View.ShowForm(para);[/code]