二开案例.表单插件.事件.BeforeCreateNewEntryRow
【事件名称】
BeforeCreateNewEntryRow
分录行创建前事件
【事件参数】
BeforeCreateNewEntryEventArgs
Entity:单据体元数据
RowCount:需要创建的总行数,其值通常是1。
Cancel:是否取消创建分录行
【触发时机】
通常是用户新建单据时,或者是用户在单据界面上点击新增行菜单后,执行新增分录操作,触发此事件。
Model层创建分录数据行之前触发,通常在CreateNewData事件(新建单据)或者BeforeDoOperation事件(新增分录行)之后触发,在AfterCreateNewEntryRow事件之前触发。
【功能说明】
<1>取消创建分录行操作。
<2>插件接管分录行的创建逻辑。
【注意事项】
无
【应用场景】
<1>新建单据或者新增分录行时,使用插件接管分录行的创建逻辑。
<2>阻止分录行的创建。
<3>限制分录行数。
【代码模板】
using Kingdee.BOS.Core.DynamicForm.PlugIn; using Kingdee.BOS.Core.DynamicForm.PlugIn.Args; using Kingdee.BOS.Util; using System.ComponentModel; /// <summary> /// 【表单插件】BeforeCreateNewEntryRow /// </summary> [Description("【表单插件】BeforeCreateNewEntryRow"), HotUpdate] public class BeforeCreateNewEntryRowFormPlugIn : AbstractDynamicFormPlugIn { public override void BeforeCreateNewEntryRow(BeforeCreateNewEntryEventArgs e) { base.BeforeCreateNewEntryRow(e); // TODO } }
【应用案例】
【二开案例.表单插件.BeforeCreateNewEntryRow】https://vip.kingdee.com/article/366991693238775552
【二开案例.单据插件.录单时限制分录行数】https://vip.kingdee.com/article/84668136569228800
---------------------------------------------------------------------------------------------------------
【二开案例.表单插件.全事件】https://vip.kingdee.com/article/355639688935569152
【金蝶云星空BOS二次开发案例演示】https://vip.kingdee.com/article/94751030918525696
二开案例.表单插件.事件.BeforeCreateNewEntryRow
本文2024-09-23 04:00:38发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-162525.html