Files
GateDge2023_ljy/03.珠海市汇威精密制造有限公司/HW.ProductionMateralsPlugIn/TableOperationPlugInEx.cs
PastSaid 08d8878eef a
2024-03-11 14:47:23 +08:00

34 lines
924 B
C#

using Kingdee.BOS.Core.Bill;
using Kingdee.BOS.Core.DynamicForm;
using Kingdee.BOS.Core.Metadata;
using Kingdee.BOS.Core.Report.PlugIn;
using Kingdee.BOS.Core.Report.PlugIn.Args;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HW.ProductionMateralsPlugIn
{
public class TableOperationPlugInEx : AbstractSysReportPlugIn
{
public override void CellDbClick(CellEventArgs e)
{
e.Cancel = true;
var fldKey = e.Header.FieldName;
}
public void ShowForm(string _fromId, string _pkVal)
{
var showParam = new BillShowParameter();
showParam.FormId = _fromId;
showParam.Status = OperationStatus.VIEW;
showParam.OpenStyle.ShowType = ShowType.Floating;
showParam.PKey = _pkVal;
this.View.ShowForm(showParam);
}
}
}