서버 접속을 IT 로 변경

로그 관련은 현재 수정중
This commit is contained in:
chikyun.kim
2019-08-28 09:38:03 +09:00
parent 6a90be2e6d
commit d762d3e623
39 changed files with 1639 additions and 4137 deletions

View File

@@ -374,7 +374,7 @@ namespace FCOMMON
var retval = new sItemInfo();
retval.idx = -1;
string sql = "select [id],[name],concat([name],'(',[id],')') as dispName,[dept],[email],[level],[tel] " +
string sql = "select [id],[name],([name] +'(' +[id] +')') as dispName,[dept],[email],[level],[tel] " +
" from Users " +
" 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);
@@ -513,7 +513,10 @@ namespace FCOMMON
retval.svalue = memo;
return retval;
}
public static Boolean insertCode(string GroupCode, string code,string memo,string svalue="")
public static Boolean insertCommonCode(string GroupCode, string code,string memo,string svalue="")
{
var cn = getCn();