CustomerQueryLogic.cs 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. using CZFW.Core;
  2. using CZFW.Core.Security;
  3. using CZFW.Framework.Model;
  4. using CZKJ.GBRS2.Interface;
  5. using CZKJ.GBRS2.Model;
  6. using CZKJ.GBRS2.ViewModel;
  7. using Microsoft.EntityFrameworkCore;
  8. using Newtonsoft.Json;
  9. using Newtonsoft.Json.Linq;
  10. using System;
  11. using System.Collections.Generic;
  12. using System.Globalization;
  13. using System.Text;
  14. using System.Threading;
  15. using System.Threading.Tasks;
  16. using System.Linq;
  17. namespace CZKJ.GBRS2.Logic
  18. {
  19. public class CustomerQueryLogic : ICustomerQuery
  20. {
  21. CZDbContext dbContext = CZHttpContext.ServiceProvider.GetService(typeof(CZDbContext)) as CZDbContext;
  22. public async Task<string> GetHuaWeiToken(string contNo)
  23. {
  24. string getToeknUrl = $"{ConfigHelper.GetValue<string>("HuaWei:Url")}/apply/token?appId={ConfigHelper.GetValue<string>("HuaWei:AppId")}&appKey={ConfigHelper.GetValue<string>("HuaWei:AppKey")}";
  25. var responseString = await HttpHelper.HttpPostAsync(getToeknUrl);
  26. SentParams para = new SentParams();
  27. TransData model = new TransData();
  28. model.ContentData = new ContentData { BusinessNo = contNo, BusinessType = "1", PrintType = "1" };
  29. model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY033", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  30. para.TransData = model;
  31. string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  32. string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  33. var res = await HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  34. var jobJect = JObject.Parse(res)["TransData"]["ContentData"];
  35. if (jobJect == null)
  36. {
  37. return "";
  38. }
  39. DownLoadPolicy downLoadPolicy = JsonConvert.DeserializeObject<DownLoadPolicy>(jobJect.ToString());
  40. CoreHuaWeiFile coreFileInfo = new CoreHuaWeiFile();
  41. HuaWeiTokenModel toekenModel = JsonConvert.DeserializeObject<HuaWeiTokenModel>(responseString);
  42. string getDownLoadUrl = $"{ConfigHelper.GetValue<string>("HuaWei:Url")}/apply/download?objectId={downLoadPolicy.EleDownloadObjectId}&token={toekenModel.Data.Token}";
  43. var downLoadReponse = await HttpHelper.HttpPostAsync(getDownLoadUrl);
  44. return downLoadReponse;
  45. }
  46. /// <summary>
  47. /// 客户号获取名下保单列表
  48. /// </summary>
  49. /// <param name="userId"></param>
  50. /// <param name="cutomerType"></param>
  51. /// <returns></returns>
  52. public async Task<string> GetListByUserId(string userId, string cutomerType = "0")
  53. {
  54. SentParams para = new SentParams();
  55. TransData model = new TransData();
  56. //CutomerNo用户号,CustomerType:用户类型
  57. model.ContentData = new ContentData { CustomerNo = userId, CustomerType = cutomerType };
  58. model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY003", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  59. para.TransData = model;
  60. string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  61. string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  62. var res = await HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  63. SentParams resultPara = JsonConvert.DeserializeObject<SentParams>(res);
  64. if (resultPara.TransData.HeadData.ERR_MEASSGE != "交易成功")
  65. {
  66. return null;
  67. }
  68. return res;
  69. }
  70. /// <summary>
  71. /// 保单号查询保单信息
  72. /// </summary>
  73. /// <param name="ContNo"></param>
  74. /// <returns></returns>
  75. public async Task<InsurancePolicyModel> GetPolicyModel(string ContNo)
  76. {
  77. InsurancePolicyModel viewModel = new InsurancePolicyModel();
  78. SentParams para = new SentParams();
  79. TransData model = new TransData();
  80. model.ContentData = new ContentData { ContNo = ContNo };
  81. model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY004", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  82. para.TransData = model;
  83. string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  84. string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  85. var res = await HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  86. var jobJect = JObject.Parse(res)["TransData"]["ContentData"];
  87. if (jobJect != null)
  88. {
  89. viewModel = JsonConvert.DeserializeObject<InsurancePolicyModel>(jobJect.ToString());
  90. }
  91. return viewModel;
  92. }
  93. /// <summary>
  94. /// 保单号查询险种
  95. /// 已停用
  96. ///
  97. /// </summary>
  98. /// <param name="ContNo"></param>
  99. /// <returns></returns>
  100. public async Task<string> GetPolNo(string ContNo)
  101. {
  102. SentParams para = new SentParams();
  103. TransData model = new TransData();
  104. model.ContentData = new ContentData { CustomerNo = ConfigHelper.GetValue<string>("CoreQuery:CustomerNo"), CustomerType = ConfigHelper.GetValue<string>("CoreQuery:CustomerType") };
  105. model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY003", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  106. para.TransData = model;
  107. string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  108. string url = $"http://10.237.55.185:9002/officialWebsiteHttpServer?sign=" + sign;
  109. var res = await HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  110. return res;
  111. }
  112. /// <summary>
  113. /// 获取保单概要列表用于用户登录进来时展示
  114. /// </summary>
  115. /// <param name="userId"></param>
  116. /// <returns></returns>
  117. public async Task<List<ReportNoList>> GetReportNoList(List<string> list)
  118. {
  119. List<ReportNoList> result = new List<ReportNoList>();
  120. List<ReportNoListModel> model = new List<ReportNoListModel>();
  121. foreach (var element in list)
  122. {
  123. ReportNoListModel entity = new ReportNoListModel();
  124. var queryResult = await GetPolicyModel(element);
  125. entity.ContNo = element;
  126. entity.StartTime =Convert.ToDateTime( queryResult.CValiDate); //DateTime.ParseExact(queryResult.CValiDate, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
  127. switch (queryResult.AppFlag)
  128. {
  129. case "0":
  130. entity.State = "投保中";
  131. break;
  132. case "1":
  133. entity.State = "有效";
  134. break;
  135. case "4":
  136. entity.State = "终止";
  137. break;
  138. case "5":
  139. entity.State = "中止";
  140. break;
  141. case "9":
  142. entity.State = "续期中";
  143. break;
  144. }
  145. model.Add(entity);
  146. }
  147. foreach (var item in model.OrderByDescending(x=>x.StartTime))
  148. {
  149. ReportNoList entity = new ReportNoList();
  150. entity.StartTime = item.StartTime.ToString("yyyy-MM-dd");
  151. entity.State = item.State;
  152. entity.ContNo = item.ContNo;
  153. result.Add(entity);
  154. }
  155. return result;
  156. }
  157. /// <summary>
  158. /// 泛型查询
  159. /// </summary>
  160. /// <typeparam name="T"></typeparam>
  161. /// <param name="contNo"></param>
  162. /// <param name="transId"></param>
  163. /// <returns></returns>
  164. public async Task<T> HttpMenth<T>(string contNo, string transId)
  165. {
  166. SentParams para = new SentParams();
  167. TransData model = new TransData();
  168. if (transId == "QRY006")
  169. {
  170. model.ContentData = new ContentData { PolNo = contNo };
  171. }
  172. else
  173. {
  174. model.ContentData = new ContentData { ContNo = contNo };
  175. }
  176. model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = transId, TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  177. para.TransData = model;
  178. string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  179. string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  180. var res = await HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  181. JToken jobJect = null;
  182. //Object thisLock = new Object();
  183. if (transId == "QRY004" || transId == "QRY007" || transId == "QRY006")
  184. {
  185. jobJect = JObject.Parse(res)["TransData"]["ContentData"];
  186. //if (transId == "QRY004")
  187. //{
  188. // lock (thisLock)
  189. // dbContext.Database.ExecuteSqlCommandAsync($"INSERT INTO insurancepolicy(`InsurancePolicyJson`)VALUES({res})");
  190. //}
  191. //else if (transId == "QRY007")
  192. //{
  193. // lock (thisLock)
  194. // dbContext.Database.ExecuteSqlCommandAsync($"INSERT INTO policyholder(`PolicyHolderJson`)VALUES({res})");
  195. //}
  196. //else if (transId == "QRY006")
  197. //{
  198. // lock (thisLock)
  199. // dbContext.Database.ExecuteSqlCommandAsync($"INSERT INTO inquiryinsurancepolicy(`InquiryInsurancePolicyJson`)VALUES({res})");
  200. //}
  201. }
  202. else if (transId == "QRY008")
  203. {
  204. jobJect = JObject.Parse(res)["TransData"]["ContentData"]["InsuredInfos"];
  205. //lock (thisLock)
  206. // dbContext.Database.ExecuteSqlCommandAsync($"INSERT INTO policyinsured(`PolicyInsuredJson`)VALUES({res})");
  207. }
  208. else if (transId == "QRY005")
  209. {
  210. try {
  211. jobJect = JObject.Parse(res)["TransData"]["ContentData"]["PolNos"];
  212. }
  213. catch (Exception ex)
  214. {
  215. jobJect = null;
  216. }
  217. }
  218. else
  219. {
  220. jobJect = JObject.Parse(res)["TransData"]["ContentData"]["BnfInfos"];
  221. //lock (thisLock)
  222. // dbContext.Database.ExecuteSqlCommandAsync($"INSERT INTO policybeneficiary(`PolicyBeneficiaryJson`)VALUES({res})");
  223. }
  224. if (jobJect != null)
  225. {
  226. string str = jobJect.ToString();
  227. T viewModel = JsonConvert.DeserializeObject<T>(jobJect.ToString());
  228. return viewModel;
  229. }
  230. return default(T);
  231. }
  232. /// <summary>
  233. /// 保单号查询保单详情
  234. /// </summary>
  235. /// <param name="contNo"></param>
  236. /// <returns></returns>
  237. public async Task<ReportQueryViewModel> QueryReprot(string contNo)
  238. {
  239. if (string.IsNullOrWhiteSpace(contNo))
  240. {
  241. return null;
  242. }
  243. ReportQueryViewModel resultViewModel = new ReportQueryViewModel();
  244. var res004 = HttpMenth<InsurancePolicyModel>(contNo, "QRY004");
  245. var res009 = HttpMenth<List<PolicyBeneficiaryModel>>(contNo, "QRY009");
  246. var res007 = HttpMenth<PolicyHolderModel>(contNo, "QRY007");
  247. var res008 = HttpMenth<List<PolicyInsuredModel>>(contNo, "QRY008");
  248. var res005 = HttpMenth<List<Pol>>(contNo, "QRY005");
  249. resultViewModel.InsurancePolicyModel = await res004;
  250. if (resultViewModel.InsurancePolicyModel == null)
  251. {
  252. return resultViewModel;
  253. }
  254. resultViewModel.PolicyBeneficiaryModel = await res009;
  255. resultViewModel.PolicyHolderModel = await res007;
  256. resultViewModel.PolicyInsuredModel = await res008;
  257. var PolNos = await res005;
  258. if (PolNos != null)
  259. {
  260. resultViewModel.PolNo = PolNos;
  261. foreach (var element in resultViewModel.PolNo)
  262. {
  263. var entity = await HttpMenth<InquiryInsurancePolicyModel>(element.PolNo, "QRY006");
  264. entity.AddFeeRate = ChangeDataToD(entity.AddFeeRate);
  265. if (entity.RiskCode == "0012" || entity.RiskCode == "0017")
  266. {
  267. entity.IsEY = true;
  268. }
  269. resultViewModel.inquiryInsurancePolicyModels.Add(entity);
  270. }
  271. }
  272. return resultViewModel;
  273. }
  274. public async Task<ReportQueryViewModel> Transformation(string contNo)
  275. {
  276. var data = await QueryReprot(contNo);
  277. if (data.InsurancePolicyModel == null)
  278. {
  279. return data;
  280. }
  281. foreach (var item in data.inquiryInsurancePolicyModels)
  282. {
  283. if (!string.IsNullOrEmpty(item.CValiDate))
  284. {
  285. item.CValiDate = item.CValiDate; //DateTime.ParseExact(item.CValiDate, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
  286. }
  287. else
  288. {
  289. item.CValiDate = "";
  290. }
  291. if (item.MainPolNo == item.PolNo)
  292. {
  293. data.MianPolicyName = item.RiskName;
  294. if (item.RiskCode == "0012" || item.RiskCode == "0017")
  295. {
  296. data.IsEY = true;
  297. }
  298. }
  299. }
  300. //保单信息生效日期转换
  301. if (!string.IsNullOrEmpty(data.InsurancePolicyModel.CValiDate))
  302. {
  303. data.InsurancePolicyModel.CValiDate = data.InsurancePolicyModel.CValiDate;//DateTime.ParseExact(data.InsurancePolicyModel.CValiDate, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
  304. }
  305. else
  306. {
  307. data.InsurancePolicyModel.CValiDate = "";
  308. }
  309. //保单回执
  310. if (string.IsNullOrEmpty(data.InsurancePolicyModel.CustomGetPolDate))
  311. {
  312. data.InsurancePolicyModel.CustomGetPolDate = "";
  313. }
  314. ///投保人生日转换
  315. ///
  316. if (!string.IsNullOrEmpty(data.PolicyHolderModel.AppntBirthday))
  317. {
  318. data.PolicyHolderModel.AppntBirthday = data.PolicyHolderModel.AppntBirthday;//DateTime.ParseExact(data.PolicyHolderModel.AppntBirthday, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
  319. }
  320. else
  321. {
  322. data.PolicyHolderModel.AppntBirthday = "";
  323. }
  324. switch (data.PolicyHolderModel.AppntSex)
  325. {
  326. case "0":
  327. data.PolicyHolderModel.AppntSex = "男";
  328. break;
  329. case "1":
  330. data.PolicyHolderModel.AppntSex = "女";
  331. break;
  332. case "2":
  333. data.PolicyHolderModel.AppntSex = "不祥";
  334. break;
  335. }
  336. switch (data.InsurancePolicyModel.InHesitationFlag)
  337. {
  338. case "0":
  339. data.InsurancePolicyModel.InHesitationFlag = "犹豫期内";
  340. break;
  341. case "1":
  342. data.InsurancePolicyModel.InHesitationFlag = "犹豫期外";
  343. break;
  344. }
  345. switch (data.PolicyHolderModel.IDType)
  346. {
  347. case "0":
  348. data.PolicyHolderModel.IDType = "身份证";
  349. break;
  350. case "1":
  351. data.PolicyHolderModel.IDType = "护照";
  352. break;
  353. case "2":
  354. data.PolicyHolderModel.IDType = "军人身份证";
  355. break;
  356. case "3":
  357. data.PolicyHolderModel.IDType = "户口本";
  358. break;
  359. case "4":
  360. data.PolicyHolderModel.IDType = "通行证";
  361. break;
  362. case "5":
  363. data.PolicyHolderModel.IDType = "出生证明";
  364. break;
  365. case "6":
  366. data.PolicyHolderModel.IDType = "外国人永久居留身份证";
  367. break;
  368. }
  369. if (!string.IsNullOrEmpty(data.PolicyHolderModel.IDNo) && data.PolicyHolderModel.IDNo.Length == 18)
  370. {
  371. data.PolicyHolderModel.IDNo = data.PolicyHolderModel.IDNo.Substring(0, 6) + "********" + data.PolicyHolderModel.IDNo.Substring(14, 4);
  372. }
  373. else
  374. {
  375. data.PolicyHolderModel.IDNo = "";
  376. }
  377. if (!string.IsNullOrEmpty(data.PolicyHolderModel.Mobile))
  378. {
  379. data.PolicyHolderModel.Mobile = data.PolicyHolderModel.Mobile.Substring(0, 3) + "****" + data.PolicyHolderModel.Mobile.Substring(7, 4);
  380. }
  381. else
  382. {
  383. data.PolicyHolderModel.Mobile = "";
  384. }
  385. foreach (var item in data.PolicyInsuredModel)
  386. {
  387. if (!string.IsNullOrEmpty(item.IDNo) && item.IDNo.Length == 18)
  388. {
  389. item.IDNo = item.IDNo.Substring(0, 6) + "********" + item.IDNo.Substring(14, 4);
  390. }
  391. else
  392. {
  393. item.IDNo = "";
  394. }
  395. if (!string.IsNullOrEmpty(item.Mobile))
  396. {
  397. item.Mobile = item.Mobile.Substring(0, 3) + "****" + item.Mobile.Substring(7, 4);
  398. }
  399. else
  400. {
  401. item.Mobile = "";
  402. }
  403. //被保人生日转换
  404. if (!string.IsNullOrEmpty(item.Birthday))
  405. {
  406. item.Birthday = item.Birthday;//DateTime.ParseExact(item.Birthday, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
  407. }
  408. else
  409. {
  410. item.Birthday = "";
  411. }
  412. switch (item.Sex)
  413. {
  414. case "0":
  415. item.Sex = "男";
  416. break;
  417. case "1":
  418. item.Sex = "女";
  419. break;
  420. case "2":
  421. item.Sex = "不祥";
  422. break;
  423. }
  424. switch (item.IDType)
  425. {
  426. case "0":
  427. item.IDType = "身份证";
  428. break;
  429. case "1":
  430. item.IDType = "护照";
  431. break;
  432. case "2":
  433. item.IDType = "军人身份证";
  434. break;
  435. case "3":
  436. item.IDType = "户口本";
  437. break;
  438. case "4":
  439. item.IDType = "通行证";
  440. break;
  441. case "5":
  442. item.IDType = "出生证明";
  443. break;
  444. case "6":
  445. item.IDType = "外国人永久居留身份证";
  446. break;
  447. }
  448. switch (item.RelationToAppnt)
  449. {
  450. case "00":
  451. item.RelationToAppnt = "本人";
  452. break;
  453. case "01":
  454. item.RelationToAppnt = "配偶";
  455. break;
  456. case "02":
  457. item.RelationToAppnt = "子女";
  458. break;
  459. case "03":
  460. item.RelationToAppnt = "父母";
  461. break;
  462. case "04":
  463. item.RelationToAppnt = "亲属";
  464. break;
  465. case "05":
  466. item.RelationToAppnt = "雇佣关系";
  467. break;
  468. }
  469. }
  470. foreach (var item in data.PolicyBeneficiaryModel)
  471. {
  472. if (!string.IsNullOrEmpty(item.IDNo) && item.IDNo.Length == 18)
  473. {
  474. item.IDNo = item.IDNo.Substring(0, 6) + "********" + item.IDNo.Substring(14, 4);
  475. }
  476. else
  477. {
  478. item.IDNo = "";
  479. }
  480. if (!string.IsNullOrEmpty(item.Mobile))
  481. {
  482. item.Mobile = item.Mobile.Substring(0, 3) + "****" + item.Mobile.Substring(7, 4);
  483. }
  484. else
  485. {
  486. item.Mobile = "";
  487. }
  488. //受益人生日转换
  489. if (!string.IsNullOrEmpty(item.Birthday))
  490. {
  491. item.Birthday = item.Birthday;// DateTime.ParseExact(item.Birthday, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
  492. }
  493. else
  494. {
  495. item.Birthday = "";
  496. }
  497. switch (item.Sex)
  498. {
  499. case "0":
  500. item.Sex = "男";
  501. break;
  502. case "1":
  503. item.Sex = "女";
  504. break;
  505. case "2":
  506. item.Sex = "不祥";
  507. break;
  508. }
  509. switch (item.IDType)
  510. {
  511. case "0":
  512. item.IDType = "身份证";
  513. break;
  514. case "1":
  515. item.IDType = "护照";
  516. break;
  517. case "2":
  518. item.IDType = "军人身份证";
  519. break;
  520. case "3":
  521. item.IDType = "户口本";
  522. break;
  523. case "4":
  524. item.IDType = "通行证";
  525. break;
  526. case "5":
  527. item.IDType = "出生证明";
  528. break;
  529. case "6":
  530. item.IDType = "外国人永久居留身份证";
  531. break;
  532. }
  533. switch (item.RelationToInsured)
  534. {
  535. case "00":
  536. item.RelationToInsured = "本人";
  537. break;
  538. case "01":
  539. item.RelationToInsured = "配偶";
  540. break;
  541. case "02":
  542. item.RelationToInsured = "子女";
  543. break;
  544. case "03":
  545. item.RelationToInsured = "父母";
  546. break;
  547. case "04":
  548. item.RelationToInsured = "亲属";
  549. break;
  550. case "05":
  551. item.RelationToInsured = "雇佣关系";
  552. break;
  553. }
  554. }
  555. return data;
  556. }
  557. private string ChangeDataToD(string strData)
  558. {
  559. Decimal dData = 0.0M;
  560. if (strData.Contains("E"))
  561. {
  562. dData = Convert.ToDecimal(Decimal.Parse(strData.ToString(), System.Globalization.NumberStyles.Float));
  563. }
  564. return dData.ToString();
  565. }
  566. #region 旧版本
  567. /// <summary>
  568. /// 根据保单号查询保单详情
  569. /// </summary>
  570. /// <param name="ContNo"></param>
  571. /// <returns></returns>
  572. ///
  573. //public ReportQueryViewModel QueryReprot(string ContNo)
  574. //{
  575. // if (string.IsNullOrWhiteSpace(ContNo))
  576. // {
  577. // return null;
  578. // }
  579. // ReportQueryViewModel resultViewModel = new ReportQueryViewModel();
  580. // HttpMenth<InsurancePolicyModel>(ContNo, "QRY004");
  581. // #region 查询保单信息
  582. // SentParams para = new SentParams();
  583. // TransData model = new TransData();
  584. // model.ContentData = new ContentData { ContNo = ContNo};
  585. // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY004", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  586. // para.TransData = model;
  587. // string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  588. // string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  589. // var res = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  590. // resultViewModel.InsurancePolicyModel = JsonConvert.DeserializeObject<InsurancePolicyModel>(res);
  591. // #endregion
  592. // #region 查询受益人信息
  593. // SentParams para1 = new SentParams();
  594. // TransData model1 = new TransData();
  595. // model.ContentData = new ContentData { ContNo = ContNo };
  596. // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY009", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  597. // para.TransData = model;
  598. // string sign1 = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  599. // string url1 = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  600. // var res1 = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  601. // resultViewModel.PolicyBeneficiaryModel = JsonConvert.DeserializeObject<List<PolicyBeneficiaryModel>>(res1);
  602. // #endregion
  603. // #region 查询投保人信息
  604. // SentParams para2 = new SentParams();
  605. // TransData model2 = new TransData();
  606. // model.ContentData = new ContentData { ContNo = ContNo };
  607. // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY007", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  608. // para.TransData = model;
  609. // string sign2 = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  610. // string url2 = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  611. // var res2 = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  612. // resultViewModel.PolicyHolderModel = JsonConvert.DeserializeObject< List<PolicyHolderModel>>(res2);
  613. // #endregion
  614. // #region 查询被保人
  615. // SentParams para3 = new SentParams();
  616. // TransData model3 = new TransData();
  617. // model.ContentData = new ContentData { ContNo = ContNo };
  618. // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY008", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  619. // para.TransData = model;
  620. // string sign3 = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  621. // string url3 = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  622. // var res3 = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  623. // resultViewModel.PolicyInsuredModel = JsonConvert.DeserializeObject< List<PolicyInsuredModel>>(res3);
  624. // #endregion
  625. // #region 根据保单号查询险种
  626. // SentParams para4 = new SentParams();
  627. // TransData model4 = new TransData();
  628. // model.ContentData = new ContentData { ContNo = ContNo };
  629. // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY009", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  630. // para.TransData = model;
  631. // string sign4 = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  632. // string url4 = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  633. // var res4 = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  634. // resultViewModel.PolNo = JsonConvert.DeserializeObject<List<string>>(res4);
  635. // #endregion
  636. // return resultViewModel;
  637. //}
  638. #endregion
  639. }
  640. }