프로젝트편집에 일 업무현황 등록과 todo 항목 추가
This commit is contained in:
@@ -405,7 +405,7 @@ namespace FCOMMON
|
||||
retval.idx = -1;
|
||||
|
||||
string sql = "select [id],[name],([name] +'(' +[id] +')') as dispName,[dept],[email],[level],[tel] " +
|
||||
" from Users " +
|
||||
" from vGroupUser " +
|
||||
" where gcode='" + FCOMMON.info.Login.gcode + "' and [id] <> 'dev' and dept like '%" + FCOMMON.info.Login.dept.Replace("'", "''") + "%' order by [name]";
|
||||
var cmd = new SqlCommand(sql, cn);
|
||||
var da = new SqlDataAdapter(sql, cn);
|
||||
@@ -695,7 +695,7 @@ namespace FCOMMON
|
||||
|
||||
var cn = getCn();
|
||||
cn.Open();
|
||||
var sql = "select idx,isnull(name,''),pdate from Projects" +
|
||||
var sql = "select idx, '[' + cast(idx as varchar) + '] ' + isnull(name,''),pdate from Projects" +
|
||||
" where gcode='{0}'" +
|
||||
" and (isnull(userManager,'') like '%{1}%'" +
|
||||
" or isnull(userMain,'') like '%{1}%'" +
|
||||
@@ -716,7 +716,7 @@ namespace FCOMMON
|
||||
}
|
||||
|
||||
|
||||
public static System.Data.DataTable getCodeTable(string GroupCode = "99")
|
||||
public static System.Data.DataTable getCodeTable(string GroupCode = "99",string sort="memo")
|
||||
{
|
||||
|
||||
System.Data.DataTable retval = new System.Data.DataTable();
|
||||
@@ -730,7 +730,7 @@ namespace FCOMMON
|
||||
" from common" +
|
||||
" where gcode='" + FCOMMON.info.Login.gcode + "' and grp = '" + GroupCode + "'" +
|
||||
" and isnull(code,'') <> ''" +
|
||||
" order by isnull(memo,'')";
|
||||
" order by isnull("+ sort + ",'')";
|
||||
var cmd = new SqlCommand(sql, cn);
|
||||
var rdr = cmd.ExecuteReader();
|
||||
while (rdr.Read())
|
||||
|
||||
@@ -56,7 +56,7 @@ namespace FCOMMON
|
||||
public static string libxlCompany = "Amkor Technology korea, Inc";
|
||||
public static string libxlKey = "windows-282b2b0800c5e0016bb06a6fafjfd6o8";
|
||||
public static int camIndex = 0;
|
||||
public static string ftp_ip = "10.131.36.57";
|
||||
public static string serverip = "10.131.32.29";
|
||||
public static string ftp_id = "project";
|
||||
public static string ftp_pw = "Amkor1234";
|
||||
public static int ftp_port = 2121;
|
||||
|
||||
Reference in New Issue
Block a user