DelegationInfoRepository.cs 60 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459
  1. using AutoMapper;
  2. using Newtonsoft.Json;
  3. using NPOI.OpenXmlFormats.Wordprocessing;
  4. using NPOI.POIFS.Properties;
  5. using NPOI.SS.Formula.Functions;
  6. using OASystem.Domain;
  7. using OASystem.Domain.AesEncryption;
  8. using OASystem.Domain.Dtos;
  9. using OASystem.Domain.Dtos.Financial;
  10. using OASystem.Domain.Dtos.Groups;
  11. using OASystem.Domain.Dtos.UserDto;
  12. using OASystem.Domain.Entities.Customer;
  13. using OASystem.Domain.Entities.Groups;
  14. using OASystem.Domain.ViewModels.CRM;
  15. using OASystem.Domain.ViewModels.Financial;
  16. using OASystem.Domain.ViewModels.Groups;
  17. using OASystem.Infrastructure.Repositories.System;
  18. using Org.BouncyCastle.Asn1.Cms;
  19. using Org.BouncyCastle.Utilities.Collections;
  20. using Serilog;
  21. using SqlSugar;
  22. using System;
  23. using System.Collections.Generic;
  24. using System.Linq;
  25. using System.Text;
  26. using System.Threading.Tasks;
  27. using System.Xml.Linq;
  28. namespace OASystem.Infrastructure.Repositories.Groups
  29. {
  30. /// <summary>
  31. /// 接团信息
  32. /// </summary>
  33. public class DelegationInfoRepository : BaseRepository<Grp_DelegationInfo, DelegationInfoView>
  34. {
  35. private readonly SetDataRepository _setDataRepository;
  36. private readonly UsersRepository _usersRepository;
  37. private readonly TaskAssignmentRepository _taskAssignmentRep;
  38. private readonly IMapper _mapper;
  39. //private readonly TeamRateRepository _teamRateRep;
  40. //public readonly Logs _logs;
  41. public DelegationInfoRepository(SqlSugarClient sqlSugar, SetDataRepository setDataRepository, UsersRepository usersRepository,
  42. TaskAssignmentRepository taskAssignmentRep, IMapper mapper)
  43. : base(sqlSugar)
  44. {
  45. _setDataRepository = setDataRepository;
  46. _usersRepository = usersRepository;
  47. _taskAssignmentRep = taskAssignmentRep;
  48. _mapper = mapper;
  49. //_teamRateRep = teamRateRep;
  50. }
  51. #region 团组信息 团组详情共享Api
  52. /// <summary>
  53. /// 查询团组简略详情列表
  54. /// Page 根据Ctable And User 返回可操作的团
  55. /// </summary>
  56. /// <param name="dto"></param>
  57. /// <returns></returns>
  58. public async Task<JsonView> ListByCTableAndUserId(GroupListByCTableAndUserIdDto dto)
  59. {
  60. var view = new JsonView() { Code = StatusCodes.Status400BadRequest,Msg="操作失败!" };
  61. if (dto.CTable < 1)
  62. {
  63. view.Msg = MsgTips.UserId;
  64. return view;
  65. }
  66. if (dto.CTable < 1)
  67. {
  68. view.Msg = "请输入正确的CTable Id !76 酒店预订<br/>77 行程<br/>79 车/导游地接<br/>80 签证<br/>81 邀请/公务活动<br/>82 团组客户保险<br/>85 机票预订<br/>98 其他款项<br/>751 酒店早餐";
  69. return view;
  70. }
  71. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3)
  72. {
  73. //2025-02-17 更改团组列表排序功能 按照团出访时间排序(降序)
  74. string sql = string.Format(@"Select row_number() over(order by di.VisitStartDate Desc) as Row_Number,
  75. di.Id,di.TeamName,di.TourCode,di.ClientName,di.VisitCountry,di.VisitStartDate,
  76. di.VisitEndDate,di.VisitDays,di.VisitPNumber,di.CreateTime
  77. From Grp_GroupsTaskAssignment gta
  78. Inner Join Grp_DelegationInfo di On gta.DIId = di.Id
  79. Where gta.IsDel = 0 And di.IsDel = 0 And gta.IsEnable = 1
  80. And gta.CTId = {0} And gta.UId = {1}", dto.CTable, dto.UserId);
  81. if (!string.IsNullOrEmpty(dto.TeamName))
  82. {
  83. sql = string.Format($"{sql} And di.TeamName Like '%{dto.TeamName}%'");
  84. }
  85. //去重
  86. sql = $"{sql} GROUP BY di.Id,di.TeamName,di.TourCode,di.ClientName,di.VisitCountry,di.VisitStartDate,di.VisitEndDate,di.VisitDays,di.VisitPNumber,di.CreateTime";
  87. RefAsync<int> total = 0;//REF和OUT不支持异步,想要真的异步这是最优解
  88. var data = await _sqlSugar.SqlQueryable<GroupListByCTableAndUserIdView>(sql).ToPageListAsync(dto.PageIndex, dto.PageSize, total); //ToPageAsync
  89. foreach (var item in data)
  90. {
  91. item.VisitStartDate = item.VisitStartDate == "" ? "" : Convert.ToDateTime(item.VisitStartDate).ToString("yyyy-MM-dd");
  92. item.VisitEndDate = item.VisitEndDate == "" ? "" : Convert.ToDateTime(item.VisitEndDate).ToString("yyyy-MM-dd");
  93. item.VisitCountry = !string.IsNullOrEmpty(item.VisitCountry) && item.VisitCountry.Contains("|") ? item.VisitCountry.Replace("|", "、") : item.VisitCountry;
  94. }
  95. view.Code = StatusCodes.Status200OK;
  96. view.Msg = "操作成功!";
  97. view.Data = data;
  98. view.Count = total;
  99. return view;
  100. }
  101. else
  102. {
  103. view.Msg = "请输入正确的PortType 1 Web 2 Android 3 IOS ";
  104. return view;
  105. }
  106. }
  107. /// <summary>
  108. /// 团组信息 团组预览详情共享Api
  109. /// </summary>
  110. /// <param name="dto"></param>
  111. /// <returns></returns>
  112. public async Task<JsonView> PostShareGroupInfo(ShareGroupInfoDto dto)
  113. {
  114. var view = new JsonView() { Code = StatusCodes.Status400BadRequest, Msg = "操作失败!" };
  115. string sql = string.Format(@"Select Id,TeamName,TourCode,ClientName,VisitCountry,VisitStartDate,VisitEndDate,VisitDays,VisitPNumber
  116. From Grp_DelegationInfo Where Id = {0} And IsDel = 0", dto.Id);
  117. if (dto.PortType == 1) //Web
  118. {
  119. var _DelegationInfo = await _sqlSugar.SqlQueryable<Web_ShareGroupInfoView>(sql).FirstAsync();
  120. if (_DelegationInfo != null)
  121. {
  122. _DelegationInfo.VisitCountry = FormartTeamName(_DelegationInfo.VisitCountry);
  123. }
  124. else
  125. {
  126. view.Msg = "暂无该团组信息";
  127. return view;
  128. }
  129. view.Data = _DelegationInfo;
  130. }
  131. else if (dto.PortType == 2 || dto.PortType == 3) //IOS Or Android
  132. {
  133. var _DelegationInfo = await _sqlSugar.SqlQueryable<IOSOrAndroid_ShareGroupInfoView>(sql).FirstAsync();
  134. if (_DelegationInfo != null)
  135. {
  136. _DelegationInfo.VisitCountry = FormartTeamName(_DelegationInfo.VisitCountry);
  137. view.Data = _DelegationInfo;
  138. }
  139. else
  140. {
  141. view.Msg = "暂无该团组信息";
  142. return view;
  143. }
  144. view.Data = _DelegationInfo;
  145. }
  146. else
  147. {
  148. view.Msg = "请输入正确的端口号。1 Web 2 Android 3 IOS";
  149. return view;
  150. }
  151. view.Code = StatusCodes.Status200OK;
  152. view.Msg = "成功!";
  153. return view;
  154. }
  155. /// <summary>
  156. /// 团组信息List 团组预览详情共享Api
  157. /// </summary>
  158. /// <param name="dto"></param>
  159. /// <returns></returns>
  160. public async Task<Result> PostShareGroupInfos(int portType)
  161. {
  162. Result result = new Result() { Code = -2, Msg = "未知错误", Data = new List<object>() { } };
  163. string sql = string.Format(@"Select Id,TeamName,TourCode,ClientName,VisitCountry,VisitStartDate,VisitEndDate,VisitDays,VisitPNumber
  164. From Grp_DelegationInfo With(NoLock) Where IsDel = 0 Order By VisitStartDate Desc");
  165. var _DelegationInfo = await _sqlSugar.SqlQueryable<Web_ShareGroupInfoView>(sql).ToListAsync();
  166. if (_DelegationInfo.Count > 0)
  167. {
  168. foreach (var item in _DelegationInfo)
  169. {
  170. item.VisitCountry = FormartTeamName(item.VisitCountry);
  171. }
  172. }
  173. else { result.Msg = "暂无该团组信息"; return result; }
  174. if (portType == 1) //Web
  175. {
  176. result.Data = _DelegationInfo;
  177. }
  178. else if (portType == 2 || portType == 3) //IOS Or Android
  179. {
  180. result.Data = _DelegationInfo;
  181. }
  182. else { result.Msg = "请输入正确的端口号。1 Web 2 Android 3 IOS"; return result; }
  183. result.Code = 0;
  184. result.Msg = "成功!";
  185. return result;
  186. }
  187. #endregion
  188. /// <summary>
  189. /// 获取接团信息Info
  190. /// </summary>
  191. /// <param name="dto"></param>
  192. /// <returns></returns>
  193. public async Task<Result> PostGroupInfo(GroupInfoDto dto)
  194. {
  195. Result result = new Result() { Code = -2, Msg = "未知错误" };
  196. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //Web Or Android
  197. {
  198. string sql = string.Format(@"Select Id,SalesQuoteNo,TourCode,JietuanOperator,TeamLevSId,TeamDid,TeamName,ClientName,
  199. ClientUnit,VisitCountry,VisitDate,VisitDays,VisitPNumber,TontractTime,
  200. PayDay,PaymentMoney,VisitPurpose,SpecialNeeds,OtherNeeds,CGRWSPBMMC,CGRWSPWH,
  201. ZZSCBMMC,ZZSCSPWH,Remark,TellPhone,Officialneeds
  202. From Grp_DelegationInfo Where Id = {0} And IsDel = 0", dto.Id);
  203. var _DelegationInfo = await _sqlSugar.SqlQueryable<DelegationInfoWebView>(sql).FirstAsync();
  204. if (_DelegationInfo != null)
  205. {
  206. _DelegationInfo.TeamName = FormartTeamName(_DelegationInfo.TeamName);
  207. result.Code = 0;
  208. result.Msg = "成功!";
  209. result.Data = _DelegationInfo;
  210. }
  211. else result.Msg = "暂无该团组信息";
  212. }
  213. return result;
  214. }
  215. #region 团组
  216. /// <summary>
  217. /// 统一团组国家分割字符
  218. /// </summary>
  219. /// <param name="teamName"></param>
  220. /// <returns></returns>
  221. public string FormartTeamName(string? teamName)
  222. {
  223. string str = "";
  224. if (!string.IsNullOrEmpty(teamName))
  225. {
  226. str = teamName;
  227. List<string> searchreplaces = new List<string>() { "|", " ", "/", ",", "," };
  228. foreach (var item in searchreplaces)
  229. {
  230. if (str.Contains(item))
  231. {
  232. str = str.Replace(item, "、");
  233. break;
  234. }
  235. }
  236. }
  237. return str.Trim();
  238. }
  239. /// <summary>
  240. /// 团组国家分割字符
  241. /// 返回 国家数组
  242. /// </summary>
  243. /// <param name="teamName"></param>
  244. /// <returns></returns>
  245. public List<string> GroupSplitCountry (string visitCountry)
  246. {
  247. List<string> countrys = new List<string>();
  248. if (!string.IsNullOrEmpty(visitCountry))
  249. {
  250. if (visitCountry.Contains("、")) countrys = visitCountry.Split("、").ToList();
  251. else if (visitCountry.Contains("|")) countrys = visitCountry.Split("|").ToList();
  252. else countrys.Add(visitCountry);
  253. }
  254. return countrys;
  255. }
  256. /// <summary>
  257. /// 获取接团信息 Page List
  258. /// </summary>
  259. /// <param name="dto"></param>
  260. /// <returns></returns>
  261. public async Task<Result> GetGroupPageList(GroupCommissionDto dto)
  262. {
  263. Result result = new Result() { Code = -2, Msg = "未知错误" };
  264. ListViewBase<DelegationPageListView> groupsInfoPageList = new ListViewBase<DelegationPageListView>()
  265. {
  266. ReceiveDt = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  267. };
  268. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //web
  269. {
  270. int startIndex = (dto.PageIndex - 1) * dto.PageSize + 1;
  271. int endIndex = startIndex + dto.PageSize - 1;
  272. //int taskUserId = -1;
  273. string taskGroupIds = string.Empty;
  274. #region 处理用户团组操作权限
  275. if (dto.UserId != -1)
  276. {
  277. }
  278. #endregion
  279. string sql = string.Format(@"Select * From(Select row_number() over (order by gdi.Id Desc) as RowNumber,
  280. gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,ssd1.Id TeamLevId,
  281. ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,VisitDate,VisitDays,VisitPNumber,
  282. su.CnName JietuanOperator,IsSure
  283. From Grp_DelegationInfo gdi
  284. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  285. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  286. Left Join Sys_Users su On gdi.CreateUserId = su.Id
  287. Where gdi.IsDel = 0
  288. )temp Where RowNumber Between {0} and {1}", startIndex, endIndex);
  289. string sqlCount = string.Format(@"Select Count(1) as Count From Grp_DelegationInfo gdi
  290. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  291. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  292. Left Join Sys_Users su On gdi.CreateUserId = su.Id
  293. Where gdi.IsDel = 0 ");
  294. List<DelegationPageListView> _DeleInfoList = await _sqlSugar.SqlQueryable<DelegationPageListView>(sql).ToListAsync();
  295. DelegationPageCountView _DeleCount = await _sqlSugar.SqlQueryable<DelegationPageCountView>(sqlCount).FirstAsync();
  296. int count = _DeleCount.Count;
  297. groupsInfoPageList = new ListViewBase<DelegationPageListView>
  298. {
  299. CurrPageIndex = dto.PageIndex,
  300. CurrPageSize = dto.PageSize,
  301. DataCount = count,
  302. DataList = _DeleInfoList
  303. };
  304. result.Code = 0;
  305. result.Msg = "成功!";
  306. result.Data = groupsInfoPageList;
  307. }
  308. return result;
  309. }
  310. /// <summary>
  311. /// 获取接团信息List
  312. /// </summary>
  313. /// <param name="dto"></param>
  314. /// <returns></returns>
  315. public async Task<Result> GetGroupList(GroupListDto dto)
  316. {
  317. Result result = new Result() { Code = -2, Msg = "未知错误" };
  318. if (dto.PortType == 1) {
  319. string sql = string.Format(@"Select gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure
  320. ,gs.Id as GrpScheduleId
  321. From Grp_DelegationInfo gdi
  322. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  323. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  324. Left Join Sys_Users su On gdi.CreateUserId = su.Id
  325. left Join Grp_Schedule gs On gdi.Id = gs.DiId
  326. Where gdi.IsDel = 0
  327. Order By gdi.CreateTime Desc");
  328. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToListAsync();
  329. if (_DelegationList.Count > 0)
  330. {
  331. result.Code = 0;
  332. result.Msg = "成功!";
  333. result.Data = _DelegationList;
  334. }
  335. else
  336. {
  337. result.Msg = "暂无该团组信息";
  338. }
  339. }
  340. else if (dto.PortType == 2 || dto.PortType == 3) //web
  341. {
  342. string sql = string.Format(@"Select gdi.Id,SalesQuoteNo,TourCode,ssd.Id TeamTypeId, ssd.Name TeamType,ssd1.Id TeamLevId,ssd1.Name TeamLev,TeamName,ClientName,ClientUnit,VisitDate,VisitDays,VisitPNumber,su.CnName JietuanOperator,IsSure
  343. From Grp_DelegationInfo gdi
  344. Inner Join Sys_SetData ssd On gdi.TeamDid = ssd.Id
  345. Inner Join Sys_SetData ssd1 On gdi.TeamLevSId = ssd1.Id
  346. Left Join Sys_Users su On gdi.CreateUserId = su.Id
  347. Where gdi.IsDel = 0
  348. Order By gdi.CreateTime Desc");
  349. var _DelegationList = await _sqlSugar.SqlQueryable<DelegationListView>(sql).ToListAsync();
  350. if (_DelegationList.Count > 0)
  351. {
  352. result.Code = 0;
  353. result.Msg = "成功!";
  354. result.Data = _DelegationList;
  355. }
  356. else
  357. {
  358. result.Msg = "暂无该团组信息";
  359. }
  360. }
  361. return result;
  362. }
  363. /// <summary>
  364. /// 获取接团信息Info
  365. /// </summary>
  366. /// <param name="dto"></param>
  367. /// <returns></returns>
  368. public async Task<Result> GetGroupInfo(GroupInfoDto dto)
  369. {
  370. Result result = new Result() { Code = -2, Msg = "未知错误" };
  371. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //Web Or Android
  372. {
  373. string sql = string.Format(@"Select Id,CityId,SalesQuoteNo,TourCode,JietuanOperator,TeamLevSId,TeamDid,TeamName,ClientName,
  374. ClientUnit,VisitCountry,VisitDate,VisitDays,VisitPNumber,TontractTime,IsBid,
  375. PayDay,PaymentMoney,VisitPurpose,SpecialNeeds,OtherNeeds,CGRWSPBMMC,CGRWSPWH,
  376. ZZSCBMMC,ZZSCSPWH,Remark,TellPhone,WeChatNo,OpRoyaltyLv,OpRoyaltyRemark,Officialneeds
  377. From Grp_DelegationInfo Where Id = {0} And IsDel = 0", dto.Id);
  378. var _DelegationInfo = await _sqlSugar.SqlQueryable<DelegationInfoWebView>(sql).FirstAsync();
  379. if (_DelegationInfo != null)
  380. {
  381. _DelegationInfo.TeamName = FormartTeamName(_DelegationInfo.TeamName);
  382. _DelegationInfo.VisitCountry = FormartTeamName(_DelegationInfo.VisitCountry);
  383. //验证城市值 不存在则设置默认值
  384. var cityInfo = await CityInfoById(_DelegationInfo.CityId);
  385. if (cityInfo != null)
  386. {
  387. _DelegationInfo.CityName = cityInfo.Name;
  388. }
  389. else
  390. {
  391. _DelegationInfo.CityId = 3505;
  392. _DelegationInfo.CityName = "四川-成都";
  393. }
  394. //if (_DelegationInfo.TontractTime)
  395. //{
  396. //}
  397. result.Code = 0;
  398. result.Msg = "成功!";
  399. result.Data = _DelegationInfo;
  400. if (dto.PortType == 2)
  401. {
  402. var GroupProcessOperationDtoParam = new GroupProcessOperationDto();
  403. GroupProcessOperationDtoParam = _mapper.Map<DelegationInfoWebView, GroupProcessOperationDto>(_DelegationInfo);
  404. List<Crm_DeleClient> DeleClientArr = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToListAsync(); //客户信息
  405. List<Grp_TourClientList> _DeleClients = await _sqlSugar.Queryable<Grp_TourClientList>().Where(it => it.IsDel == 0 && it.DiId == dto.Id).ToListAsync(); // 接团客户名单
  406. List<Crm_CustomerCert> _CustomerCerts = await _sqlSugar.Queryable<Crm_CustomerCert>().Where(it => it.IsDel == 0 && it.SdId == 773).ToListAsync(); // 身份证类型证件信息
  407. List<Crm_CustomerCompany> CompanyArr = await _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToListAsync();
  408. var TourClientListInfoArr = new List<TourClientListProcessInfo>();
  409. var timeParam = new DateTime();
  410. foreach (var item in _DeleClients)
  411. {
  412. var param = new TourClientListProcessInfo();
  413. var clientInfo = DeleClientArr.FirstOrDefault(x => x.Id == item.ClientId);
  414. if (clientInfo == null) clientInfo = new Crm_DeleClient();
  415. var clientIDInfo = _CustomerCerts.FirstOrDefault(x=>x.DcId == item.ClientId); //身份证信息
  416. if (clientIDInfo == null) clientIDInfo = new Crm_CustomerCert();
  417. var Company = CompanyArr.FirstOrDefault(x => x.Id == clientInfo.CrmCompanyId);
  418. if(Company == null) Company = new Crm_CustomerCompany();
  419. param.IDCardNo = clientIDInfo.CertNo;
  420. param.Remark = item.Remark;
  421. param.BirthDay = clientInfo.BirthDay == null ? "" : DateTime.TryParse(Convert.ToDateTime( clientInfo.BirthDay).ToString("yyyy-MM-dd"), out timeParam) ? timeParam.ToString("yyyy-MM-dd") : "";
  422. param.FirstName = clientInfo.FirstName;
  423. param.LastName = clientInfo.LastName;
  424. param.CompanyFullName = Company.CompanyFullName;
  425. param.Job = clientInfo.Job;
  426. param.Sex = clientInfo.Sex;
  427. param.Phone = clientInfo.Phone;
  428. param.Pinyin = clientInfo.Pinyin;
  429. param.HotelSpecialNeeds = item.HotelSpecialNeeds;
  430. param.MealSpecialNeeds = item.MealSpecialNeeds;
  431. param.ShippingSpaceSpecialNeeds = item.ShippingSpaceSpecialNeeds;
  432. param.ShippingSpaceTypeId = item.ShippingSpaceTypeId;
  433. param.Id = clientInfo.Id;
  434. EncryptionProcessor.DecryptProperties(param);
  435. TourClientListInfoArr.Add(param);
  436. }
  437. GroupProcessOperationDtoParam.PortType = dto.PortType;
  438. GroupProcessOperationDtoParam.TourClientListInfos = TourClientListInfoArr;
  439. GroupProcessOperationDtoParam.VisitDate = DateTime.TryParse(GroupProcessOperationDtoParam.VisitDate, out timeParam) ? timeParam.ToString("yyyy-MM-dd") : "";
  440. GroupProcessOperationDtoParam.VisitDate = DateTime.TryParse(GroupProcessOperationDtoParam.VisitDate, out timeParam) ? timeParam.ToString("yyyy-MM-dd") : "";
  441. GroupProcessOperationDtoParam.TontractTime = DateTime.TryParse(GroupProcessOperationDtoParam.TontractTime, out timeParam) ? timeParam.ToString("yyyy-MM-dd") : "";
  442. result.Data = GroupProcessOperationDtoParam;
  443. }
  444. else if (dto.PortType == 3)
  445. {
  446. var GroupProcessOperationDtoParam = new GroupProcessOperationDto();
  447. GroupProcessOperationDtoParam = _mapper.Map<DelegationInfoWebView, GroupProcessOperationDto>(_DelegationInfo);
  448. List<Crm_DeleClient> DeleClientArr = await _sqlSugar.Queryable<Crm_DeleClient>().Where(it => it.IsDel == 0).ToListAsync(); //客户信息
  449. List<Grp_TourClientList> _DeleClients = await _sqlSugar.Queryable<Grp_TourClientList>().Where(it => it.IsDel == 0 && it.DiId == dto.Id).ToListAsync(); // 接团客户名单
  450. List<Crm_CustomerCert> _CustomerCerts = await _sqlSugar.Queryable<Crm_CustomerCert>().Where(it => it.IsDel == 0 && it.SdId == 773).ToListAsync(); // 身份证类型证件信息
  451. List<Crm_CustomerCompany> CompanyArr = await _sqlSugar.Queryable<Crm_CustomerCompany>().Where(it => it.IsDel == 0).ToListAsync();
  452. var TourClientListInfoArr = new List<TourClientListProcessInfo>();
  453. var timeParam = new DateTime();
  454. foreach (var item in _DeleClients)
  455. {
  456. var param = new TourClientListProcessInfo();
  457. var clientInfo = DeleClientArr.FirstOrDefault(x => x.Id == item.ClientId);
  458. if (clientInfo == null) clientInfo = new Crm_DeleClient();
  459. var clientIDInfo = _CustomerCerts.FirstOrDefault(x => x.DcId == item.ClientId); //身份证信息
  460. if (clientIDInfo == null) clientIDInfo = new Crm_CustomerCert();
  461. var Company = CompanyArr.FirstOrDefault(x => x.Id == clientInfo.CrmCompanyId);
  462. if (Company == null) Company = new Crm_CustomerCompany();
  463. param.IDCardNo = clientIDInfo.CertNo;
  464. param.Remark = item.Remark;
  465. param.BirthDay = clientInfo.BirthDay == null ? "" : DateTime.TryParse(Convert.ToDateTime(clientInfo.BirthDay).ToString("yyyy-MM-dd"), out timeParam) ? timeParam.ToString("yyyy-MM-dd") : "";
  466. param.FirstName = clientInfo.FirstName;
  467. param.LastName = clientInfo.LastName;
  468. param.CompanyFullName = Company.CompanyFullName;
  469. param.Job = clientInfo.Job;
  470. param.Sex = clientInfo.Sex;
  471. param.Phone = clientInfo.Phone;
  472. param.Pinyin = clientInfo.Pinyin;
  473. param.HotelSpecialNeeds = item.HotelSpecialNeeds;
  474. param.MealSpecialNeeds = item.MealSpecialNeeds;
  475. param.ShippingSpaceSpecialNeeds = item.ShippingSpaceSpecialNeeds;
  476. param.ShippingSpaceTypeId = item.ShippingSpaceTypeId;
  477. param.Id = item.Id;
  478. EncryptionProcessor.DecryptProperties(param);
  479. TourClientListInfoArr.Add(param);
  480. }
  481. GroupProcessOperationDtoParam.PortType = dto.PortType;
  482. GroupProcessOperationDtoParam.TourClientListInfos = TourClientListInfoArr;
  483. GroupProcessOperationDtoParam.VisitDate = DateTime.TryParse(GroupProcessOperationDtoParam.VisitDate, out timeParam) ? timeParam.ToString("yyyy-MM-dd") : "";
  484. GroupProcessOperationDtoParam.TontractTime = DateTime.TryParse(GroupProcessOperationDtoParam.TontractTime, out timeParam) ? timeParam.ToString("yyyy-MM-dd") : "";
  485. result.Data = GroupProcessOperationDtoParam;
  486. }
  487. }
  488. else result.Msg = "暂无该团组信息";
  489. }
  490. return result;
  491. }
  492. /// <summary>
  493. /// 获取接团信息 编辑
  494. /// 城市基础 数据源
  495. /// </summary>
  496. /// <param name="dto"></param>
  497. /// <returns></returns>
  498. public async Task<List<CityTree>> ProvinceCityBasicSource()
  499. {
  500. var data = await _sqlSugar.Queryable<CityTree>().AS("Sys_Cities")
  501. .Where(x => x.IsDel == 0 && x.CountriesId == 44)
  502. .ToTreeAsync(it => it.Child, it => it.ParentId, 0);
  503. if (data.Any())
  504. {
  505. //移动指定数据在最前面
  506. data = MoveElementToFront(data, "云南");
  507. data = MoveElementToFront(data, "贵州");
  508. data = MoveElementToFront(data, "重庆");
  509. data = MoveElementToFront(data, "四川");
  510. }
  511. return data;
  512. }
  513. /// <summary>
  514. /// 获取接团信息 编辑
  515. /// 省份基础 数据源
  516. /// </summary>
  517. /// <param name="dto"></param>
  518. /// <returns></returns>
  519. public async Task<GroupCityBasicSourceView[]> ProvinceBasicSource()
  520. {
  521. var list = Array.Empty<GroupCityBasicSourceView>();
  522. var data = await ProvinceCityBasicSource();
  523. if (data.Any())
  524. {
  525. //移动指定数据在最前面
  526. data = MoveElementToFront(data, "北京");
  527. data = MoveElementToFront(data, "云南");
  528. data = MoveElementToFront(data, "贵州");
  529. data = MoveElementToFront(data, "重庆");
  530. data = MoveElementToFront(data, "四川");
  531. list = data.Select(x => new GroupCityBasicSourceView() { Id = x.Id, Name = x.Name_CN }).ToArray();
  532. }
  533. return list;
  534. }
  535. /// <summary>
  536. /// 获取接团信息 编辑
  537. /// 城市基础 数据源
  538. /// </summary>
  539. /// <param name="dto"></param>
  540. /// <returns></returns>
  541. public async Task<GroupCityBasicSourceView[]> CityBasicSource()
  542. {
  543. var list = new List<GroupCityBasicSourceView>();
  544. var data = await ProvinceCityBasicSource();
  545. if (data.Any())
  546. {
  547. //移动指定数据在最前面
  548. data = MoveElementToFront(data, "云南");
  549. data = MoveElementToFront(data, "贵州");
  550. data = MoveElementToFront(data, "重庆");
  551. data = MoveElementToFront(data, "四川");
  552. foreach (var province in data)
  553. {
  554. foreach (var city in province.Child)
  555. {
  556. list.Add(new GroupCityBasicSourceView() {
  557. Id = city.Id,
  558. Name = $"{province.Name_CN}-{city.Name_CN}"
  559. });
  560. }
  561. }
  562. //四川成都放在最前面
  563. var cdInfo = list.FirstOrDefault(x => x.Name.Equals("四川-成都"));
  564. if (cdInfo != null)
  565. {
  566. list.Remove(cdInfo);
  567. list.Insert(0, cdInfo);
  568. }
  569. }
  570. return list.ToArray();
  571. }
  572. /// <summary>
  573. /// 获取接团信息 编辑
  574. /// 基础 数据源
  575. /// </summary>
  576. /// <param name="dto"></param>
  577. /// <returns></returns>
  578. public async Task<GroupCityBasicSourceView> CityInfoById(int id)
  579. {
  580. var list = await CityBasicSource();
  581. var info = list.FirstOrDefault(x => x.Id == id);
  582. return info;
  583. }
  584. private List<CityTree> MoveElementToFront(List<CityTree> list, string elementName)
  585. {
  586. var element = list.FirstOrDefault(x => x.Name_CN == elementName);
  587. if (element != null)
  588. {
  589. list.Remove(element);
  590. list.Insert(0, element);
  591. }
  592. return list;
  593. }
  594. /// <summary>
  595. /// 获取接团信息 编辑
  596. /// 基础 数据源
  597. /// </summary>
  598. /// <param name="dto"></param>
  599. /// <returns></returns>
  600. public async Task<Result> GroupEditBasicSource(GroupListDto dto)
  601. {
  602. Result result = new Result() { Code = -2, Msg = "未知错误" };
  603. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //web
  604. {
  605. dynamic? teamTypeData1 = null;
  606. string teamTypeSql = string.Format(@"Select Id,Name From Sys_SetData Where STid = {0} And IsDel = {1}", 10, 0);
  607. var teamTypeData = await _sqlSugar.SqlQueryable<SetDataInfoView>(teamTypeSql).ToListAsync(); ; //团组分类 10
  608. if (teamTypeData.Any())
  609. {
  610. teamTypeData1 = teamTypeData;
  611. if (teamTypeData.Any(x => x.Name.Equals("前期沟通")))
  612. {
  613. var info = teamTypeData.Find(x => x.Name.Equals("前期沟通"));
  614. if (info != null)
  615. {
  616. teamTypeData.Remove(info);
  617. teamTypeData.Insert(2, info);
  618. }
  619. }
  620. }
  621. dynamic? teamLevData1 = null;
  622. string teamLevSql = string.Format(@"Select Id,Name From Sys_SetData Where STid = {0} And IsDel = {1}", 56, 0);
  623. var teamLevData = await _sqlSugar.SqlQueryable<SetDataInfoView>(teamLevSql).ToListAsync(); ; //团组等级 56
  624. if (teamLevData.Any())
  625. {
  626. teamLevData1 = teamLevData;
  627. }
  628. dynamic? userData1 = null;
  629. string userSql = string.Format(@"Select Id,CnName From Sys_Users Where IsDel = {0}", 0);
  630. var userData = await _sqlSugar.SqlQueryable<UserNameView>(userSql).ToListAsync();
  631. if (userData.Any())
  632. {
  633. userData1 = userData;
  634. }
  635. //客户单位数据源 来源市场客户资料
  636. dynamic? clientData1 = null;
  637. string clientSql = $@"Select Client,Contact,Telephone,WeChat From Crm_NewClientData Where IsDel = 0";
  638. var clientData = await _sqlSugar.SqlQueryable<Crm_NewClientData>(clientSql).ToListAsync();
  639. if (clientData.Any())
  640. {
  641. clientData1 = clientData.Select(it => new
  642. {
  643. Client = AesEncryptionHelper.Decrypt(it.Client),
  644. Contact = AesEncryptionHelper.Decrypt(it.Contact),
  645. Telephone = AesEncryptionHelper.Decrypt(it.Telephone),
  646. Wechat = AesEncryptionHelper.Decrypt(it.Wechat)
  647. }).ToList();
  648. }
  649. var userDepDatas = new List<TextView>();
  650. userDepDatas.Insert(0, new TextView() { Text = "全部", Value = "全部" });
  651. userDepDatas.Insert(1, new TextView() { Text = "国交部", Value = "国交部" });
  652. userDepDatas.Insert(2, new TextView() { Text = "市场部", Value = "市场部" });
  653. userDepDatas.Insert(3, new TextView() { Text = "策划部", Value = "策划部" });
  654. var rankDatas = await _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0 && x.STid == 56).Select(x => new TextView { Value = x.Id.ToString(), Text = x.Name }).ToListAsync();
  655. rankDatas.Insert(0, new TextView { Value = "0", Text = "全部" });
  656. result.Code = 0;
  657. result.Msg = "成功!";
  658. result.Data = new
  659. {
  660. teamTypeData = teamTypeData1,
  661. teamLevData = teamLevData1,
  662. userData = userData1,
  663. clientData = clientData1,
  664. depData = userDepDatas,
  665. rankData = rankDatas,
  666. cityData = await CityBasicSource()
  667. };
  668. }
  669. return result;
  670. }
  671. /// <summary>
  672. /// 团组信息操作
  673. /// </summary>
  674. /// <param name="dto"></param>
  675. /// <returns></returns>
  676. public async Task<Result>GroupOperation(GroupOperationDto dto)
  677. {
  678. Result result = new Result() { Code = -2, Msg = "未知错误" };
  679. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //web
  680. {
  681. #region 添加出访起止时间
  682. var startTime = new DateTime();
  683. var endTime = new DateTime();
  684. if (DateTime.TryParse(dto.VisitDate, out startTime))
  685. {
  686. endTime = startTime.AddDays(dto.VisitDays - 1);//含当天
  687. }
  688. #endregion
  689. if (dto.Status == 1) //添加
  690. {
  691. string selectSql = string.Format(@"Select * From Grp_DelegationInfo
  692. Where IsDel = 0
  693. And TeamName = '{0}'
  694. And ClientName = '{1}'
  695. And ClientUnit ='{2}'
  696. And VisitDate ='{3}'",dto.TeamName, dto.ClientName, dto.ClientUnit, dto.VisitDate);
  697. var selectGroupInfo = _sqlSugar.SqlQueryable<Grp_DelegationInfo>(selectSql).First();
  698. if (selectGroupInfo != null)
  699. {
  700. result.Msg = "数据已存在,请勿重复添加!";
  701. return result;
  702. }
  703. //string teamCodeSql = string.Format("Select SalesQuoteNo From Grp_DelegationInfo");
  704. //var teamCodeItem = await _sqlSugar.SqlQueryable<TeamCodeView>(teamCodeSql).ToListAsync();
  705. //string SalesQuoteNo = "";
  706. //while (true)
  707. //{
  708. // SalesQuoteNo = Tools.CommonFun.GetRandomStr(6);
  709. // if (!teamCodeItem.Equals(SalesQuoteNo))
  710. // {
  711. // break;
  712. // }
  713. //}
  714. string countrys = string.Empty;
  715. string countryReq = dto.VisitCountry;
  716. if (!string.IsNullOrEmpty(countryReq))
  717. {
  718. if (countryReq.Contains(",")) countrys = countryReq.Replace(',','|');
  719. else if (countryReq.Contains(",")) countrys = countryReq.Replace(',', '|');
  720. else if (countryReq.Contains(" ")) countrys = countryReq.Replace(' ', '|');
  721. else if (countryReq.Contains("、")) countrys = countryReq.Replace('、', '|');
  722. else if (countryReq.Contains(".")) countrys = countryReq.Replace('.', '|');
  723. else countrys = countryReq;
  724. }
  725. //建团时 默认出团 设置 团组code
  726. string teamCode="";
  727. string teamCodeSql = string.Format("Select TourCode From Grp_DelegationInfo");
  728. var teamCodeItem = await _sqlSugar.SqlQueryable<TeamCodeView>(teamCodeSql).ToListAsync();
  729. while (true)
  730. {
  731. teamCode = Tools.CommonFun.GetRandomAllStr(6);
  732. if (!teamCodeItem.Equals(teamCode))
  733. {
  734. break;
  735. }
  736. }
  737. Grp_DelegationInfo delegationInfo = new Grp_DelegationInfo()
  738. {
  739. CityId = dto.CityId,
  740. SalesQuoteNo = dto.SalesQuoteNo,
  741. TeamLevSId = dto.TeamLevSId,
  742. ClientName = dto.ClientName,
  743. ClientUnit = dto.ClientUnit,
  744. TeamName = dto.TeamName,
  745. TeamDid = dto.TeamDid,
  746. VisitDate = Convert.ToDateTime(dto.VisitDate),
  747. VisitCountry = countrys,
  748. VisitPurpose = dto.VisitPurpose,
  749. VisitDays = dto.VisitDays,
  750. VisitPNumber = dto.VisitPNumber,
  751. SpecialNeeds = dto.SpecialNeeds,
  752. OtherNeeds = dto.OtherNeeds,
  753. Remark = dto.Remark,
  754. JietuanOperator = dto.JietuanOperator,
  755. TellPhone = dto.TellPhone,
  756. WeChatNo = dto.WeChatNo,
  757. CGRWSPBMMC = dto.CGRWSPBMMC,
  758. CGRWSPWH = dto.CGRWSPWH,
  759. ZZSCBMMC = dto.ZZSCBMMC,
  760. ZZSCSPWH = dto.ZZSCSPWH,
  761. TontractTime = string.IsNullOrEmpty(dto.TontractTime) ? null : Convert.ToDateTime(dto.TontractTime),
  762. IsBid = dto.IsBid,
  763. PaymentMoney = dto.PaymentMoney,
  764. PayDay = dto.PayDay,
  765. TourCode = teamCode,
  766. GroupsOperator = dto.UserId,
  767. GroupsTime = DateTime.Now,
  768. SalesDate = DateTime.Now,
  769. IsState = 0, //默认团组未完成 0
  770. JietuanTime = DateTime.Now,
  771. IsDel = 0,
  772. BudgetCost = 0.00M,
  773. HotelComplain = 0,
  774. OPComplain = 0,
  775. OAComplain = 0,
  776. AirComplain = 0,
  777. VisaComplain = 0,
  778. CreateUserId = dto.UserId,
  779. CreateTime = DateTime.Now,
  780. DeleteUserId = null,
  781. DeleteTime = new DateTime(1990, 1, 1).ToString("yyyy-MM-dd HH:mm:ss"),
  782. OpRoyaltyLv = dto.OpRoyaltyLv,
  783. OpRoyaltyRemark=dto.opRoyaltyRemark,
  784. Officialneeds = dto.Officialneeds,
  785. VisitStartDate = startTime,
  786. VisitEndDate = endTime,
  787. };
  788. var addId = _sqlSugar.Insertable(delegationInfo).ExecuteReturnIdentity();
  789. if (addId > 0)
  790. {
  791. result.Code = 0;
  792. result.Msg = "添加成功!";
  793. result.Data = addId;
  794. }
  795. else
  796. {
  797. result.Msg = "添加失败!";
  798. }
  799. }
  800. else if (dto.Status == 2) //修改
  801. {
  802. var updateStatus = await UpdateAsync(a => a.Id == dto.Id, a => new Grp_DelegationInfo
  803. {
  804. CityId = dto.CityId,
  805. SalesQuoteNo = dto.SalesQuoteNo,
  806. TeamLevSId = dto.TeamLevSId,
  807. ClientName = dto.ClientName,
  808. ClientUnit = dto.ClientUnit,
  809. TeamName = dto.TeamName,
  810. TeamDid = dto.TeamDid,
  811. VisitDate = Convert.ToDateTime(dto.VisitDate),
  812. VisitCountry = dto.VisitCountry,
  813. VisitPurpose = dto.VisitPurpose,
  814. VisitDays = dto.VisitDays,
  815. VisitPNumber = dto.VisitPNumber,
  816. SpecialNeeds = dto.SpecialNeeds,
  817. OtherNeeds = dto.OtherNeeds,
  818. Remark = dto.Remark,
  819. JietuanOperator = dto.JietuanOperator,
  820. TellPhone = dto.TellPhone,
  821. WeChatNo = dto.WeChatNo,
  822. CGRWSPBMMC = dto.CGRWSPBMMC,
  823. CGRWSPWH = dto.CGRWSPWH,
  824. ZZSCBMMC = dto.ZZSCBMMC,
  825. ZZSCSPWH = dto.ZZSCSPWH,
  826. TontractTime = string.IsNullOrEmpty(dto.TontractTime) ? null : Convert.ToDateTime(dto.TontractTime),
  827. IsBid = dto.IsBid,
  828. PaymentMoney = dto.PaymentMoney,
  829. PayDay = dto.PayDay,
  830. OpRoyaltyLv = dto.OpRoyaltyLv,
  831. OpRoyaltyRemark = dto.opRoyaltyRemark,
  832. Officialneeds = dto.Officialneeds,
  833. VisitStartDate = startTime,
  834. VisitEndDate = endTime,
  835. });
  836. if (updateStatus)
  837. {
  838. result.Code = 0;
  839. result.Msg = "修改成功!";
  840. }
  841. else
  842. {
  843. result.Msg = "修改失败!";
  844. }
  845. }
  846. else if (dto.Status == 3) //删除
  847. {
  848. var deleteStatus = await UpdateAsync(a => a.Id == dto.Id, a => new Grp_DelegationInfo
  849. {
  850. DeleteUserId = dto.UserId,
  851. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  852. IsDel = 1
  853. });
  854. if (deleteStatus)
  855. {
  856. result.Code = 0;
  857. result.Msg = "删除成功!";
  858. }
  859. else
  860. {
  861. result.Msg = "删除失败!";
  862. }
  863. }
  864. }
  865. return result;
  866. }
  867. /// <summary>
  868. /// 团组信息操作 - 删除
  869. /// </summary>
  870. /// <param name="dto"></param>
  871. /// <returns></returns>
  872. public async Task<Result> GroupDel(GroupDelDto dto)
  873. {
  874. Result result = new Result() { Code = -2, Msg = "未知错误" };
  875. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //web
  876. {
  877. var deleteStatus = await UpdateAsync(a => a.Id == dto.Id, a => new Grp_DelegationInfo
  878. {
  879. DeleteUserId = dto.UserId,
  880. DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
  881. IsDel = 1
  882. });
  883. if (deleteStatus)
  884. {
  885. result.Code = 0;
  886. result.Msg = "删除成功!";
  887. }
  888. else
  889. {
  890. result.Msg = "删除失败!";
  891. }
  892. }
  893. return result;
  894. }
  895. /// <summary>
  896. /// 获取销售报价号
  897. /// </summary>
  898. /// <returns></returns>
  899. public async Task<Result> GetGroupSalesQuoteNo()
  900. {
  901. Result result = new Result() { Code = -2, Msg = "未知错误" };
  902. string teamCodeSql = string.Format("Select SalesQuoteNo From Grp_DelegationInfo");
  903. var teamCodeItem = await _sqlSugar.SqlQueryable<SalesQuoteNoView>(teamCodeSql).ToListAsync();
  904. string teamCode = "";
  905. while (true)
  906. {
  907. teamCode = Tools.CommonFun.GetRandomAllStr(6);
  908. if (!teamCodeItem.Equals(teamCode))
  909. {
  910. break;
  911. }
  912. }
  913. result.Code = 0;
  914. result.Msg = "成功!";
  915. result.Data = teamCode;
  916. return result;
  917. }
  918. /// <summary>
  919. /// 团组删除
  920. /// </summary>
  921. /// <returns></returns>
  922. public async Task<Result> GroupDeleteById()
  923. {
  924. Result result = new Result() { Code = -2, Msg = "未知错误" };
  925. string teamCodeSql = string.Format("Select TourCode From Grp_DelegationInfo");
  926. var teamCodeItem = await _sqlSugar.SqlQueryable<TeamCodeView>(teamCodeSql).ToListAsync();
  927. string teamCode = "";
  928. while (true)
  929. {
  930. teamCode = Tools.CommonFun.GetRandomAllStr(6);
  931. if (!teamCodeItem.Equals(teamCode))
  932. {
  933. break;
  934. }
  935. }
  936. result.Code = 0;
  937. result.Msg = "成功!";
  938. result.Data = teamCode;
  939. return result;
  940. }
  941. /// <summary>
  942. /// 团组确认出团
  943. /// </summary>
  944. /// <returns></returns>
  945. public async Task<Result> ConfirmationGroup(ConfirmationGroupDto dto)
  946. {
  947. Result result = new Result() { Code = -2, Msg = "未知错误" };
  948. string teamCode = "";
  949. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //web
  950. {
  951. string teamCodeSql = string.Format("Select TourCode From Grp_DelegationInfo");
  952. var teamCodeItem = await _sqlSugar.SqlQueryable<TeamCodeView>(teamCodeSql).ToListAsync();
  953. while (true)
  954. {
  955. teamCode = Tools.CommonFun.GetRandomAllStr(6);
  956. if (!teamCodeItem.Equals(teamCode))
  957. {
  958. break;
  959. }
  960. }
  961. var deleteStatus = await UpdateAsync(a => a.Id == dto.GroupId, a => new Grp_DelegationInfo
  962. {
  963. TourCode = teamCode,
  964. GroupsOperator = dto.GroupsOperator,
  965. GroupsTime = DateTime.Now
  966. });
  967. if (deleteStatus)
  968. {
  969. result.Code = 0;
  970. result.Msg = "确认出团设置成功!";
  971. }
  972. else
  973. {
  974. result.Msg = "确认出团设置失败!";
  975. }
  976. }
  977. result.Code = 0;
  978. result.Msg = "成功!";
  979. result.Data = teamCode;
  980. return result;
  981. }
  982. /// <summary>
  983. /// 获取接团名称List
  984. /// </summary>
  985. /// <param name="dto"></param>
  986. /// <returns></returns>
  987. public async Task<JsonView> GetGroupNameList(GroupNameDto dto)
  988. {
  989. var view = new JsonView() { Code = StatusCodes.Status400BadRequest, Msg = "操作失败!" };
  990. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //web
  991. {
  992. //2025-02-17 更改团组列表排序功能 按照团出访时间排序(降序)
  993. string sql = string.Format(@"Select Id,TeamName GroupName From Grp_DelegationInfo
  994. Where TeamName != '' And IsDel = 0
  995. Order By VisitStartDate Desc");
  996. var _groupNameList = await _sqlSugar.SqlQueryable<GroupNameView>(sql).ToListAsync();
  997. if (_groupNameList.Any())
  998. {
  999. for (int i = 0; i < _groupNameList.Count; i++)
  1000. {
  1001. var info = _groupNameList[i];
  1002. _groupNameList[i].GroupName = FormartTeamName(info.GroupName);
  1003. }
  1004. _groupNameList.Insert(0, new GroupNameView() { Id = 0, GroupName = "未选择" });
  1005. view.Code = StatusCodes.Status200OK;
  1006. view.Msg = "成功!";
  1007. view.Data = _groupNameList;
  1008. }
  1009. else
  1010. {
  1011. view.Msg = "暂无团组信息";
  1012. }
  1013. }
  1014. return view;
  1015. }
  1016. //PostGroupNameScreen
  1017. /// <summary>
  1018. /// 获取接团名称 Page List
  1019. /// </summary>
  1020. /// <param name="dto"></param>
  1021. /// <returns></returns>
  1022. public async Task<JsonView> GetGroupNameList(int portType,int pageIndex,int pageSize, string groupName,int userId)
  1023. {
  1024. var _res = new JsonView() { Code = 400 , Msg = MsgTips.Fail };
  1025. string sql = "";
  1026. string sqlWhere = "";
  1027. string mobileSqlWhere = "";
  1028. if (!string.IsNullOrEmpty(groupName))
  1029. {
  1030. sqlWhere += string.Format($@"And TeamName Like '%{groupName}%'");
  1031. mobileSqlWhere += string.Format($@"GroupName Like '%{groupName}%'");
  1032. }
  1033. List<int> userIds = new List<int>() { -1, 21 };
  1034. if (!userIds.Contains(userId))
  1035. {
  1036. sqlWhere += string.Format($@"And JietuanOperator = {userId}");
  1037. }
  1038. sql = string.Format($@"Select ROW_NUMBER()Over(Order By Id Desc) as RowNumber,Id,TeamName GroupName From Grp_DelegationInfo
  1039. Where IsDel = 0 {sqlWhere}");
  1040. if (portType == 1) //web
  1041. { }
  1042. else if (portType == 2 || portType == 3)
  1043. {
  1044. //国交部 7 (主管 22,经理 32)团操操作权限 市场部 6 接团人
  1045. var userInfo = await _sqlSugar.Queryable<Sys_Users>().Where(it => it.Id == userId && it.IsDel == 0).FirstAsync();
  1046. if (userInfo != null)
  1047. {
  1048. if (userInfo.DepId == 7)
  1049. {
  1050. if (userInfo.JobPostId != 22 || userInfo.JobPostId != 32)
  1051. {
  1052. if (!string.IsNullOrEmpty(mobileSqlWhere)) mobileSqlWhere = $" Where {mobileSqlWhere}";
  1053. sql = string.Format($@"Select
  1054. ROW_NUMBER()Over(Order By Id Desc) as RowNumber,
  1055. Id,
  1056. GroupName
  1057. From (
  1058. Select
  1059. distinct
  1060. di.Id,
  1061. di.TeamName GroupName
  1062. From Grp_GroupsTaskAssignment gta With(NoLock)
  1063. Inner Join Grp_DelegationInfo di With(NoLock) On gta.DIId = di.Id
  1064. Where gta.IsDel = 0 And di.IsDel = 0 And gta.UId = {userId}
  1065. ) Temp {mobileSqlWhere}");
  1066. }
  1067. }
  1068. }
  1069. }
  1070. RefAsync<int> total = 0;
  1071. var groupNamePageData = await _sqlSugar.SqlQueryable<GroupNamePageView>(sql).ToPageListAsync(pageIndex, pageSize, total);
  1072. _res.Code = 200;
  1073. _res.Data = groupNamePageData;
  1074. _res.Msg = MsgTips.Succeed;
  1075. _res.Count = total;
  1076. return _res;
  1077. }
  1078. /// <summary>
  1079. /// 获取接团名称List And 签证国别
  1080. /// </summary>
  1081. /// <param name="dto"></param>
  1082. /// <returns></returns>
  1083. public async Task<Result> GetGroupNameAndVisaNationality(GroupNameDto dto)
  1084. {
  1085. Result result = new Result() { Code = -2, Msg = "未知错误" };
  1086. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //web
  1087. {
  1088. string sql = string.Format(@"Select Id,TeamName GroupName From Grp_DelegationInfo
  1089. Where TeamName != '' And IsDel = 0
  1090. Order By Id Desc");
  1091. var _groupNameList = await _sqlSugar.SqlQueryable<GroupNameView>(sql).ToListAsync();
  1092. string visaSql = string.Format(@"Select Id,Name From Sys_SetData Where STid = 41 And IsDel = 0");
  1093. var _setDataList = await _sqlSugar.SqlQueryable<SetDataInfoView>(visaSql).ToListAsync();
  1094. var data = new {
  1095. groupNameData = _groupNameList,
  1096. visaNationalityData = _setDataList
  1097. };
  1098. result.Data = data;
  1099. result.Code = 0;
  1100. }
  1101. return result;
  1102. }
  1103. #endregion
  1104. #region 团组&签证
  1105. /// <summary>
  1106. /// 根据团组Id查询客户
  1107. /// </summary>
  1108. /// <param name="dto"></param>
  1109. /// <returns></returns>
  1110. public async Task<Result> GetCrmByGroupId(ClientByGroupIdDto dto)
  1111. {
  1112. Result result = new Result() { Code = -2 };
  1113. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3)
  1114. {
  1115. string sql = string.Format(@"Select gdjc.GrpDCId grpId,cdc.Id,cdc.LastName+cdc.FirstName clientName,cdc.Tel,ccc.CertNo CerdNo
  1116. From Grp_DelegationJoinCustomer gdjc
  1117. Inner join Crm_DeleClient cdc On gdjc.CrmDCId = cdc.Id
  1118. Left Join Crm_CustomerCert ccc On ccc.SdId = 773 And cdc.Id = ccc.DcId
  1119. Where gdjc.GrpDCId = {0}", dto.GroupId);
  1120. var clientList = await _sqlSugar.SqlQueryable<CrmByGroupIdView>(sql).ToListAsync();
  1121. if (clientList.Count > 0)
  1122. {
  1123. result.Code = 0;
  1124. result.Msg = "成功!";
  1125. result.Data = clientList;
  1126. }
  1127. else
  1128. {
  1129. result.Msg = "暂无数据!";
  1130. }
  1131. }
  1132. return result;
  1133. }
  1134. #endregion
  1135. #region 团组&出入境费用
  1136. /// <summary>
  1137. /// 获取单组名称并验证出入境费用明细是否填写
  1138. /// </summary>
  1139. /// <param name="dto"></param>
  1140. /// <returns></returns>
  1141. public async Task<EnterExitCostGroupNameView[]> EnterExitCostGroupNameAsync()
  1142. {
  1143. var groupSql = string.Format(@$"SELECT
  1144. Id,
  1145. TeamName GroupName,
  1146. CityId ProvinceId,
  1147. CASE
  1148. WHEN (
  1149. SELECT
  1150. COUNT(*)
  1151. FROM
  1152. Grp_EnterExitCost
  1153. WHERE
  1154. IsDel = 0
  1155. AND DiId = di.Id
  1156. ) > 0 THEN 'false'
  1157. ELSE 'true'
  1158. END AS [IsNull]
  1159. FROM
  1160. Grp_DelegationInfo di
  1161. WHERE
  1162. di.Isdel = 0
  1163. ORDER BY
  1164. VisitStartDate Desc");
  1165. var groupDatas = await _sqlSugar.SqlQueryable<EnterExitCostGroupNameView>(groupSql).ToArrayAsync();
  1166. var provCityDatas = await ProvinceCityBasicSource();
  1167. if (provCityDatas.Any() && groupDatas.Any())
  1168. {
  1169. foreach (var item in groupDatas)
  1170. {
  1171. var provinceId = item.ProvinceId;
  1172. var isDefualtVal = true;
  1173. if (provinceId > 0)
  1174. {
  1175. var parentId = FindParentIdByChildId(provCityDatas, provinceId);
  1176. if (parentId != null)
  1177. {
  1178. isDefualtVal = false;
  1179. item.ProvinceId = (int)parentId;
  1180. }
  1181. }
  1182. if (isDefualtVal)
  1183. {
  1184. item.ProvinceId = 122; //默认四川
  1185. }
  1186. }
  1187. }
  1188. return groupDatas;
  1189. }
  1190. /// <summary>
  1191. /// 获取单组名称并验证出入境费用明细是否填写
  1192. /// </summary>
  1193. /// <param name="dto"></param>
  1194. /// <returns></returns>
  1195. public async Task<EnterExitCostGroupNameView> EnterExitCostGroupNameInfoAsync(int groupId)
  1196. {
  1197. var groupSql = string.Format(@$"SELECT
  1198. Id,
  1199. TeamName GroupName,
  1200. CityId ProvinceId,
  1201. CASE
  1202. WHEN (
  1203. SELECT
  1204. COUNT(*)
  1205. FROM
  1206. Grp_EnterExitCost
  1207. WHERE
  1208. IsDel = 0
  1209. AND DiId = di.Id
  1210. ) > 0 THEN 'false'
  1211. ELSE 'true'
  1212. END AS [IsNull]
  1213. FROM
  1214. Grp_DelegationInfo di
  1215. WHERE
  1216. di.Isdel = 0
  1217. And Id = {0} ", groupId);
  1218. var groupData = await _sqlSugar.SqlQueryable<EnterExitCostGroupNameView>(groupSql).FirstAsync();
  1219. var provCityDatas = await ProvinceCityBasicSource();
  1220. if (provCityDatas.Any() && groupData != null)
  1221. {
  1222. var provinceId = groupData.ProvinceId;
  1223. var isDefualtVal = true;
  1224. if (provinceId > 0)
  1225. {
  1226. var parentId = FindParentIdByChildId(provCityDatas, provinceId);
  1227. if (parentId != null)
  1228. {
  1229. isDefualtVal = false;
  1230. groupData.ProvinceId = (int)parentId;
  1231. }
  1232. }
  1233. if (isDefualtVal)
  1234. {
  1235. groupData.ProvinceId = 122; //默认四川
  1236. }
  1237. }
  1238. return groupData;
  1239. }
  1240. /// <summary>
  1241. /// 递归地遍历树状结构,查找子项的父类 Id。
  1242. /// </summary>
  1243. /// <param name="tree"></param>
  1244. /// <param name="childId"></param>
  1245. /// <returns></returns>
  1246. public int? FindParentIdByChildId(List<CityTree> tree, int childId)
  1247. {
  1248. foreach (var node in tree)
  1249. {
  1250. if (node.Child != null && node.Child.Any())
  1251. {
  1252. if (node.Child.Any(c => c.Id == childId))
  1253. {
  1254. return node.Id;
  1255. }
  1256. var parentId = FindParentIdByChildId(node.Child, childId);
  1257. if (parentId.HasValue)
  1258. {
  1259. return parentId;
  1260. }
  1261. }
  1262. }
  1263. return null;
  1264. }
  1265. #endregion
  1266. }
  1267. }