二开案例.服务插件.单据编号保存到单据体上
【应用场景】
保存单据时,将单据编号保存到单据体上。
【案例演示】
采购订单,保存单据时,单据编号保存到单据体的备注字段上。
【实现步骤】
<1>编写服务插件,代码如下。
using Kingdee.BOS.Core.DynamicForm.PlugIn;
using Kingdee.BOS.Core.DynamicForm.PlugIn.Args;
using Kingdee.BOS.JSON;
using Kingdee.BOS.Orm.DataEntity;
using Kingdee.BOS.Util;
using System.Collections.Generic;
using System.ComponentModel;
namespace Jac.XkDemo.BOS.App.PlugIn
{
/// <summary>
/// 【服务插件】单据编号保存到单据体上
/// </summary>
[Description("【服务插件】单据编号保存到单据体上"), HotUpdate]
public class CopyBillNoToEntityOperationServicePlugIn : AbstractOperationServicePlugIn
{
public override void OnPrepareOperationServiceOption(OnPrepareOperationServiceEventArgs e)
{
base.OnPrepareOperationServiceOption(e);
if (!string.IsNullOrWhiteSpace(this.FormOperation.LoadKeys) && this.FormOperation.LoadKeys != "null")
{
// 设置操作完后刷新动态的备注字段
var loadKeys = KDObjectConverter.DeserializeObject<List<string>>(this.FormOperation.LoadKeys);
if (loadKeys == null)
{
loadKeys = new List<string>();
}
if (!loadKeys.Contains("FEntryNote"))
{
loadKeys.Add("FEntryNote");
}
this.FormOperation.LoadKeys = KDObjectConverter.SerializeObject(loadKeys);
}
}
public override void BeginOperationTransaction(BeginOperationTransactionArgs e)
{
base.BeginOperationTransaction(e);
//保存单据时, 将单据编号保存到单据体上备注字段上(FEntryNote)
var billNoField = this.BusinessInfo.GetBillNoField();
var entity = this.BusinessInfo.GetEntity("FPOOrderEntry");
var noteField = this.BusinessInfo.GetField("FEntryNote");
foreach (var dataEntity in e.DataEntitys)
{
var rows = (DynamicObjectCollection)dataEntity[entity.DynamicProperty.Name];
if (rows != null)
{
foreach (var row in rows)
{
row[noteField.PropertyName] = dataEntity[billNoField.PropertyName];
}
}
}
}
}
}
<2>拷贝插件组件到应用站点的WebSite\Bin目录下,重启IIS。
<3>BOSIDE扩展采购订单,保存操作注册服务插件,保存元数据,开发完毕。
【功能验证】
<1>登录业务站点,打开采购订单新增界面,新增保存单据后,效果如下图。
---------------------------------------------------------------------------------------------------------
【金蝶云星空BOS二次开发案例演示】https://vip.kingdee.com/article/94751030918525696
二开案例.服务插件.单据编号保存到单据体上
本文2024-09-23 04:08:13发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-163371.html