This commit is contained in:
PastSaid
2024-03-04 16:50:20 +08:00
parent f3eae0a034
commit 5e2781182d
133 changed files with 20406 additions and 501 deletions

View File

@@ -0,0 +1,33 @@
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);
}
}
}