This commit is contained in:
PastSaid
2023-12-20 22:26:30 +08:00
parent fe71b6365c
commit 4a98ba6946
15 changed files with 975 additions and 38 deletions

View File

@@ -7,11 +7,12 @@
<ProjectGuid>{01F02D15-2726-4077-80FC-9E38EF29BABC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Kingdee.K3.SCM.App.Sal.Report</RootNamespace>
<AssemblyName>Kingdee.K3.SCM.App.Sal.Report.PlugInEx</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<RootNamespace>HW.App.Sal.Report.PlugInEx</RootNamespace>
<AssemblyName>HW.App.Sal.Report.PlugInEx</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>

View File

@@ -1,4 +1,5 @@
using Kingdee.BOS.Core.Report;
using Kingdee.BOS;
using Kingdee.BOS.Core.Report;
using Kingdee.BOS.Util;
using Kingdee.K3.SCM.App.Sal.Report;
using System;
@@ -6,10 +7,11 @@ using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
namespace Kingdee.K3.SCM.App.Sal.ReportEx
namespace HW.App.Sal.Report.PlugInEx
{
[Description("销售出库明细报表数据源插件-扩展"), HotUpdate]
public class SaleOutStockDetailRptEx : SaleOutStockDetailRpt
@@ -36,7 +38,11 @@ namespace Kingdee.K3.SCM.App.Sal.ReportEx
protected override DataTable GetReportData(string tablename, IRptParams filter)
{
return base.GetReportData(tablename, filter);
var dataTable = base.GetReportData(tablename, filter);
var sql = @"select ";
return dataTable;
}
public override void CloseReport()
@@ -46,7 +52,11 @@ namespace Kingdee.K3.SCM.App.Sal.ReportEx
public override ReportHeader GetReportHeaders(IRptParams filter)
{
return base.GetReportHeaders(filter);
var header = base.GetReportHeaders(filter);
//header.AddChild("FSALESCATEGORY", new LocaleValue("销售类别"));
return header;
}
}
}