质量更新:
1、企业及分支机构检查 2、机具设备 批量退场 3、质量会议互通到总包 4、机具设备互通到总包
This commit is contained in:
@@ -18,7 +18,7 @@ namespace FineUIPro.Web.TestRun.Meeting
|
||||
string id = Request.Params["id"];
|
||||
if (!string.IsNullOrEmpty(id))
|
||||
{
|
||||
Model.Driver_Meeting data = BLL.MeetingService.GetMeetingById(id);
|
||||
Model.Driver_Meeting data = BLL.DriverMeetingService.GetMeetingById(id);
|
||||
if (data != null)
|
||||
{
|
||||
this.hdId.Text = id;
|
||||
@@ -77,7 +77,7 @@ namespace FineUIPro.Web.TestRun.Meeting
|
||||
if (!string.IsNullOrEmpty(id))
|
||||
{
|
||||
newData.MeetingId = id;
|
||||
BLL.MeetingService.UpdateMeeting(newData);
|
||||
BLL.DriverMeetingService.UpdateMeeting(newData);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -90,7 +90,7 @@ namespace FineUIPro.Web.TestRun.Meeting
|
||||
newData.MeetingId = SQLHelper.GetNewID(typeof(Model.Driver_Meeting));
|
||||
this.hdId.Text = newData.MeetingId;
|
||||
}
|
||||
BLL.MeetingService.AddMeeting(newData);
|
||||
BLL.DriverMeetingService.AddMeeting(newData);
|
||||
}
|
||||
|
||||
#region 保存参会人员
|
||||
@@ -167,7 +167,7 @@ namespace FineUIPro.Web.TestRun.Meeting
|
||||
chidNode.Checked = true;
|
||||
chidNode.Expanded = true;
|
||||
chidNode.Selectable = true;
|
||||
var meeting = BLL.MeetingService.GetMeetingById(this.hdId.Text.Trim());
|
||||
var meeting = BLL.DriverMeetingService.GetMeetingById(this.hdId.Text.Trim());
|
||||
if (meeting != null)
|
||||
{
|
||||
if (i.IsMeeting == true)
|
||||
|
||||
Reference in New Issue
Block a user