This commit is contained in:
PastSaid
2024-03-28 11:30:14 +08:00
parent c31957eb64
commit 912bea60ac
64 changed files with 5868 additions and 158 deletions

View File

@@ -1,5 +1,7 @@
using Kingdee.BOS.Core.Bill;
using Kingdee.BOS.Core.CommonFilter;
using Kingdee.BOS.Core.DynamicForm;
using Kingdee.BOS.Core.List;
using Kingdee.BOS.Core.Metadata;
using Kingdee.BOS.Core.Report.PlugIn;
using Kingdee.BOS.Core.Report.PlugIn.Args;
@@ -22,12 +24,13 @@ namespace HW.ProductionMateralsPlugIn
public void ShowForm(string _fromId, string _pkVal)
{
var showParam = new BillShowParameter();
var showParam = new ListShowParameter();
showParam.FormId = _fromId;
showParam.Status = OperationStatus.VIEW;
showParam.OpenStyle.ShowType = ShowType.Floating;
showParam.PKey = _pkVal;
//showParam.PKey = _pkVal;
this.View.ShowForm(showParam);
}
}
}