Commit 107aab76 authored by 黄奎's avatar 黄奎

页面修改

parent 092cd87d
......@@ -52,6 +52,7 @@ namespace Edu.Module.Goods
public bool SetActivitySurveyGuestModule(RB_ActivitySurvey_Guest_Extend model)
{
bool flag = false;
bool isAdd = model.Id>0;
foreach (var item in model.GuestIdList)
{
//var oldModel = activitySurvey_GuestRepository.GetActivitySurveyGuestListRepository(new RB_ActivitySurvey_Guest_Extend()
......@@ -62,7 +63,7 @@ namespace Edu.Module.Goods
//model.Id = oldModel?.Id ?? 0;
model.GuestId = item.GuestId;
if (model.Id > 0)
if (isAdd)
{
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
......@@ -76,7 +77,6 @@ namespace Edu.Module.Goods
else
{
var newId = activitySurvey_GuestRepository.Insert(model);
model.Id = newId;
flag = newId > 0;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment