프로젝트 스케쥴 오류 수정
This commit is contained in:
@@ -366,6 +366,7 @@ namespace FPJ0000
|
||||
var taMdata = new dsMailTableAdapters.MailDataTableAdapter();
|
||||
var dtMdata = new FPJ0000.dsMail.MailDataDataTable();
|
||||
var mbody = dtMdata.NewMailDataRow();
|
||||
mbody.gcode = FCOMMON.info.Login.gcode;
|
||||
mbody.tolist = mf.tolist;
|
||||
mbody.bcc = mf.bcc;
|
||||
mbody.cc = mf.cc;
|
||||
|
||||
@@ -94,14 +94,13 @@ namespace FPJ0000
|
||||
this.taProjectInfo.FillByIDX(this.dsPRJ.Projects, this.projectindex);
|
||||
|
||||
//스케쥴 그룹(no)
|
||||
var db = new dsPRJTableAdapters.EETGW_ProjectsScheduleTableAdapter();// EEEntities();
|
||||
var nolist = db.GetNoList(FCOMMON.info.Login.gcode, this.projectindex);//.AsNoTracking().Where(t => t.gcode == FCOMMON.info.Login.gcode && t.project == this.projectindex).GroupBy(t => t.no).ToList();
|
||||
var db = new dsPRJTableAdapters.EETGW_ProjectsSchedule_NoListTableAdapter();// EEEntities();
|
||||
var nolist = db.GetData(FCOMMON.info.Login.gcode, this.projectindex);//.AsNoTracking().Where(t => t.gcode == FCOMMON.info.Login.gcode && t.project == this.projectindex).GroupBy(t => t.no).ToList();
|
||||
this.comboBox1.Items.Clear();
|
||||
if (nolist.Any())
|
||||
{
|
||||
foreach (var item in nolist)
|
||||
{
|
||||
if (item.IsnoNull()) continue;
|
||||
this.comboBox1.Items.Add(item.no.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user