29 lines
842 B
C#
29 lines
842 B
C#
using Kingdee.BOS.Core.Bill.PlugIn;
|
||
using Kingdee.BOS.Core.DynamicForm.PlugIn.Args;
|
||
using Kingdee.BOS.Util;
|
||
using System.ComponentModel;
|
||
|
||
namespace Pilot_KD_Parino.AR_SalesVATInvoice
|
||
{
|
||
[HotUpdate, Description("销售增值税专用发票_表单插件")]
|
||
public class Bill : AbstractBillPlugIn
|
||
{
|
||
public override void AfterDoOperation(AfterDoOperationEventArgs e)
|
||
{
|
||
base.AfterDoOperation(e);
|
||
|
||
string opt = e.Operation.Operation;
|
||
|
||
// 保存成功后刷新界面(参考收款核销5的刷新方式)
|
||
if (opt == "Save" && e.OperationResult.IsSuccess)
|
||
{
|
||
// 刷新单据体视图
|
||
this.View.UpdateView("SALESICENTRY");
|
||
// 刷新整个界面
|
||
this.View.Refresh();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|