....
This commit is contained in:
@@ -45,15 +45,19 @@ namespace FPJ0000
|
||||
int curLevel = Math.Max(FCOMMON.info.Login.level, FCOMMON.DBM.getAuth(FCOMMON.DBM.eAuthType.otconfirm));
|
||||
//cmbProcess.Items.Clear();
|
||||
//cmbProcess.Items.Add("--전체--");
|
||||
//foreach (dsReport.ProcessListRow dr in dtProcList)
|
||||
//{
|
||||
// cmbProcess.Items.Add(dr.processs);
|
||||
//}
|
||||
//cmbProcess.Text = FCOMMON.info.Login.process;
|
||||
//if (cmbProcess.SelectedIndex < 0) cmbProcess.SelectedIndex = 0; //공정이 없는 사람은 전체보기로 함
|
||||
|
||||
tbProcess.Text = FCOMMON.info.Login.process;
|
||||
tbProcess.Tag = new List<string>(new string[] { FCOMMON.info.Login.process });
|
||||
|
||||
|
||||
List<String> fprclist = new List<string>();
|
||||
foreach (dsReport.ProcessListRow dr in dtProcList)
|
||||
{
|
||||
fprclist.Add(dr.processs);
|
||||
}
|
||||
tbProcess.Tag = fprclist.ToArray();
|
||||
tbProcess.Text = string.Join(",", fprclist.ToArray());
|
||||
|
||||
//tbProcess.Text = FCOMMON.info.Login.process;
|
||||
//tbProcess.Tag = new List<string>(new string[] { FCOMMON.info.Login.process });
|
||||
|
||||
//담당자목록 - 사용자목록으로 처리한다.
|
||||
string namestr = string.Format("{0}({1})", FCOMMON.info.Login.nameK, FCOMMON.info.Login.no);
|
||||
@@ -125,7 +129,7 @@ namespace FPJ0000
|
||||
var taUserList = new dsReportTableAdapters.ProcessUserListTableAdapter();
|
||||
|
||||
var prclist = this.tbProcess.Tag as List<string>;
|
||||
if (prclist.Count < 1)
|
||||
if (prclist == null || prclist.Count < 1)
|
||||
{
|
||||
var processStr = "%";
|
||||
var dtUserList = taUserList.GetData(processStr, FCOMMON.info.Login.gcode);
|
||||
|
||||
Reference in New Issue
Block a user