a
This commit is contained in:
39
03.珠海市汇威精密制造有限公司/ProductionMaterialsReport/TablePlugIn.cs
Normal file
39
03.珠海市汇威精密制造有限公司/ProductionMaterialsReport/TablePlugIn.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using Kingdee.BOS;
|
||||
using Kingdee.BOS.Core.Bill;
|
||||
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;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace HW.ProductionMaterialsReport
|
||||
{
|
||||
public class TablePlugIn : AbstractSysReportPlugIn
|
||||
{
|
||||
private readonly string _fromId;
|
||||
|
||||
public override void FormatCellValue(FormatCellValueArgs args)
|
||||
{
|
||||
var billParam = new BillShowParameter();
|
||||
|
||||
}
|
||||
|
||||
public override void CellDbClick(CellEventArgs args)
|
||||
{
|
||||
base.CellDbClick(args);
|
||||
|
||||
}
|
||||
private void ShowListFrom()
|
||||
{
|
||||
var showParam = new ListShowParameter();
|
||||
showParam.FormId = _fromId;
|
||||
showParam.ParentPageId = this.View.PageId;
|
||||
showParam.OpenStyle.ShowType = ShowType.Floating;
|
||||
//showParam.ListFilterParameter.Filter = string.Format(" FID IN ('{0}') ", voucherIDStr);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user