Files
GateDge2023_ljy/03.珠海市汇威精密制造有限公司/HW.ProductionMateralsPlugIn/TableOperationPlugInEx.cs

37 lines
941 B
C#
Raw Normal View History

2024-03-04 16:50:20 +08:00
using Kingdee.BOS.Core.Bill;
2024-03-28 11:30:14 +08:00
using Kingdee.BOS.Core.CommonFilter;
2024-03-04 16:50:20 +08:00
using Kingdee.BOS.Core.DynamicForm;
2024-03-28 11:30:14 +08:00
using Kingdee.BOS.Core.List;
2024-03-04 16:50:20 +08:00
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)
{
2024-03-28 11:30:14 +08:00
var showParam = new ListShowParameter();
2024-03-04 16:50:20 +08:00
showParam.FormId = _fromId;
showParam.OpenStyle.ShowType = ShowType.Floating;
2024-03-28 11:30:14 +08:00
//showParam.PKey = _pkVal;
2024-03-04 16:50:20 +08:00
this.View.ShowForm(showParam);
2024-03-28 11:30:14 +08:00
2024-03-04 16:50:20 +08:00
}
}
}