You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

224 lines
8.5 KiB

2 years ago
  1. using EasyBL.WebApi.Message;
  2. using Entity.Sugar;
  3. using SqlSugar;
  4. using SqlSugar.Base;
  5. using System;
  6. namespace EasyBL.WEBAPP.WSM
  7. {
  8. public class Task_UpdService : ServiceBase
  9. {
  10. #region 代辦管理(單筆查詢)
  11. /// <summary>
  12. /// 代辦管理(單筆查詢)
  13. /// </summary>
  14. /// <param name="i_crm"></param>
  15. /// <returns></returns>
  16. public ResponseMessage QueryOne(RequestMessage i_crm)
  17. {
  18. ResponseMessage rm = null;
  19. string sMsg = null;
  20. var db = SugarBase.GetIntance();
  21. try
  22. {
  23. do
  24. {
  25. var sEventID = _fetchString(i_crm, @"EventID");
  26. var oEntity = db.Queryable<OTB_SYS_Task, OTB_SYS_Members, OTB_SYS_Members, OTB_SYS_Members>
  27. ((t1, t2, t3, t4) =>
  28. new object[] {
  29. JoinType.Left, t1.OrgID == t2.OrgID && t1.CreateUser == t2.MemberID,
  30. JoinType.Left, t1.OrgID == t3.OrgID && t1.ModifyUser == t3.MemberID,
  31. JoinType.Inner, t1.OrgID == t4.OrgID && t1.Owner == t4.MemberID
  32. }
  33. )
  34. .Where((t1, t2, t3, t4) => t1.OrgID == i_crm.ORIGID && t1.EventID == sEventID)
  35. .Select((t1, t2, t3, t4) => new OTB_SYS_Task
  36. {
  37. EventID = SqlFunc.GetSelfAndAutoFill(t1.EventID),
  38. CreateUserName = t2.MemberName,
  39. ModifyUserName = t3.MemberName,
  40. ExFeild1 = t4.MemberName
  41. })
  42. .Single();
  43. var saTaskReply = db.Queryable<OTB_SYS_TaskReply>().Where(x => x.EventID == sEventID).ToList();
  44. rm = new SuccessResponseMessage(null, i_crm);
  45. rm.DATA.Add(BLWording.REL, oEntity);
  46. rm.DATA.Add("taskreply", saTaskReply);
  47. } while (false);
  48. }
  49. catch (Exception ex)
  50. {
  51. sMsg = Util.GetLastExceptionMsg(ex);
  52. LogAndSendEmail(sMsg + "Params:" + JsonToString(i_crm), ex, i_crm.ORIGID, i_crm.USERID, nameof(Task_UpdService), "", "QueryOne(代辦管理(單筆查詢))", "", "", "");
  53. }
  54. finally
  55. {
  56. if (null != sMsg)
  57. {
  58. rm = new ErrorResponseMessage(sMsg, i_crm);
  59. }
  60. }
  61. return rm;
  62. }
  63. #endregion 代辦管理(單筆查詢)
  64. #region 代辦管理(新增)
  65. /// <summary>
  66. /// 代辦管理(新增)
  67. /// </summary>
  68. /// <param name="i_crm">todo: describe i_crm parameter on UpdImportCustomers</param>
  69. /// <returns></returns>
  70. public ResponseMessage Insert(RequestMessage i_crm)
  71. {
  72. ResponseMessage rm = null;
  73. string sMsg = null;
  74. try
  75. {
  76. rm = SugarBase.ExecTran(db =>
  77. {
  78. do
  79. {
  80. var oEntity = _fetchEntity<OTB_SYS_Task>(i_crm);
  81. _setEntityBase(oEntity, i_crm);
  82. var iRel = db.Insertable(oEntity).ExecuteCommand();
  83. rm = new SuccessResponseMessage(null, i_crm);
  84. rm.DATA.Add(BLWording.REL, iRel);
  85. } while (false);
  86. return rm;
  87. });
  88. }
  89. catch (Exception ex)
  90. {
  91. sMsg = Util.GetLastExceptionMsg(ex);
  92. LogAndSendEmail(sMsg + @"Param:" + JsonToString(i_crm), ex, i_crm.ORIGID, i_crm.USERID, nameof(Task_UpdService), @"代辦管理", @"Add(代辦管理(新增))", @"", @"", @"");
  93. }
  94. finally
  95. {
  96. if (null != sMsg)
  97. {
  98. rm = new ErrorResponseMessage(sMsg, i_crm);
  99. }
  100. }
  101. return rm;
  102. }
  103. #endregion 代辦管理(新增)
  104. #region 代辦管理(修改)
  105. /// <summary>
  106. /// 代辦管理(修改)
  107. /// </summary>
  108. /// <param name="i_crm">todo: describe i_crm parameter on UpdImportCustomers</param>
  109. /// <returns></returns>
  110. public ResponseMessage Update(RequestMessage i_crm)
  111. {
  112. ResponseMessage rm = null;
  113. string sMsg = null;
  114. try
  115. {
  116. rm = SugarBase.ExecTran(db =>
  117. {
  118. do
  119. {
  120. var oNewEntity = _fetchEntity<OTB_SYS_Task>(i_crm);
  121. _setEntityBase(oNewEntity, i_crm);
  122. var iRel = db.Updateable(oNewEntity)
  123. .IgnoreColumns(x => new
  124. {
  125. x.CreateUser,
  126. x.CreateDate
  127. }).ExecuteCommand();
  128. var sReplyStatus = _fetchString(i_crm, @"ReplyStatus");
  129. var sReplyContent = _fetchString(i_crm, @"ReplyContent");
  130. if (!string.IsNullOrEmpty(sReplyContent))
  131. {
  132. var oTaskReply = new OTB_SYS_TaskReply
  133. {
  134. EventID = oNewEntity.EventID,
  135. ReplyDate = DateTime.Now,
  136. ReplyStatus = sReplyStatus,
  137. ReplyContent = sReplyContent
  138. };
  139. _setEntityBase(oTaskReply, i_crm);
  140. iRel += db.Insertable(oTaskReply).ExecuteCommand();
  141. }
  142. rm = new SuccessResponseMessage(null, i_crm);
  143. rm.DATA.Add(BLWording.REL, iRel);
  144. } while (false);
  145. return rm;
  146. });
  147. }
  148. catch (Exception ex)
  149. {
  150. sMsg = Util.GetLastExceptionMsg(ex);
  151. LogAndSendEmail(sMsg + @"Param:" + JsonToString(i_crm), ex, i_crm.ORIGID, i_crm.USERID, nameof(Task_UpdService), @"代辦管理", @"Update(代辦管理(修改))", @"", @"", @"");
  152. }
  153. finally
  154. {
  155. if (null != sMsg)
  156. {
  157. rm = new ErrorResponseMessage(sMsg, i_crm);
  158. }
  159. }
  160. return rm;
  161. }
  162. #endregion 代辦管理(修改)
  163. #region 代辦管理(刪除)
  164. /// <summary>
  165. /// 代辦管理(刪除)
  166. /// </summary>
  167. /// <param name="i_crm">todo: describe i_crm parameter on UpdImportCustomers</param>
  168. /// <returns></returns>
  169. public ResponseMessage Delete(RequestMessage i_crm)
  170. {
  171. ResponseMessage rm = null;
  172. string sMsg = null;
  173. try
  174. {
  175. rm = SugarBase.ExecTran(db =>
  176. {
  177. do
  178. {
  179. var sEventID = _fetchString(i_crm, @"EventID");
  180. var iRel = db.Deleteable<OTB_SYS_Task>().Where(x => x.OrgID == i_crm.ORIGID && x.EventID == sEventID).ExecuteCommand();
  181. iRel += db.Deleteable<OTB_SYS_TaskReply>().Where(x => x.EventID == sEventID).ExecuteCommand();
  182. i_crm.DATA.Add("FileID", sEventID);
  183. i_crm.DATA.Add("IDType", "parent");
  184. new CommonService().DelFile(i_crm);
  185. rm = new SuccessResponseMessage(null, i_crm);
  186. rm.DATA.Add(BLWording.REL, iRel);
  187. } while (false);
  188. return rm;
  189. });
  190. }
  191. catch (Exception ex)
  192. {
  193. sMsg = Util.GetLastExceptionMsg(ex);
  194. LogAndSendEmail(sMsg + @"Param:" + JsonToString(i_crm), ex, i_crm.ORIGID, i_crm.USERID, nameof(Task_UpdService), @"代辦管理", @"Delete(代辦管理(刪除))", @"", @"", @"");
  195. }
  196. finally
  197. {
  198. if (null != sMsg)
  199. {
  200. rm = new ErrorResponseMessage(sMsg, i_crm);
  201. }
  202. }
  203. return rm;
  204. }
  205. #endregion 代辦管理(刪除)
  206. }
  207. }