|
|
@ -274,51 +274,24 @@ namespace EasyBL.WEBAPP.SYS |
|
|
|
|
|
|
|
#endregion 問卷管理-問卷類別查詢(List 查詢類別)
|
|
|
|
|
|
|
|
#region 問卷管理-類別查詢(List 查詢類別)
|
|
|
|
#region 問卷管理(List 查詢所有子類別 Call CategoryMaintain_QryService QueryAllSubCategoryList)
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 問卷管理-類別查詢(List 查詢類別)
|
|
|
|
/// 問卷管理(List 查詢所有子類別 Call CategoryMaintain_QryService QueryAllSubCategoryList)
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="i_crm"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public ResponseMessage QueryCategoryList(RequestMessage i_crm) |
|
|
|
{ |
|
|
|
ResponseMessage rm = null; |
|
|
|
string sMsg = null; |
|
|
|
var db = SugarBase.GetIntance(); |
|
|
|
|
|
|
|
var sIsMainCategory = "N"; |
|
|
|
CategoryMaintain_QryService cm_qry = new CategoryMaintain_QryService(); |
|
|
|
|
|
|
|
try |
|
|
|
{ |
|
|
|
do |
|
|
|
{ |
|
|
|
var saCategory = db.Queryable<SETB_SYS_Category>() |
|
|
|
//搜尋條件
|
|
|
|
.Where(x => x.OrgID == i_crm.ORIGID && x.Effective == "Y" && x.DelStatus == "N") |
|
|
|
.Where(x => x.IsMainCategory == sIsMainCategory) |
|
|
|
.ToList(); |
|
|
|
ResponseMessage rm = cm_qry.QueryAllSubCategoryList(i_crm); |
|
|
|
|
|
|
|
rm = new SuccessResponseMessage(null, i_crm); |
|
|
|
rm.DATA.Add(BLWording.REL, saCategory); |
|
|
|
} while (false); |
|
|
|
} |
|
|
|
catch (Exception ex) |
|
|
|
{ |
|
|
|
sMsg = Util.GetLastExceptionMsg(ex); |
|
|
|
LogAndSendEmail(sMsg + "Params:" + JsonToString(i_crm), ex, i_crm.ORIGID, i_crm.USERID, nameof(SurveyMaintain_QryService), "", "QueryCategoryList 問卷管理-類別查詢(List 查詢類別)", "", "", ""); |
|
|
|
} |
|
|
|
finally |
|
|
|
{ |
|
|
|
if (null != sMsg) |
|
|
|
{ |
|
|
|
rm = new ErrorResponseMessage(sMsg, i_crm); |
|
|
|
} |
|
|
|
} |
|
|
|
return rm; |
|
|
|
} |
|
|
|
|
|
|
|
#endregion 問卷管理-類別查詢(List 查詢類別)
|
|
|
|
#endregion 問卷管理(List 查詢所有子類別 Call CategoryMaintain_QryService QueryAllSubCategoryList)
|
|
|
|
|
|
|
|
#region 問卷管理-答案類別查詢(List 查詢類別)
|
|
|
|
|
|
|
|