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.

251 lines
8.8 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.SYS
  7. {
  8. public class CurrencySetup_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. string sYear = _fetchString(i_crm, @"year");
  26. string sMonth = _fetchString(i_crm, @"month");
  27. string sCurrency = _fetchString(i_crm, @"currency");
  28. var oEntity = db.Queryable<OTB_SYS_Currency>()
  29. .Where((x) => x.year.ToString() == sYear
  30. && x.month.ToString() == sMonth
  31. && x.currency.ToString() == sCurrency
  32. && x.OrgID == i_crm.ORIGID)
  33. .Single();
  34. rm = new SuccessResponseMessage(null, i_crm);
  35. rm.DATA.Add(BLWording.REL, oEntity);
  36. } while (false);
  37. }
  38. catch (Exception ex)
  39. {
  40. sMsg = Util.GetLastExceptionMsg(ex);
  41. LogAndSendEmail(sMsg + "Params:" + JsonToString(i_crm), ex, i_crm.ORIGID, i_crm.USERID, nameof(CurrencySetup_UpdService), "", "QueryOne(幣別匯率(單筆查詢))", "", "", "");
  42. }
  43. finally
  44. {
  45. if (null != sMsg)
  46. {
  47. rm = new ErrorResponseMessage(sMsg, i_crm);
  48. }
  49. }
  50. return rm;
  51. }
  52. #endregion
  53. #region 幣別匯率(新增)
  54. /// <summary>
  55. /// 幣別匯率(新增)
  56. /// </summary>
  57. /// <param name="i_crm">todo: describe i_crm parameter on UpdImportCustomers</param>
  58. /// <returns></returns>
  59. public ResponseMessage Insert(RequestMessage i_crm)
  60. {
  61. ResponseMessage rm = null;
  62. string sMsg = null;
  63. try
  64. {
  65. rm = SugarBase.ExecTran(db =>
  66. {
  67. do
  68. {
  69. var oEntity = _fetchEntity<OTB_SYS_Currency>(i_crm);
  70. _setEntityBase(oEntity, i_crm);
  71. int iRel = db.Insertable(oEntity).ExecuteCommand();
  72. rm = new SuccessResponseMessage(null, i_crm);
  73. rm.DATA.Add(BLWording.REL, iRel);
  74. } while (false);
  75. return rm;
  76. });
  77. }
  78. catch (Exception ex)
  79. {
  80. sMsg = Util.GetLastExceptionMsg(ex);
  81. LogAndSendEmail(sMsg + @"Param:" + JsonToString(i_crm), ex, i_crm.ORIGID, i_crm.USERID, nameof(CurrencySetup_UpdService), @"幣別匯率", @"Add(幣別匯率(新增))", @"", @"", @"");
  82. }
  83. finally
  84. {
  85. if (null != sMsg)
  86. {
  87. rm = new ErrorResponseMessage(sMsg, i_crm);
  88. }
  89. }
  90. return rm;
  91. }
  92. #endregion
  93. #region 幣別匯率(修改)
  94. /// <summary>
  95. /// 幣別匯率(修改)
  96. /// </summary>
  97. /// <param name="i_crm">todo: describe i_crm parameter on UpdImportCustomers</param>
  98. /// <returns></returns>
  99. public ResponseMessage Update(RequestMessage i_crm)
  100. {
  101. ResponseMessage rm = null;
  102. string sMsg = null;
  103. try
  104. {
  105. rm = SugarBase.ExecTran(db =>
  106. {
  107. do
  108. {
  109. var oNewEntity = _fetchEntity<OTB_SYS_Currency>(i_crm);
  110. _setEntityBase(oNewEntity, i_crm);
  111. var iRel = db.Updateable(oNewEntity)
  112. .IgnoreColumns(x => new
  113. {
  114. x.CreateUser,
  115. x.CreateDate
  116. }).ExecuteCommand();
  117. rm = new SuccessResponseMessage(null, i_crm);
  118. rm.DATA.Add(BLWording.REL, iRel);
  119. } while (false);
  120. return rm;
  121. });
  122. }
  123. catch (Exception ex)
  124. {
  125. sMsg = Util.GetLastExceptionMsg(ex);
  126. LogAndSendEmail(sMsg + @"Param:" + JsonToString(i_crm), ex, i_crm.ORIGID, i_crm.USERID, nameof(CurrencySetup_UpdService), @"幣別匯率", @"Update(幣別匯率(修改))", @"", @"", @"");
  127. }
  128. finally
  129. {
  130. if (null != sMsg)
  131. {
  132. rm = new ErrorResponseMessage(sMsg, i_crm);
  133. }
  134. }
  135. return rm;
  136. }
  137. #endregion
  138. #region 幣別匯率(刪除)
  139. /// <summary>
  140. /// 幣別匯率(刪除)
  141. /// </summary>
  142. /// <param name="i_crm">todo: describe i_crm parameter on UpdImportCustomers</param>
  143. /// <returns></returns>
  144. public ResponseMessage Delete(RequestMessage i_crm)
  145. {
  146. ResponseMessage rm = null;
  147. string sMsg = null;
  148. try
  149. {
  150. rm = SugarBase.ExecTran(db =>
  151. {
  152. do
  153. {
  154. string sYear = _fetchString(i_crm, @"year");
  155. string sMonth = _fetchString(i_crm, @"month");
  156. string sCurrency = _fetchString(i_crm, @"currency");
  157. var iRel = db.Deleteable<OTB_SYS_Currency>()
  158. .Where(x => x.year.ToString() == sYear
  159. && x.month.ToString() == sMonth
  160. && x.currency.ToString() == sCurrency
  161. && x.OrgID == i_crm.ORIGID)
  162. .ExecuteCommand();
  163. rm = new SuccessResponseMessage(null, i_crm);
  164. rm.DATA.Add(BLWording.REL, iRel);
  165. } while (false);
  166. return rm;
  167. });
  168. }
  169. catch (Exception ex)
  170. {
  171. sMsg = Util.GetLastExceptionMsg(ex);
  172. LogAndSendEmail(sMsg + @"Param:" + JsonToString(i_crm), ex, i_crm.ORIGID, i_crm.USERID, nameof(CurrencySetup_UpdService), @"幣別匯率", @"Delete(幣別匯率(刪除))", @"", @"", @"");
  173. }
  174. finally
  175. {
  176. if (null != sMsg)
  177. {
  178. rm = new ErrorResponseMessage(sMsg, i_crm);
  179. }
  180. }
  181. return rm;
  182. }
  183. #endregion
  184. #region 幣別匯率(查詢筆數)
  185. /// <summary>
  186. /// 幣別匯率(查詢筆數)
  187. /// </summary>
  188. /// <param name="i_crm"></param>
  189. /// <returns></returns>
  190. public ResponseMessage QueryCout(RequestMessage i_crm)
  191. {
  192. ResponseMessage rm = null;
  193. string sMsg = null;
  194. var db = SugarBase.GetIntance();
  195. try
  196. {
  197. do
  198. {
  199. string sYear = _fetchString(i_crm, @"year");
  200. string sMonth = _fetchString(i_crm, @"month");
  201. string sCurrency = _fetchString(i_crm, @"currency");
  202. var iCout = db.Queryable<OTB_SYS_Currency>()
  203. .Where(x => x.year.ToString() == sYear
  204. && x.month.ToString() == sMonth
  205. && x.currency.ToString() == sCurrency
  206. && x.OrgID == i_crm.ORIGID)
  207. .Count();
  208. rm = new SuccessResponseMessage(null, i_crm);
  209. rm.DATA.Add(BLWording.REL, iCout);
  210. } while (false);
  211. }
  212. catch (Exception ex)
  213. {
  214. sMsg = Util.GetLastExceptionMsg(ex);
  215. LogAndSendEmail(sMsg + "Params:" + JsonToString(i_crm), ex, i_crm.ORIGID, i_crm.USERID, nameof(CurrencySetup_UpdService), "", "QueryCout(幣別匯率(查詢筆數))", "", "", "");
  216. }
  217. finally
  218. {
  219. if (null != sMsg)
  220. {
  221. rm = new ErrorResponseMessage(sMsg, i_crm);
  222. }
  223. }
  224. return rm;
  225. }
  226. #endregion
  227. }
  228. }