This commit is contained in:
chi
2021-03-31 17:55:06 +09:00
parent d7a6cb25c5
commit 33ef66b173
11 changed files with 418 additions and 979 deletions

View File

@@ -39,9 +39,6 @@ namespace FEQ0000
var grpMod = gItemM.GroupBy(t => t.model);
foreach (var gItemMod in grpMod)
{
var grpLine = gItemMod.GroupBy(t => t.lineT + "-" + t.lineP);
foreach (var gItemLine in grpLine)
{
@@ -84,7 +81,7 @@ namespace FEQ0000
Microsoft.Reporting.WinForms.ReportDataSource DsEQ = new Microsoft.Reporting.WinForms.ReportDataSource();
DsEQ.Name = "DataSet1";
this.rpv1.LocalReport.ReportEmbeddedResource = "FEQ0000.Equipment.ReportA.rdlc";
this.rpv1.LocalReport.ReportEmbeddedResource = "FEQ0000.Equipment.ReportB.rdlc";
DsEQ.Value = dtSum;
this.rpv1.LocalReport.DataSources.Add(DsEQ);