|
@@ -16303,6 +16303,8 @@ FROM
|
|
|
|
|
|
bool hotelIsTrue = _sqlSugar.Queryable<Grp_HotelInquiry>().Where(x => x.DiId == diid && x.IsDel == 0).Count() > 0;
|
|
|
|
|
|
+ var groupModuleOperators = GeneralMethod.GetGroupModuleOperators(diid);
|
|
|
+
|
|
|
return Ok(JsonView(new
|
|
|
{
|
|
|
groupList,
|
|
@@ -16324,7 +16326,8 @@ FROM
|
|
|
}).ToList(),
|
|
|
baoPi = _GroupCostParameterRepository.GetBaoPi(diid),
|
|
|
blackCodeIsTrue = _sqlSugar.Queryable<Air_TicketBlackCode>().Where(x => x.IsDel == 0 && x.DiId == diid).Any(), //create.Code == 0 ? true : false,
|
|
|
- hotelIsTrue,
|
|
|
+ hotelIsTrue,
|
|
|
+ groupModuleOperators
|
|
|
}));
|
|
|
}
|
|
|
|