二开案例.表单插件.BeforeEntryRowDataBinder

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

二开案例.表单插件.BeforeEntryRowDataBinder

【应用场景】

取消新增分录行。

单据查看界面,对单据体的某些字段的值进行特殊处理。


【案例演示】

采购订单,修改模式下,禁止新增分录行。



【实现步骤】

<1>编写表单插件,代码如下。

using Kingdee.BOS.Core.DynamicForm.PlugIn;
using Kingdee.BOS.Core.DynamicForm.PlugIn.Args;
using Kingdee.BOS.Core.Metadata;
using Kingdee.BOS.Util;
using System.ComponentModel;
namespace Jac.XkDemo.BOS.Business.PlugIn
{
    /// <summary>
    /// 【表单插件】BeforeEntryRowDataBinder
    /// </summary>
    [Description("【表单插件】BeforeEntryRowDataBinder"), HotUpdate]
    public class BeforeEntryRowDataBinderFormPlugIn : AbstractDynamicFormPlugIn
    {
        public override void BeforeEntryRowDataBinder(BeforeEntryRowDataBinderArgs e)
        {
            base.BeforeEntryRowDataBinder(e);
            if (e.Control.Key == "FPOOrderEntry")
            {
                // 修改绑定值(注意:修改BindValue仅影响前台显示,不会修改Model.DataObject,也就是说,该用法仅适合在查看状态的单据上使用)
                //var bindValue = e.Control.GetRowBindValue(new ControlBindValueArgs(this.View, e.RowIndex, e.RowData));
                //bindValue[28] = "XXXXXX";
                //e.BindValue = bindValue;
                if (this.View.OpenParameter.Status != OperationStatus.ADDNEW)
                {
                    // 取消新增分录行
                    e.Cancel = true;
                    this.View.ShowMessage("修改状态下,禁止新增分录行!");
                }
            }
        }
    }
}

<2>拷贝插件组件到应用站点的WebSite\Bin目录下,重启IIS。


<3>BOSIDE扩展采购订单,注册表单插件,保存元数据,开发完毕。


【功能验证】

<1>登录业务站点,打开采购订单编辑界面,点击明细信息单据体的菜单新增,新增操作被禁止了。

---------------------------------------------------------------------------------------------------------













【金蝶云星空BOS二次开发案例演示】https://vip.kingdee.com/article/94751030918525696

二开案例.表单插件.BeforeEntryRowDataBinder

【应用场景】取消新增分录行。单据查看界面,对单据体的某些字段的值进行特殊处理。【案例演示】采购订单,修改模式下,禁止新增分录行。【...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息