업무일ㅈ 출력물에 공정 선택 기능 연결 (기존에는 선택가능했으나 적용 안되있었음), 프로젝트 목록에서 완료일 기준으로 정렬하는 기능 추가

This commit is contained in:
chi
2024-06-27 14:12:18 +09:00
parent dde60a7fe8
commit 88ebe5bedf
9 changed files with 309 additions and 167 deletions

View File

@@ -97,8 +97,34 @@ namespace FPJ0000.JobReport_
if (username.isEmpty() == false && username.StartsWith("--") == false)
uid = username.Substring(1, username.IndexOf("]") - 1);// "395552";
taH.Fill(this.dsReport.vJobReportForUser, FCOMMON.info.Login.gcode, vSD, vED, uid);
if (tbProcess.SelectedIndex == 0)
{
if(cmbUser.SelectedIndex == 0)
{
//전체공정-전체인원
taH.Fill(this.dsReport.vJobReportForUser, FCOMMON.info.Login.gcode, vSD, vED, uid);
}
else
{
//전체공정-특정인원
taH.Fill(this.dsReport.vJobReportForUser, FCOMMON.info.Login.gcode, vSD, vED, uid);
}
}
else
{
if (cmbUser.SelectedIndex == 0)
{
//특정공정-전체인원
taH.FillByProcess(this.dsReport.vJobReportForUser, FCOMMON.info.Login.gcode, vSD, vED, tbProcess.Text);
}
else
{
//특정공정-특정인원
taH.Fill(this.dsReport.vJobReportForUser, FCOMMON.info.Login.gcode, vSD, vED, uid);
}
}
//this.reportViewer1.SetDisplayMode(Microsoft.Reporting.WinForms.DisplayMode.PrintLayout);
//this.reportViewer1.ZoomMode = Microsoft.Reporting.WinForms.ZoomMode.PageWidth;
//this.reportViewer1.RefreshReport();