sap 클립보드 기능 추가

This commit is contained in:
chi
2023-04-24 15:06:04 +09:00
parent 569e059b8a
commit 492f33d70b
20 changed files with 5180 additions and 262 deletions

View File

@@ -1019,7 +1019,20 @@ namespace FCOMMON
return retval;
}
public static string GetUserTel(string gcode, string uid)
{
var slq = "select isnull(tel,'') from vGroupUser" +
$" where gcode = '{gcode}'" +
$" and id = '{uid}'";
try
{
return ExecuteScalar(slq);
}catch ( Exception ex)
{
return string.Empty;
}
}
public static System.Data.DataTable getUserProjectList(string userName)
{