23 lines
674 B
C#
23 lines
674 B
C#
using Kingdee.BOS.Core.Metadata.ConvertElement.PlugIn;
|
|
using Kingdee.BOS.Core.Metadata.ConvertElement.PlugIn.Args;
|
|
using Kingdee.BOS.Util;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GZ_LTHPilot_ORDER.SAL_DELIVERYNOTICE
|
|
{
|
|
[Description("单据转换:发货通知单下推销售出库单校验"), HotUpdate]
|
|
public class PushCeLue : AbstractConvertPlugIn
|
|
{
|
|
public override void OnParseFilter(ParseFilterEventArgs e)
|
|
{
|
|
base.OnParseFilter(e);
|
|
e.FilterPolicySQL = string.Format("And 1 = 1");
|
|
}
|
|
}
|
|
}
|