This commit is contained in:
chi
2023-01-09 16:22:06 +09:00
parent 32b5059af8
commit ff2b5834fa
9 changed files with 589 additions and 472 deletions

View File

@@ -141,6 +141,14 @@ namespace FPJ0000
var taUserList = new dsReportTableAdapters.ProcessUserListTableAdapter();
var processStr = "%";
var dtUserList = taUserList.GetData(processStr, FCOMMON.info.Login.gcode);
var newdrnone = dSComm.UserList.NewUserListRow();
newdrnone.ID = string.Empty;
newdrnone.Name = "(없음)";
newdrnone.Outdate = null;
newdrnone.Description = string.Empty;
dSComm.UserList.AddUserListRow(newdrnone);
foreach (dsReport.ProcessUserListRow dr in dtUserList.OrderBy(t => t.outdate))
{
if (String.IsNullOrEmpty(dr.outdate) == false)