Config.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. using MathNet.Numerics.Statistics;
  2. using OASystem.Domain.Entities.Groups;
  3. using System.ComponentModel;
  4. namespace OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice
  5. {
  6. public enum QiyeWeChatEnum
  7. {
  8. /// <summary>
  9. /// 测试用
  10. /// </summary>
  11. [Description("groupstatuschat01")]
  12. TestChat = 0,
  13. /// <summary>
  14. /// 团组通知-公司客户群(国交部经理、主管、财务部),发送条件(1.确认出团)
  15. /// </summary>
  16. [Description("CompanyCRMChat01")]
  17. CompanyCRMChat = 1,
  18. /// <summary>
  19. /// 团组通知-市场客户群(市场部经理、主管;国交部经理、主管)发送条件(1.确认出团) 暂时不用
  20. /// </summary>
  21. [Description("MarketCRMChat01")]
  22. MarketCRMChat,
  23. /// <summary>
  24. /// 团组通知-财务群(财务部全员),发送条件(1.费用审核-通过;2,团组出访时间出发-7 天,结束-3 天,通知财务三人签合同、收尾款)
  25. /// </summary>
  26. [Description("CaiWuChat01")]
  27. CaiWuChat,
  28. /// <summary>
  29. /// 团组通知-国交管理群(国交部经理、主管),发送条件(1.费用审核-提交)
  30. /// </summary>
  31. [Description("GuoJiaoLeader01")]
  32. GuoJiaoLeaderChat,
  33. }
  34. public class MarkdownLib
  35. {
  36. /// <summary>
  37. /// 通知文本-确认出团
  38. /// </summary>
  39. /// <param name="info"></param>
  40. /// <returns></returns>
  41. public static string GroupStatus_Create(GroupStatus_CreateModel info)
  42. {
  43. string result = string.Format(@" `确认出团`
  44. >团组名称:<font color='info'>{0}</font>
  45. >团组类型:{1}
  46. >出访日期:<font color='comment'>{2}</font>
  47. >出访人数/天数:{3}人/{4}天
  48. >客户单位:{5}
  49. >客户名称:{6}
  50. [详细信息请前往OA系统查看](http://oa.pan-american-intl.com:4399/)
  51. ", info.TeamName, info.TeamDid_Text, info.VisitDateRange, info.VisitPNumber, info.VisitDays, info.ClientUnit, info.ClientName);
  52. return result;
  53. }
  54. /// <summary>
  55. /// 通知文本-费用申请
  56. /// </summary>
  57. /// <returns></returns>
  58. public static string GroupStatus_ApplyFee(GroupStatus_ApplyFeeModel info)
  59. {
  60. string result = string.Format(@" `团组费用录入`
  61. >团组:<font color='info'>{0}</font>
  62. <font color='comment'>- </font>{7}
  63. >费用模块:{1}
  64. >费用名称:<font color='warning'>{2}</font>
  65. >付款金额:<font color='warning'>{3}</font>
  66. >申请人:{4}
  67. >申请时间:<font color='comment'>{5}</font>
  68. <font color='comment'>- </font>当前团组费用待审核数量: {6}
  69. [详细信息请前往OA系统查看](http://oa.pan-american-intl.com:4399/) ", info.TeamName, info.PriceModule, info.PriceName, info.Price, info.CreateUser, info.CreateDt, info.QueueCount, info.TitleStr);
  70. return result;
  71. }
  72. /// <summary>
  73. /// 费用审核通知-团组费用-群聊
  74. /// </summary>
  75. /// <param name="info"></param>
  76. /// <returns></returns>
  77. public static string AuditResult_ApplyFee_Chat(AuditResult_ApplyFee_GroupModel info)
  78. {
  79. string result = string.Format(@" `{0}`
  80. <font color='{1}'>{2}</font>
  81. >审核时间:<font color='comment'>{8}</font>
  82. >团组:{3}
  83. >费用模块:{4}
  84. >费用名称:<font color='warning'>{5}</font>
  85. >付款金额:<font color='warning'>{6}</font>
  86. >申请人:{7}
  87. [详细信息请前往OA系统查看](http://oa.pan-american-intl.com:4399/) ", info.Title, info.ResultColor, info.Result, info.TeamName, info.PriceModule, info.PriceName, info.Price, info.CreateUser, info.GMAuditDate);
  88. return result;
  89. }
  90. /// <summary>
  91. /// 费用审核通知-团组费用-用户
  92. /// </summary>
  93. /// <param name="info"></param>
  94. /// <returns></returns>
  95. public static string AuditResult_ApplyFee_User(AuditResult_ApplyFee_GroupModel info)
  96. {
  97. string result = string.Format(@" `{0}`
  98. <font color='{1}'>{2}</font>
  99. >审核时间:<font color='comment'>{7}</font>
  100. >团组:{3}
  101. >费用模块:{4}
  102. >费用名称:<font color='warning'>{5}</font>
  103. >付款金额:<font color='warning'>{6}</font>
  104. [详细信息请前往OA系统查看](http://oa.pan-american-intl.com:4399/) ", info.Title, info.ResultColor, info.Result, info.TeamName, info.PriceModule, info.PriceName, info.Price, info.GMAuditDate);
  105. return result;
  106. }
  107. /// <summary>
  108. /// 费用支付通知-团组费用-用户
  109. /// </summary>
  110. /// <param name="info"></param>
  111. /// <returns></returns>
  112. public static string PayResult_Group_ToUser(PayResult_Group_ToUserModel info)
  113. {
  114. string result = string.Format(@" `团组费用支付`
  115. >团组:{0}
  116. >费用模块:{1}
  117. >费用名称:<font color='warning'>{2}</font>
  118. >付款金额:<font color='warning'>{3}</font>
  119. ><font color='info'>该笔费用已支付</font>
  120. >支付时间:<font color='comment'>{4}</font>
  121. [详细信息请前往OA系统查看](http://oa.pan-american-intl.com:4399/) ", info.TeamName, info.PriceModule, info.PriceName, info.Price, info.PayDt);
  122. return result;
  123. }
  124. /// <summary>
  125. /// 团组出发前一周提醒财务检查合同、尾款
  126. /// </summary>
  127. /// <returns></returns>
  128. public static string GroupRemindersToCaiwuChat(List<Grp_DelegationInfo> list_7day, List<Grp_DelegationInfo> list_3day)
  129. {
  130. string teamNames1 = "><font color='comment'>暂无</font>";
  131. string teamNames2 = "><font color='comment'>暂无</font>";
  132. if (list_7day.Count > 0)
  133. {
  134. teamNames1 = "";
  135. foreach (var item in list_7day)
  136. {
  137. string startDt = item.VisitStartDate.ToString("yyyy-MM-dd");
  138. teamNames1 += ">(" + startDt + ")" + item.TeamName + " \n\n";
  139. }
  140. //list_7day.ForEach(s => teamNames1 += ">" + s.TeamName + "\n\n");
  141. }
  142. if (list_3day.Count > 0)
  143. {
  144. teamNames2 = "";
  145. foreach (var item in list_3day)
  146. {
  147. string endDt = item.VisitEndDate.ToString("yyyy-MM-dd");
  148. teamNames2 += ">(" + endDt + ")" + item.TeamName + " \n\n";
  149. }
  150. //list_3day.ForEach(s => teamNames2 += ">" + s.TeamName + "\n\n");
  151. }
  152. string result = string.Format(@" `团组状态提醒`
  153. ><font color='warning'> - 下列团组将于7天内出发:</font>
  154. {0}
  155. ><font color='warning'> - 下列团组将于3天内结束:</font>
  156. {1}
  157. <font color='info'>请注意检查合同、尾款状态</font>
  158. [详细信息请前往OA系统查看](http://oa.pan-american-intl.com:4399/) ", teamNames1, teamNames2);
  159. return result;
  160. }
  161. /// <summary>
  162. /// 日付申请提交时推送财务群
  163. /// </summary>
  164. /// <returns></returns>
  165. public static string DailyPayReminders_Create_ToCaiwuChat(DailyPayReminders_Create_ToCaiwuChatModel info)
  166. {
  167. string result = string.Format(@" `日付申请录入`
  168. <font color='comment'>- </font>{6}
  169. >费用名称:<font color='warning'>{0}</font>
  170. >公司:<font color='comment'>{5}</font>
  171. >费用标识:<font color='comment'>{4}</font>
  172. >付款金额:<font color='warning'>{1}</font>
  173. >申请人:{2}
  174. >申请时间:<font color='comment'>{3}</font>
  175. [详细信息请前往OA系统查看](http://oa.pan-american-intl.com:4399/) ", info.PriceName, info.Price, info.CreateUser, info.CreateDt, info.FeeSign, info.Company, info.TitleStr);
  176. return result;
  177. }
  178. /// <summary>
  179. /// 日付申请审核结果推送给申请人
  180. /// </summary>
  181. /// <returns></returns>
  182. public static string DailyPayReminder_Audit_ToUser(DailyPayReminder_Audit_ToUserModel info)
  183. {
  184. string result = string.Format(@" `日付申请`
  185. <font color='{0}'>{1}</font>
  186. >费用名称:{2}
  187. >付款金额:<font color='warning'>{3}</font>
  188. >审核时间:<font color='comment'>{4}</font>
  189. ", info.ResultColor, info.Result, info.PriceName, info.Price, info.AuditDate);
  190. return result;
  191. }
  192. /// <summary>
  193. /// 日付申请审核结果推送给财务群(总经理审核通过)
  194. /// </summary>
  195. /// <returns></returns>
  196. public static string DailyPayReminder_Audit_ToCaiwuChat(DailyPayReminder_Audit_ToCaiwuChatModel info)
  197. {
  198. string result = string.Format(@" `日付申请`
  199. <font color='info'> - 新增一笔通过总经理审核的日付申请</font>
  200. >费用名称:{0}
  201. >付款金额:<font color='warning'>{1}</font>
  202. >申请人:{2}
  203. >审核时间:<font color='comment'>{3}</font>
  204. ", info.PriceName, info.Price, info.CreateUser, info.AuditDate);
  205. return result;
  206. }
  207. /// <summary>
  208. /// 日付申请已付款推送给申请人
  209. /// </summary>
  210. /// <returns></returns>
  211. public static string DailyPayReminder_Pay_ToUser(DailyPayReminder_Pay_ToUserModel info)
  212. {
  213. string result = string.Format(@" `日付申请`
  214. <font color='info'>你有一笔日付申请费用已付款</font>
  215. >费用名称:{0}
  216. >付款金额:<font color='warning'>{1}</font>
  217. >支付时间:<font color='comment'>{2}</font>
  218. ", info.PriceName, info.Price, info.PayDt);
  219. return result;
  220. }
  221. /// <summary>
  222. /// 成本通知发送给用户
  223. /// </summary>
  224. /// <returns></returns>
  225. public static string GroupShare_ToUser(GroupShare_ToUserModel info)
  226. {
  227. string result = string.Format(@" `成本通知`
  228. <font color='info'>团组成本费用已更新</font>
  229. >团组名称:{0}
  230. >更新时间:<font color='warning'>{1}</font>
  231. ><font color='comment'>请注意在费用录入页面中核对成本信息</font>
  232. ><font color='comment'>若无对应团组权限请联系国交部经理或信息部人员</font>
  233. ", info.TeamName, info.RefreshDate);
  234. return result;
  235. }
  236. }
  237. #region 实体类
  238. public class GroupShare_ToUserModel
  239. {
  240. public string TeamName { get; set; }
  241. public string RefreshDate { get; set; }
  242. }
  243. public class DailyPayReminder_Pay_ToUserModel
  244. {
  245. public string PriceName { get; set; }
  246. public string Price { get; set; }
  247. public string PayDt { get; set; }
  248. }
  249. public class DailyPayReminder_Audit_ToCaiwuChatModel
  250. {
  251. public string PriceName { get; set; }
  252. public string Price { get; set; }
  253. public string CreateUser { get; set; }
  254. public string AuditDate { get; set; }
  255. }
  256. public class DailyPayReminder_Audit_ToUserModel
  257. {
  258. public string ResultColor { get; set; } = "info"; //warning
  259. public string Result { get; set; } = "你有一笔日付申请已通过审核"; // 你有一笔日付申请未通过财务/总经理审核
  260. public string PriceName { get; set; }
  261. public string Price { get; set; }
  262. /// <summary>
  263. /// 财务或总经理审核时间
  264. /// </summary>
  265. public string AuditDate { get; set; }
  266. }
  267. public class DailyPayReminders_Create_ToCaiwuChatModel
  268. {
  269. public string PriceName { get; set; }
  270. public string Price { get; set; }
  271. public string CreateUser { get; set; }
  272. public string CreateDt { get; set; }
  273. public string FeeSign { get; set; }
  274. public string Company { get; set; }
  275. /// <summary>
  276. /// [更新]一项费用待审核
  277. /// </summary>
  278. public string TitleStr { get; set; } = "[新增]一项费用待审核";
  279. }
  280. public class PayResult_Group_ToUserModel
  281. {
  282. public string TeamName { get; set; }
  283. public string PriceModule { get; set; }
  284. public string PriceName { get; set; }
  285. public string Price { get; set; }
  286. public string PayDt { get; set; }
  287. }
  288. public class AuditResult_ApplyFee_GroupModel
  289. {
  290. public string Title { get; set; } = "团组费用审核结果";
  291. public string ResultColor { get; set; } = "info"; //info 或 warning
  292. public string Result { get; set; } = "总经理审核通过"; //总经理审核通过 或 总经理审核未通过
  293. public string TeamName { get; set; }
  294. public string PriceModule { get; set; }
  295. public string PriceName { get; set; }
  296. public string Price { get; set; }
  297. public string CreateUser { get; set; }
  298. public string GMAuditDate { get; set; }
  299. }
  300. public class GroupStatus_ApplyFeeModel
  301. {
  302. public string TeamName { get; set; }
  303. public string PriceModule { get; set; }
  304. public string PriceName { get; set; }
  305. public string Price { get; set; }
  306. public string CreateUser { get; set; }
  307. public string CreateDt { get; set; }
  308. public int QueueCount { get; set; }
  309. /// <summary>
  310. /// [更新]一项费用待审核
  311. /// </summary>
  312. public string TitleStr { get; set; } = "[新增]一项费用待审核";
  313. }
  314. public class GroupStatus_CreateModel
  315. {
  316. public string TeamName { get; set; }
  317. public string TeamDid_Text { get; set; }
  318. public string VisitDateRange { get; set; }
  319. public int VisitPNumber { get; set; }
  320. public int VisitDays { get; set; }
  321. public string ClientUnit { get; set; }
  322. public string ClientName { get; set; }
  323. }
  324. #endregion
  325. }