summary report 관련 데이터 업데이트

This commit is contained in:
chi
2021-03-26 10:31:40 +09:00
parent 3a667f14b1
commit 1efe0fa04e
33 changed files with 13666 additions and 4411 deletions

View File

@@ -29,7 +29,7 @@ namespace FEQ0000
this.rpv1.PageCountMode = Microsoft.Reporting.WinForms.PageCountMode.Actual;
this.rpv1.ZoomMode = Microsoft.Reporting.WinForms.ZoomMode.PageWidth;
//Set DataSource
Microsoft.Reporting.WinForms.ReportDataSource DsEQ = new Microsoft.Reporting.WinForms.ReportDataSource();
DsEQ.Name = "DataSet1";
@@ -56,6 +56,12 @@ namespace FEQ0000
taI.Fill(this.dsEQ.vEquStockIng, this.pdate);
DsEQ.Value = this.dsEQ.vEquStockIng;
break;
case fEquipment.eTabletype.OTHER:
this.rpv1.LocalReport.ReportEmbeddedResource = "FEQ0000.Equipment.ReportO.rdlc";
taO.Fill(this.dsEQ.vEquStockOther, this.pdate);
DsEQ.Value = this.dsEQ.vEquStockOther;
break;
}
this.rpv1.LocalReport.DataSources.Add(DsEQ);