..전자실 추가 중

This commit is contained in:
chi
2021-01-23 00:53:21 +09:00
parent d3778387de
commit 44110ef5c2
22 changed files with 3160 additions and 1082 deletions

View File

@@ -31,7 +31,7 @@ namespace FPJ0000
{
//프로젝트 목록을 처리함
//this.tbRequest.Text = FCOMMON.info.Login.nameK;
cmbDateType.SelectedIndex = 0; //기본시작일 기준으로 한다
//분류 - 190905
var dt_cate = FCOMMON.DBM.getCodeTable("20");
@@ -90,13 +90,11 @@ namespace FPJ0000
string state = "[status] = '" + cmbStat.Text + "'"; //아무것도 선택안하면 진행을 선택해준다.
string State_Select = " SELECT *, dbo.getLastHistory(idx) AS lasthistory FROM Projects";
string State_where = " WHERE gcode=@gcode and ";
string State_where = " WHERE gcode=@gcode and isnull(div,'')='EB' and ";
State_where += " isnull(isdel,0)=0 and "; //삭제보기 햇을 경우
var dateField = "pdate";
if (cmbDateType.SelectedIndex == 1) dateField = "edate";
else if (cmbDateType.SelectedIndex == 2) dateField = "odate";
State_where += " " + dateField + " between '" + cmbYearS.Text + "-01-01' and '" + cmbYearE.Text + "-12-31' AND (ISNULL(userManager, '') LIKE @username OR " +
"ISNULL(usermain, '') LIKE @username OR " +
@@ -603,5 +601,10 @@ namespace FPJ0000
{
refreshData();
}
private void fpSpread1_CellClick(object sender, FarPoint.Win.Spread.CellClickEventArgs e)
{
}
}
}