二开案例.服务插件.审核后更新修改日期
【应用场景】
正常情况想,单据审核后,通常只会修改审核日期,不会修改最后修改日期。如果需要审核后更新修改日期,需要二开才能实现。
【案例演示】
采购订单,审核后同步修改单据的最后修改日期。
【实现步骤】
<1>编写服务插件,代码如下。
using Kingdee.BOS.App;
using Kingdee.BOS.Contracts;
using Kingdee.BOS.Core.DynamicForm.PlugIn;
using Kingdee.BOS.Core.DynamicForm.PlugIn.Args;
using Kingdee.BOS.JSON;
using Kingdee.BOS.Util;
using System.Collections.Generic;
using System.ComponentModel;
namespace Jac.XkDemo.BOS.App.PlugIn
{
/// <summary>
/// 【服务插件】审核后更新修改日期
/// </summary>
[Description("【服务插件】审核后更新修改日期"), HotUpdate]
public class SetModifyDataAfterAuditOperationServicePlugIn : AbstractOperationServicePlugIn
{
public override void OnPreparePropertys(PreparePropertysEventArgs e)
{
base.OnPreparePropertys(e);
var modifyDateFieldKey = "FModifyDate";
e.FieldKeys.Add(modifyDateFieldKey);
if (!string.IsNullOrWhiteSpace(this.FormOperation.LoadKeys) && this.FormOperation.LoadKeys != "null")
{
// 设置操作完后刷新字段
var loadKeys = KDObjectConverter.DeserializeObject<List<string>>(this.FormOperation.LoadKeys);
if (loadKeys != null && !loadKeys.Contains(modifyDateFieldKey))
{
loadKeys.Add(modifyDateFieldKey);
this.FormOperation.LoadKeys = KDObjectConverter.SerializeObject(loadKeys);
}
}
}
public override void BeginOperationTransaction(BeginOperationTransactionArgs e)
{
base.BeginOperationTransaction(e);
if (this.FormOperation.OperationId == 1)
{
var dtNow = ServiceHelper.GetService<ITimeService>().GetSystemDateTime(this.Context);
foreach (var dataEntity in e.DataEntitys)
{
dataEntity["ModifyDate"] = dtNow;
}
}
}
}
}
<2>拷贝插件组件到应用站点的WebSite\Bin目录下,重启IIS。
<3>BOSIDE扩展采购订单,审核操作注册服务插件,保存元数据,开发完毕。
【功能验证】
<1>登录业务站点,打开采购订单编辑界面,审核单据,此时修改日期也同步更新。
---------------------------------------------------------------------------------------------------------
【金蝶云星空BOS二次开发案例演示】https://vip.kingdee.com/article/94751030918525696
二开案例.服务插件.审核后更新修改日期
本文2024-09-23 04:08:25发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-163392.html