2024-03-04 16:50:20 +08:00
|
|
|
|
using Kingdee.BOS;
|
|
|
|
|
|
using Kingdee.BOS.Core.Bill;
|
2024-03-11 09:04:46 +08:00
|
|
|
|
using Kingdee.BOS.Core.Metadata;
|
2024-03-04 16:50:20 +08:00
|
|
|
|
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
|
|
|
|
|
|
{
|
|
|
|
|
|
public override void FormatCellValue(FormatCellValueArgs args)
|
|
|
|
|
|
{
|
|
|
|
|
|
var billParam = new BillShowParameter();
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override void CellDbClick(CellEventArgs args)
|
|
|
|
|
|
{
|
|
|
|
|
|
base.CellDbClick(args);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|