MobilePay.cs 77 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594
  1. using AnHuiMI.Common;
  2. using Newtonsoft.Json.Linq;
  3. using PTMedicalInsurance.Common;
  4. using PTMedicalInsurance.Helper;
  5. using PTMedicalInsurance.Variables;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace PTMedicalInsurance.Business
  12. {
  13. class MobilePay
  14. {
  15. private HisIrisServices hIS = new HisIrisServices();
  16. private MIIrisServices mIS = new MIIrisServices();
  17. private CenterBusiness cBus = new CenterBusiness();
  18. private InvokeHelper invoker = new InvokeHelper();
  19. private Patients MPat;
  20. private Settlements MSettl;
  21. private JArray jaFee;
  22. //
  23. //private string fixmedins_code;//定点医疗服务机构编码
  24. //private string yhappid;//渠道ID
  25. //private string orgId;//电子凭证机构号
  26. //前端传过来的入参,从这里面取值
  27. private JObject joParam;
  28. private JObject joInsuAdmObj;
  29. public MobilePay()
  30. {
  31. }
  32. public MobilePay(string inpar, out string errMsg)
  33. {
  34. errMsg = "";
  35. try
  36. {
  37. JObject joInpar = JObject.Parse(inpar);
  38. joParam = JObject.Parse(JsonHelper.getDestValue(joInpar, "params[0]"));
  39. joInsuAdmObj = JObject.Parse(JsonHelper.getDestValue(joInpar, "insuAdmObj"));
  40. setPatientByInPar();
  41. setSettlementsByInPar();
  42. }
  43. catch (Exception ex)
  44. {
  45. errMsg = "MobilePay异常:" + ex.Message;
  46. }
  47. }
  48. private JObject OutpatientReg()
  49. {
  50. string diagnoses;
  51. if (hIS.getPatDiagnoses(Global.pat, out diagnoses) != 0)
  52. {
  53. return JsonHelper.setExceptionJson(-1, "挂号", "获取诊断异常" + diagnoses);
  54. }
  55. JObject joHisRtnInfo = JObject.Parse(diagnoses);
  56. JObject joRegInpar = new JObject();
  57. string occurTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  58. joRegInpar.Add("psn_no", Global.pat.psn_no);
  59. joRegInpar.Add("insutype", Global.pat.insuType);
  60. joRegInpar.Add("begntime", JsonHelper.getDestValue(joHisRtnInfo, "mdtrtinfo.begntime"));//挂号时间 occurTime
  61. joRegInpar.Add("mdtrt_cert_type", "02");//就诊凭证类型
  62. joRegInpar.Add("mdtrt_cert_no", MPat.certNO);//就诊凭证编号
  63. joRegInpar.Add("ipt_otp_no", Global.pat.adm_Dr);
  64. joRegInpar.Add("atddr_no", JsonHelper.getDestValue(joHisRtnInfo, "mdtrtinfo.atddr_no"));
  65. joRegInpar.Add("dr_name", JsonHelper.getDestValue(joHisRtnInfo, "mdtrtinfo.chfpdr_name"));
  66. joRegInpar.Add("dept_code", JsonHelper.getDestValue(joHisRtnInfo, "mdtrtinfo.adm_dept_codg"));
  67. joRegInpar.Add("dept_name", JsonHelper.getDestValue(joHisRtnInfo, "mdtrtinfo.adm_dept_name"));
  68. joRegInpar.Add("caty", "72");
  69. JObject joReg = new JObject();
  70. joReg.Add("data", joRegInpar);
  71. JObject jo2201Inpar = JObject.Parse(JsonHelper.setCenterInpar("2201", joReg));
  72. JObject jo2201Rtn = invoker.invokeCenterService("2201", jo2201Inpar);
  73. string errMsg = "";
  74. if (JsonHelper.parseCenterRtnValue(jo2201Rtn, out errMsg) != 0)
  75. {
  76. return JsonHelper.setExceptionJson(-1, "医保挂号", errMsg);
  77. }
  78. else
  79. {
  80. Global.pat.mdtrtID = JsonHelper.getDestValue(jo2201Rtn, "output.data.mdtrt_id");
  81. }
  82. return jo2201Rtn;
  83. }
  84. public int MobilePaySettlement(out string outPar)
  85. {
  86. string errMsg, patInfo, M6201Inpar, M6202Inpar;
  87. //M6201Rtn, M6202Rtn,M6301Inpar,M6301Rtn;
  88. outPar = "";
  89. try
  90. {
  91. if (GetPatientInfo(out errMsg) != 0)
  92. {
  93. outPar = errMsg;
  94. return -1;
  95. }
  96. patInfo = errMsg;
  97. JObject jo1194Rtn = invoker.invokeCenterService("1101", JsonHelper.setCenterInpar("1101", patInfo));
  98. if (JsonHelper.parseCenterRtnValue(jo1194Rtn, out errMsg) != 0)
  99. {
  100. outPar = errMsg;
  101. return -1;
  102. }
  103. setPatientInsuInfo(jo1194Rtn);
  104. //2201
  105. //JObject jo2201Rtn = OutpatientReg();
  106. if (Get6201Inpar(out errMsg) != 0)
  107. {
  108. outPar = errMsg;
  109. return -1;
  110. }
  111. M6201Inpar = errMsg;
  112. JObject joM6201Rtn = invoker.invokeMPService("6201", errMsg);
  113. if (JsonHelper.parseMPRtnValue(joM6201Rtn, out errMsg) != 0)
  114. {
  115. outPar = errMsg;
  116. return -1;
  117. }
  118. JObject joEncData = JObject.Parse(errMsg);
  119. Global.writeLog("返回值:" + errMsg);
  120. //设置
  121. setPatientBy6201Rtn(joEncData);
  122. //存入MI 患者表,登记表,费用表
  123. if (saveToMi(out errMsg) != 0)
  124. {
  125. outPar = errMsg;
  126. return -1;
  127. }
  128. //M6202
  129. if (Get6202Inpar(JObject.Parse(M6201Inpar), out errMsg) != 0)
  130. {
  131. outPar = errMsg;
  132. return -1;
  133. }
  134. M6202Inpar = errMsg;
  135. JObject joM6202Rtn = invoker.invokeMPService("6202", M6202Inpar);
  136. if (JsonHelper.parseMPRtnValue(joM6202Rtn, out errMsg) != 0)
  137. {
  138. outPar = errMsg;
  139. return -1;
  140. }
  141. joEncData = JObject.Parse(errMsg);
  142. Global.writeLog(JsonHelper.Compress(joEncData));
  143. //设置
  144. setSettlementsBy6202Rtn(joEncData);
  145. MSettl.confirmFlag = 0;
  146. //存入MI 结算表
  147. if (saveSettlement(out errMsg) != 0)
  148. {
  149. outPar = errMsg;
  150. return -1;
  151. }
  152. //6301查询具体明细信息
  153. //if (Get6301Inpar(out errMsg) != 0)
  154. //{
  155. // outPar = errMsg;
  156. // return -1;
  157. //}
  158. //M6301Inpar = errMsg;
  159. //JObject joM6301Rtn = invoker.invokeMPService("6301", eh.encrypt(M6301Inpar));
  160. //if (JsonHelper.parseMPRtnValue(joM6301Rtn, out errMsg) != 0)
  161. //{
  162. // outPar = errMsg;
  163. // return -1;
  164. //}
  165. //joEncData = JObject.Parse(eh.decrypt(errMsg));
  166. //JObject joSettlInfo = JObject.Parse(JsonHelper.getDestValue(joEncData, "extData.SETLINFO"));
  167. //Global.writeLog(JsonHelper.Compress(joEncData));
  168. ////设置
  169. //setSettlementsBy6301Rtn(joSettlInfo);
  170. ////存入MI 结算表
  171. //if (saveSettlement(out errMsg) != 0)
  172. //{
  173. // outPar = errMsg;
  174. //}
  175. //返回给HIS后端
  176. JObject joPreSettl = JObject.Parse(JsonHelper.getDestValue(joEncData, "extData.preSetl"));
  177. //JObject joTmp = JObject.Parse(JsonHelper.getDestValue(joM6201Rtn, "encData"));
  178. JObject joTmp = new JObject();
  179. joTmp.Add("insutype", MPat.insuType);
  180. joTmp.Add("psn_no", MPat.psn_no);
  181. joTmp.Add("insuplc_admdvs", MPat.insuplc_admdvs);
  182. joTmp.Add("mdtrtId", MPat.mdtrtID);
  183. joTmp.Add("mdtrt_id", MPat.mdtrtID);
  184. joPreSettl.Add("setl_id", MPat.payOrdId);
  185. joTmp.Add("mdtrt_cert_type", JsonHelper.getDestValue(joPreSettl, "mdtrt_cert_type"));
  186. joTmp.Add("mdtrt_cert_no", JsonHelper.getDestValue(joPreSettl, "certno"));
  187. joTmp.Add("med_type", JsonHelper.getDestValue(joPreSettl, "med_type"));
  188. if (returnMPSettlementInfo(joTmp, joPreSettl, out errMsg) != 0)
  189. {
  190. outPar = errMsg;
  191. return -1;
  192. }
  193. //返回给HIS前端
  194. outPar = errMsg;
  195. return 0;
  196. }
  197. catch (Exception ex)
  198. {
  199. outPar = ex.Message;
  200. return -1;
  201. }
  202. }
  203. public int MobilePayConfirmSettlement(out string outPar)
  204. {
  205. string errMsg, M6301Inpar;
  206. outPar = "";
  207. try
  208. {
  209. //EncryptHelper eh = new EncryptHelper();
  210. //6301查询具体明细信息
  211. if (Get6301Inpar(out errMsg) != 0)
  212. {
  213. outPar = errMsg;
  214. return -1;
  215. }
  216. M6301Inpar = errMsg;
  217. JObject joM6301Rtn = invoker.invokeMPService("6301", M6301Inpar);
  218. if (JsonHelper.parseMPRtnValue(joM6301Rtn, out errMsg) != 0)
  219. {
  220. outPar = errMsg;
  221. return -1;
  222. }
  223. JObject joEncData = JObject.Parse((errMsg));
  224. Global.writeLog(JsonHelper.Compress(joEncData));
  225. string setlInfo = JsonHelper.getDestValue(joEncData, "extData.setlinfo");
  226. if (string.IsNullOrEmpty(setlInfo))
  227. {
  228. //此时为异步返回结算内容
  229. string ordStatus = JsonHelper.getDestValue(joEncData, "ordStas");
  230. outPar = JsonHelper.setExceptionJson(0, "移动医保结算", "当前订单状态为:【"+ordStatus+"】,结算成功,但未返回结算明细!").ToString();
  231. return 0;
  232. }
  233. //设置
  234. return ConfirmResult(joEncData, out outPar);
  235. }
  236. catch (Exception ex)
  237. {
  238. outPar = ex.Message;
  239. return -1;
  240. }
  241. }
  242. public int ConfirmResult(JObject data, out string outPar)
  243. {
  244. string errMsg = "";
  245. setSettlementsBy6301Rtn(data);
  246. MSettl.confirmFlag = 1;
  247. //存入MI 结算表
  248. if (updateSettlement(out errMsg) != 0)
  249. {
  250. outPar = errMsg;
  251. return -1;
  252. }
  253. else
  254. {
  255. //返回给HIS前端
  256. outPar = JsonHelper.setExceptionJson(0, "云医保平台", "确认成功!").ToString();
  257. return 0;
  258. }
  259. }
  260. public int MobilePayCancelSettlement(out string outPar)
  261. {
  262. string inParam, errMsg;
  263. outPar = "";
  264. try
  265. {
  266. if (Get6203Inpar(out errMsg) != 0)
  267. {
  268. outPar = errMsg;
  269. return -1;
  270. }
  271. inParam = errMsg;
  272. JObject jo6203Rtn = invoker.invokeMPService("6203", inParam);
  273. //M6202
  274. if (JsonHelper.parseMPRtnValue(jo6203Rtn, out errMsg) != 0)
  275. {
  276. outPar = errMsg;
  277. return -1;
  278. }
  279. //撤销医保平台结算数据
  280. return cancleSettlement(MPat.settlID, out outPar);
  281. }
  282. catch (Exception ex)
  283. {
  284. outPar = ex.Message;
  285. return -1;
  286. }
  287. }
  288. #region 赋值MPat,Msettle结构体
  289. public void setPatientByInPar()
  290. {
  291. MPat.adm_Dr = int.Parse(JsonHelper.getDestValue(joParam, "admID"));
  292. Global.pat.adm_Dr = MPat.adm_Dr;
  293. MPat.recordID = JsonHelper.getDestValue(joParam, "recordID");
  294. MPat.billID = JsonHelper.getDestValue(joParam, "billID");
  295. MPat.medType = JsonHelper.getDestValue(joInsuAdmObj, "medType");
  296. MPat.certType = JsonHelper.getDestValue(joInsuAdmObj, "mdtrtCertType");
  297. MPat.token = JsonHelper.getDestValue(joInsuAdmObj, "ecToken");
  298. MPat.payAuthNo = JsonHelper.getDestValue(joInsuAdmObj, "payAuthNo");
  299. MPat.uldLatlnt = JsonHelper.getDestValue(joInsuAdmObj, "uldLatlnt");
  300. MPat.payOrdId = JsonHelper.getDestValue(joInsuAdmObj, "payOrdId");
  301. MPat.mdtrtID = JsonHelper.getDestValue(joInsuAdmObj, "mdtrt_id");
  302. MPat.settlID = JsonHelper.getDestValue(joInsuAdmObj, "setl_id");
  303. Global.pat.mdtrtID = MPat.mdtrtID;
  304. }
  305. public void setPatientBy6201Rtn(JObject jo)
  306. {
  307. MPat.payOrdId = JsonHelper.getDestValue(jo, "payOrdId");
  308. MPat.payToken = JsonHelper.getDestValue(jo, "payToken");
  309. //MPat.psn_no = JsonHelper.getDestValue(jo, "psn_no");
  310. //MPat.insuType = JsonHelper.getDestValue(jo, "insutype");
  311. //MPat.insuplc_admdvs = JsonHelper.getDestValue(jo, "insuplc_admdvs");
  312. MPat.mdtrtID = JsonHelper.getDestValue(jo, "extData.mdtrtId");
  313. }
  314. //{"errorCode":0,"errorMessage":"","result":{"patName":"张振","patBirthdate":"1993-02-07","patSex":"男","credCode":"01","credNo":"522226199302073619"}}
  315. public void setPatientByHisBaseInfo(JObject jo)
  316. {
  317. MPat.name = JsonHelper.getDestValue(jo, "result.patName");
  318. MPat.brdy = JsonHelper.getDestValue(jo, "result.patBirthdate");
  319. MPat.gend = JsonHelper.getDestValue(jo, "result.patSex");
  320. MPat.age = JsonHelper.getDestValue(jo, "result.Age");
  321. MPat.naty = JsonHelper.getDestValue(jo, "result.naty");
  322. MPat.certNO = JsonHelper.getDestValue(jo, "result.credNo");
  323. MPat.IDNO = MPat.certNO;
  324. MPat.certType = JsonHelper.getDestValue(jo, "result.credCode");
  325. }
  326. public void setPatientByMiRegInfo(JObject jo)
  327. {
  328. MPat.name = JsonHelper.getDestValue(jo, "data.PatientName");
  329. MPat.psn_no = JsonHelper.getDestValue(jo, "data.PersonalNO");
  330. MPat.certNO = JsonHelper.getDestValue(jo, "data.CertificateNO");
  331. MPat.IDNO = MPat.certNO;
  332. MPat.certType = JsonHelper.getDestValue(jo, "data.CertificateType");
  333. MPat.payToken = JsonHelper.getDestValue(jo, "data.payToken");
  334. MPat.insuplc_admdvs = JsonHelper.getDestValue(jo, "data.InsuranceAreaCode");
  335. }
  336. public void setPatientInsuInfo(JObject jo)
  337. {
  338. MPat.insuplc_admdvs = JsonHelper.getDestValue(jo, "output.insuinfo[0].insuplc_admdvs");
  339. MPat.psn_no = JsonHelper.getDestValue(jo, "output.baseinfo.psn_no");
  340. MPat.insuType = JsonHelper.getDestValue(jo, "output.insuinfo[0].insutype");
  341. Global.pat.insuplc_admdvs = MPat.insuplc_admdvs;
  342. Global.pat.psn_no = MPat.psn_no;
  343. Global.pat.insuType = MPat.insuType;
  344. }
  345. public void setPatientByDiagnoseInfo(JObject jo)
  346. {
  347. MPat.admAttendDoctorNO = JsonHelper.getDestValue(jo, "atddr_no");
  348. MPat.admDiagCode = JsonHelper.getDestValue(jo, "dscg_maindiag_code");
  349. MPat.admDiagName = JsonHelper.getDestValue(jo, "dscg_maindiag_name");
  350. MPat.AdmInDepCode = JsonHelper.getDestValue(jo, "adm_dept_codg");
  351. }
  352. public void setSettlementsBy6202Rtn(JObject jo)
  353. {
  354. MSettl.settlID = JsonHelper.getDestValue(jo, "payOrdId");
  355. MPat.payOrdId = MSettl.settlID;
  356. MSettl.ordStas = JsonHelper.getDestValue(jo, "ordStas");
  357. MSettl.sumamt = getDecimalFee(jo, "feeSumamt");
  358. MSettl.personCashPay = getDecimalFee(jo, "ownPayAmt");
  359. MSettl.accountPaySumamt = getDecimalFee(jo, "psnAcctPay");
  360. MSettl.fundPaySumamt = getDecimalFee(jo, "fundPay");
  361. MSettl.deposit = getDecimalFee(jo, "deposit");
  362. MSettl.clearingOrgan = JsonHelper.getDestValue(jo, "extData.preSetl.clr_optins");
  363. MSettl.clearingType = JsonHelper.getDestValue(jo, "extData.preSetl.clr_type");
  364. MSettl.clearingWay = JsonHelper.getDestValue(jo, "extData.preSetl.clr_way");
  365. MSettl.civilserviceAllowancePay = getDecimalFee(jo, "extData.preSetl.cvlserv_pay");
  366. MSettl.ownPayAmount = getDecimalFee(jo, "extData.preSetl.fulamt_ownpay_amt");
  367. MSettl.overLimitAmountmt = getDecimalFee(jo, "extData.preSetl.overlmt_selfpay");
  368. MSettl.preSelfPayAmount = getDecimalFee(jo, "extData.preSetl.preselfpay_amt");
  369. MSettl.inPolicyRangeAmount = getDecimalFee(jo, "extData.preSetl.inscp_scp_amt");
  370. MSettl.actualPayDeductible = getDecimalFee(jo, "extData.preSetl.act_pay_dedc");
  371. MSettl.healthInsurancePay = getDecimalFee(jo, "extData.preSetl.hifp_pay");
  372. MSettl.healthInsuranceRatio = getDecimalFee(jo, "extData.preSetl.pool_prop_selfpay");
  373. MSettl.enterpriseSupplementPay = getDecimalFee(jo, "extData.preSetl.hifes_pay");
  374. MSettl.seriousIllnessPay = getDecimalFee(jo, "extData.preSetl.hifmi_pay");
  375. MSettl.largeExpensesSupplementPay = getDecimalFee(jo, "extData.preSetl.hifob_pay");
  376. MSettl.medicalAssistPay = getDecimalFee(jo, "extData.preSetl.maf_pay");
  377. MSettl.hospitalPartAmount = getDecimalFee(jo, "extData.preSetl.hosp_part_amt");
  378. MSettl.otherPay = getDecimalFee(jo, "extData.preSetl.oth_pay");
  379. MSettl.personPaySumamt = getDecimalFee(jo, "extData.preSetl.psn_part_amt");
  380. MSettl.balance = getDecimalFee(jo, "extData.preSetl.balc");
  381. MSettl.accountMutualAidAmount = getDecimalFee(jo, "extData.preSetl.acct_mulaid_pay");
  382. }
  383. public void setSettlementsBy6301Rtn(JObject joRtn)
  384. {
  385. JObject jo = JObject.Parse(JsonHelper.getDestValue(joRtn, "extData.setlinfo"));
  386. MPat.mdtrtID = JsonHelper.getDestValue(jo, "mdtrtId");
  387. MPat.settlID = JsonHelper.getDestValue(jo, "setlId");
  388. MPat.psn_no = JsonHelper.getDestValue(jo, "psnNo");
  389. MPat.naty = JsonHelper.getDestValue(jo, "naty");
  390. MPat.name = JsonHelper.getDestValue(jo, "psnName");
  391. MPat.age = JsonHelper.getDestValue(jo, "age");
  392. MPat.gend = JsonHelper.getDestValue(jo, "gend");
  393. MPat.certNO = JsonHelper.getDestValue(jo, "certno");
  394. MPat.brdy = JsonHelper.getDestValue(jo, "brdy");
  395. MPat.insuType = JsonHelper.getDestValue(jo, "insutype");
  396. MPat.psn_type = JsonHelper.getDestValue(jo, "psnType");
  397. MPat.mdtrtcertType = JsonHelper.getDestValue(jo, "mdtrtCertType");
  398. MPat.medType = JsonHelper.getDestValue(jo, "medType");
  399. MPat.insuplc_admdvs = JsonHelper.getDestValue(joRtn, "extData.insuplcAdmdvs");
  400. MPat.payOrdId = JsonHelper.getDestValue(joRtn, "payOrdId");
  401. MSettl.ordStas = JsonHelper.getDestValue(joRtn, "ordStas");
  402. MSettl.sumamt = getDecimalFee(joRtn, "feeSumamt");
  403. MSettl.personCashPay = getDecimalFee(jo, "psnCashPay");
  404. MSettl.accountPaySumamt = getDecimalFee(jo, "acctPay");
  405. MSettl.fundPaySumamt = getDecimalFee(jo, "fundPaySumamt");
  406. //MSettl.deposit = getDecimalFee(jo, "deposit");
  407. MSettl.clearingOrgan = JsonHelper.getDestValue(jo, "clrOptins");
  408. MSettl.clearingType = JsonHelper.getDestValue(jo, "clrType");
  409. MSettl.clearingWay = JsonHelper.getDestValue(jo, "clrWay");
  410. MSettl.civilserviceAllowancePay = getDecimalFee(jo, "cvlservPay");
  411. MSettl.ownPayAmount = getDecimalFee(jo, "fulamtOwnpayAmt");
  412. MSettl.overLimitAmountmt = getDecimalFee(jo, "overlmtSelfpay");
  413. MSettl.preSelfPayAmount = getDecimalFee(jo, "preselfpayAmt");
  414. MSettl.inPolicyRangeAmount = getDecimalFee(jo, "inscpScpAmt");
  415. MSettl.actualPayDeductible = getDecimalFee(jo, "actPayDedc");
  416. MSettl.healthInsurancePay = getDecimalFee(jo, "hifpPay");
  417. MSettl.healthInsuranceRatio = getDecimalFee(jo, "poolPropSelfpay");
  418. MSettl.enterpriseSupplementPay = getDecimalFee(jo, "hifesPay");
  419. MSettl.seriousIllnessPay = getDecimalFee(jo, "hifmiPay");
  420. MSettl.largeExpensesSupplementPay = getDecimalFee(jo, "hifobPay");
  421. MSettl.medicalAssistPay = getDecimalFee(jo, "mafPay");
  422. MSettl.hospitalPartAmount = getDecimalFee(jo, "hospPartAmt");
  423. MSettl.otherPay = getDecimalFee(jo, "othPay");
  424. MSettl.personPaySumamt = getDecimalFee(jo, "psnPartAmt");
  425. MSettl.balance = getDecimalFee(jo, "balc");
  426. MSettl.accountMutualAidAmount = getDecimalFee(jo, "acctMulaidPay");
  427. }
  428. public void setSettlementsByInPar()
  429. {
  430. MSettl.clearingWay = JsonHelper.getDestValue(joInsuAdmObj, "psnSetlway");
  431. MSettl.settlID = JsonHelper.getDestValue(joInsuAdmObj, "payOrdId");
  432. }
  433. #endregion
  434. #region 组织入参
  435. public int GetPatientInfo(out string outparam)
  436. {
  437. string errMsg = "";
  438. outparam = "";
  439. try
  440. {
  441. JObject joInpar = new JObject();
  442. //查询患者基本信息
  443. if (hIS.GetHisPatBaseInfo(out errMsg) != 0)
  444. {
  445. outparam = errMsg;
  446. return -1;
  447. }
  448. setPatientByHisBaseInfo(JObject.Parse(errMsg));
  449. //入参
  450. joInpar.Add("mdtrt_cert_type", "02");//就诊凭证类型
  451. joInpar.Add("mdtrt_cert_no", MPat.certNO);//就诊凭证编号
  452. joInpar.Add("card_sn", "");//卡识别码
  453. joInpar.Add("begntime", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));//开始时间 获取历史参保信息时传入
  454. joInpar.Add("psn_cert_type", "01");//就诊凭证类型为“ 02” 时默认传 01 代表身份 证,其他证件类型按实际上传
  455. joInpar.Add("certno", MPat.certNO);//证件号码
  456. joInpar.Add("psn_name", MPat.name);//姓名
  457. JObject joData = new JObject();
  458. joData.Add("data", joInpar);
  459. outparam = joData.ToString();
  460. return 0;
  461. }
  462. catch (Exception ex)
  463. {
  464. outparam = "GetPatientInfo:" + ex.Message;
  465. return -1;
  466. }
  467. finally
  468. {
  469. Global.writeLog("GetPatientInfo", "", outparam);
  470. }
  471. }
  472. //组织M6201入参
  473. public int Get6201Inpar(out string outparam)
  474. {
  475. string errMsg = "";
  476. outparam = "";
  477. try
  478. {
  479. JObject joInpar = new JObject();
  480. //查询患者基本信息
  481. if (hIS.GetHisPatBaseInfo(out errMsg) != 0)
  482. {
  483. outparam = errMsg;
  484. return -1;
  485. }
  486. setPatientByHisBaseInfo(JObject.Parse(errMsg));
  487. JObject joPatBaseInfo = JObject.Parse(JsonHelper.getDestValue(JObject.Parse(errMsg), "result"));
  488. //获取诊断
  489. if (getDiagnoses(out errMsg) != 0)
  490. {
  491. outparam = errMsg;
  492. return -1;
  493. }
  494. JObject joDiagnoses = JObject.Parse(errMsg);
  495. JArray jaDiseinfoList = JArray.Parse(JsonHelper.getDestValue(joDiagnoses, "diseinfoList"));
  496. JObject joMdtrtinfo = JObject.Parse(JsonHelper.getDestValue(joDiagnoses, "mdtrtinfo"));
  497. setPatientByDiagnoseInfo(joMdtrtinfo);
  498. //获取费用
  499. if (GetFee(out errMsg) != 0)
  500. {
  501. outparam = errMsg;
  502. return -1;
  503. }
  504. JObject joFee = JObject.Parse(errMsg);
  505. JArray jaFeedetailList = JArray.Parse(JsonHelper.getDestValue(joFee, "feedetailList"));
  506. for (int i = 0; i < jaFeedetailList.Count; i++)
  507. {
  508. JObject joTmp = new JObject();
  509. joTmp.Add("act_purc_pric", jaFeedetailList[i]["pric"]);
  510. joTmp.Add("sin_dos", jaFeedetailList[i]["sinDosDscr"]);
  511. //joTmp.Add("medins_list_name", jaFeedetailList[i]["medListName"]);
  512. //((JObject)jaFeedetailList[i]).Property("chrgBchno").Remove();
  513. //((JObject)jaFeedetailList[i]).Property("diseCodg").Remove();
  514. ((JObject)jaFeedetailList[i]).Property("rxno").Remove();
  515. //((JObject)jaFeedetailList[i]).Property("feeOcurTime").Remove();
  516. ((JObject)jaFeedetailList[i]).Property("sinDosDscr").Remove();
  517. ((JObject)jaFeedetailList[i]).Property("usedFrquDscr").Remove();
  518. ((JObject)jaFeedetailList[i]).Property("prdDays").Remove();
  519. ((JObject)jaFeedetailList[i]).Property("medcWayDscr").Remove();
  520. //((JObject)jaFeedetailList[i]).Property("bilgDeptCodg").Remove();
  521. ((JObject)jaFeedetailList[i]).Property("acordDeptCodg").Remove();
  522. ((JObject)jaFeedetailList[i]).Property("acordDeptName").Remove();
  523. ((JObject)jaFeedetailList[i]).Property("ordersDrCode").Remove();
  524. ((JObject)jaFeedetailList[i]).Property("ordersDrName").Remove();
  525. ((JObject)jaFeedetailList[i]).Property("tcmdrugUsedWay").Remove();
  526. ((JObject)jaFeedetailList[i]).Property("etipFlag").Remove();
  527. ((JObject)jaFeedetailList[i]).Property("etipHospCode").Remove();
  528. ((JObject)jaFeedetailList[i]).Property("dscgTkdrugFlag").Remove();
  529. ((JObject)jaFeedetailList[i]).Property("matnFeeFlag").Remove();
  530. ((JObject)jaFeedetailList[i]).Property("initFeedetlSn").Remove();
  531. ((JObject)jaFeedetailList[i]).Property("medType").Remove();
  532. ((JObject)jaFeedetailList[i]).Property("memo").Remove();
  533. //((JObject)jaFeedetailList[i]).Property("expContent").Remove();
  534. //((JObject)jaFeedetailList[i]).Property("medListName").Remove();
  535. //((JObject)jaFeedetailList[i]).Property("medListSpc").Remove();
  536. ((JObject)jaFeedetailList[i]).Property("combNo").Remove();
  537. //jaFeedetailList[i]["chrgBchno"] = MPat.adm_Dr.ToString();
  538. jaFeedetailList[i]["expContent"] = joTmp.ToString();
  539. jaFeedetailList[i]["medType"] = JsonHelper.getDestValue(joInsuAdmObj, "medType");
  540. jaFeedetailList[i]["psnNo"] = MPat.psn_no;
  541. }
  542. //入参
  543. joInpar.Add("orgCodg", Global.inf.hospitalNO);//机构编码
  544. //joInpar.Add("orgId", "");//电子凭证机构号
  545. joInpar.Add("psnNo", MPat.psn_no);//人员编号
  546. joInpar.Add("insutype", MPat.insuType);//险种类型
  547. joInpar.Add("medOrgOrd", MPat.recordID);//医疗机构订单号 前端传入
  548. joInpar.Add("initRxOrd", JsonHelper.getDestValue(joInsuAdmObj, "initRxOrd"));//要续方的原处方流水 前端传入
  549. joInpar.Add("rxCircFlag", JsonHelper.getDestValue(joInsuAdmObj, "rxCircFlag"));//电子处方流转标志 前端传入
  550. MSettl.settlTime = Convert.ToDateTime(JsonHelper.getDestValue(joMdtrtinfo, "begntime"));
  551. joInpar.Add("begntime", JsonHelper.getDestValue(joMdtrtinfo, "begntime"));//开始时间
  552. joInpar.Add("idNo", JsonHelper.getDestValue(joPatBaseInfo, "credNo"));//证件号码
  553. joInpar.Add("userName", JsonHelper.getDestValue(joPatBaseInfo, "patName"));//用户姓名
  554. joInpar.Add("idType", JsonHelper.getDestValue(joPatBaseInfo, "credCode"));//证件类别
  555. joInpar.Add("ecToken", JsonHelper.getDestValue(joInsuAdmObj, "ecToken"));//电子凭证授权ecToken 前端传入
  556. joInpar.Add("insuCode", Global.inf.areaCode);//就诊参保地行政区划
  557. joInpar.Add("iptOtpNo", JsonHelper.getDestValue(joMdtrtinfo, "ipt_no"));//住院/门诊号
  558. joInpar.Add("atddrNo", JsonHelper.getDestValue(joMdtrtinfo, "atddr_no"));//医师编码
  559. joInpar.Add("drName", JsonHelper.getDestValue(joMdtrtinfo, "chfpdr_name"));//医师姓名
  560. joInpar.Add("deptCode", JsonHelper.getDestValue(joMdtrtinfo, "adm_dept_codg"));//科室编码
  561. joInpar.Add("deptName", JsonHelper.getDestValue(joMdtrtinfo, "adm_dept_name"));//科室名称
  562. joInpar.Add("caty", "A10");//科别
  563. //joInpar.Add("mdtrtId", Global.pat.mdtrtID);//医保就诊ID
  564. joInpar.Add("medType", MPat.medType);//医疗类别 前端传入
  565. joInpar.Add("feeType", JsonHelper.getDestValue(joInsuAdmObj, "feeType"));//费用类型 前端传入
  566. joInpar.Add("medfeeSumamt", JsonHelper.getDestValue(joFee, "medfeeSumamt"));//医疗费总额
  567. joInpar.Add("acctUsedFlag", JsonHelper.getDestValue(joInsuAdmObj, "acctUsedFlag"));//个人账户使用标志 前端传入
  568. joInpar.Add("mainCondDscr", JsonHelper.getDestValue(joMdtrtinfo, "mainCondDscr"));//主要病情描述
  569. joInpar.Add("diseCodg", JsonHelper.getDestValue(joMdtrtinfo, "diseCodg"));//病种编码
  570. joInpar.Add("diseName", JsonHelper.getDestValue(joMdtrtinfo, "diseName"));//病种名称
  571. joInpar.Add("psnSetlway", JsonHelper.getDestValue(joInsuAdmObj, "psnSetlway"));//个人结算方式 前端传入
  572. joInpar.Add("chrgBchno", JsonHelper.getDestValue(joFee, "chrgBchno"));//收费批次号
  573. //joInpar.Add("pubHospRfomFlag", JsonHelper.getDestValue(joInsuAdmObj, "pubHospRfomFlag"));//公立医院改革标志
  574. //joInpar.Add("invono", JsonHelper.getDestValue(joMdtrtinfo, "invono"));//发票号
  575. //joInpar.Add("endtime", JsonHelper.getDestValue(joMdtrtinfo, "endtime"));//出院时间
  576. //joInpar.Add("fulamtOwnpayAmt", JsonHelper.getDestValue(joMdtrtinfo, "fulamtOwnpayAmt"));//全自费金额
  577. //joInpar.Add("overlmtSelfpay", JsonHelper.getDestValue(joMdtrtinfo, "overlmtSelfpay"));//超限价金额
  578. //joInpar.Add("preselfpayAmt", JsonHelper.getDestValue(joMdtrtinfo, "preselfpayAmt"));//先行自付金额
  579. //joInpar.Add("inscpScpAmt", JsonHelper.getDestValue(joMdtrtinfo, "inscpScpAmt"));//符合政策范围金额
  580. //joInpar.Add("oprnOprtCode", JsonHelper.getDestValue(joMdtrtinfo, "oprnOprtCode"));//手术操作代码
  581. //joInpar.Add("oprnOprtName", JsonHelper.getDestValue(joMdtrtinfo, "oprnOprtName"));//手术操作名称
  582. //joInpar.Add("fpscNo", JsonHelper.getDestValue(joMdtrtinfo, "fpscNo"));//计划生育服务证号
  583. //joInpar.Add("latechbFlag", JsonHelper.getDestValue(joMdtrtinfo, "latechbFlag"));//晚育标志
  584. joInpar.Add("gesoVal", JsonHelper.getDestValue(joMdtrtinfo, "gesoVal"));//孕周数
  585. joInpar.Add("fetts", JsonHelper.getDestValue(joMdtrtinfo, "fetts"));//胎次
  586. joInpar.Add("fetusCnt", JsonHelper.getDestValue(joMdtrtinfo, "fetusCnt"));//胎儿数
  587. //joInpar.Add("pretFlag", JsonHelper.getDestValue(joMdtrtinfo, "pretFlag"));//早产标志
  588. //joInpar.Add("birctrlType", JsonHelper.getDestValue(joMdtrtinfo, "birctrlType"));//计划生育手术类别
  589. //joInpar.Add("birctrlMatnDate", JsonHelper.getDestValue(joMdtrtinfo, "birctrlMatnDate"));//计划生育手术或生育日期
  590. //joInpar.Add("copFlag", JsonHelper.getDestValue(joMdtrtinfo, "copFlag"));//伴有并发症标志
  591. //joInpar.Add("dscgDeptCodg", JsonHelper.getDestValue(joMdtrtinfo, "dscgDeptCodg"));//出院科室编码
  592. //joInpar.Add("dscgDeptName", JsonHelper.getDestValue(joMdtrtinfo, "dscgDeptName"));//出院科室名称
  593. //joInpar.Add("dscgDed", JsonHelper.getDestValue(joMdtrtinfo, "dscgDed"));//出院床位
  594. //joInpar.Add("dscgWay", JsonHelper.getDestValue(joMdtrtinfo, "dscgWay"));//离院方式
  595. //joInpar.Add("dieDate", JsonHelper.getDestValue(joMdtrtinfo, "dieDate"));//死亡日期
  596. joInpar.Add("matnType", JsonHelper.getDestValue(joMdtrtinfo, "matnType"));//生育类别
  597. joInpar.Add("expContent", JsonHelper.getDestValue(joInsuAdmObj, "expContent"));//扩展参数 前端传入
  598. //joInpar.Add("midSetlFlag", JsonHelper.getDestValue(joInsuAdmObj, "midSetlFlag"));//中途结算标志 前端传入
  599. joInpar.Add("diseinfoList", jaDiseinfoList);//诊断或症状明细
  600. joInpar.Add("feedetailList", jaFeedetailList);//费用明细
  601. //joInpar.Add("admDiagDscr", JsonHelper.getDestValue(joMdtrtinfo, "admDiagDscr"));//入院诊断描述
  602. //joInpar.Add("admDeptCodg", JsonHelper.getDestValue(joMdtrtinfo, "admDeptCodg"));//入院科室编码
  603. //joInpar.Add("admDeptName", JsonHelper.getDestValue(joMdtrtinfo, "admDeptName"));//入院科室名称
  604. //joInpar.Add("admBed", JsonHelper.getDestValue(joMdtrtinfo, "admBed"));//入院床位
  605. joInpar.Add("payAuthNo", JsonHelper.getDestValue(joInsuAdmObj, "payAuthNo"));//支付授权码 前端传入
  606. joInpar.Add("uldLatlnt", JsonHelper.getDestValue(joInsuAdmObj, "uldLatlnt"));//经纬度 前端传入
  607. joInpar.Add("mdtrtCertType", JsonHelper.getDestValue(joInsuAdmObj, "mdtrtCertType"));//就诊凭证类型 前端传入
  608. joInpar.Add("insuplcAdmdvs", MPat.insuplc_admdvs);//用户参保地行政区划
  609. //JObject joData = new JObject();
  610. //joData.Add("data",joInpar);
  611. outparam = joInpar.ToString();
  612. return 0;
  613. }
  614. catch (Exception ex)
  615. {
  616. outparam = "Get6201Inpar:" + ex.Message;
  617. return -1;
  618. }
  619. finally
  620. {
  621. Global.writeLog("Get6201Inpar", "", outparam);
  622. }
  623. }
  624. //获取入参,入参基本为类局部变量
  625. public int Get6202Inpar(JObject joM6201Inpar, out string outparam)
  626. {
  627. outparam = "";
  628. try
  629. {
  630. //获取其他入参
  631. JObject joInpar = new JObject();
  632. joInpar.Add("payAuthNo", MPat.payAuthNo);//支付授权码 前端传入
  633. joInpar.Add("payOrdId", MPat.payOrdId);//待支付订单号
  634. joInpar.Add("payToken", MPat.payToken);//支付订单对应的token
  635. joInpar.Add("orgCodg", Global.inf.hospitalNO);//定点机构编码
  636. joInpar.Add("orgBizSer", DateTime.Now.ToString("yyyyMMddHHmmssffff"));//业务流水号 前端传入
  637. //joInpar.Add("ecAuthCode", "");
  638. //joInpar.Add("ecChnlAppId", "");
  639. //joInpar.Add("ecChnlUserId", "");
  640. //joInpar.Add("mdtrtId", MPat.mdtrtID);
  641. joInpar.Add("chrgBchno", JsonHelper.getDestValue(joM6201Inpar, "chrgBchno"));//收费批次号
  642. //joInpar.Add("feeType", JsonHelper.getDestValue(joM6201Inpar, "feeType"));//费用类别
  643. //joInpar.Add("deposit", JsonHelper.getDestValue(joInsuAdmObj, "deposit"));//住院押金
  644. //joInpar.Add("expContent", "");//扩展数据
  645. //joInpar.Add("acctUsedFlag", "1");//个账使用标识
  646. //JObject joData = new JObject();
  647. //joData.Add("data", joInpar);
  648. outparam = joInpar.ToString();
  649. return 0;
  650. }
  651. catch (Exception ex)
  652. {
  653. outparam = "Get6202Inpar:" + ex.Message;
  654. return -1;
  655. }
  656. finally
  657. {
  658. Global.writeLog("Get6202Inpar", "", outparam);
  659. }
  660. }
  661. //组织M6203入参
  662. public int Get6203Inpar(out string outparam)
  663. {
  664. string errMsg = "";
  665. outparam = "";
  666. try
  667. {
  668. JObject joInpar = new JObject();
  669. //获取医保平台结算信息
  670. if (QuerySettleInfo(out errMsg) != 0)
  671. {
  672. outparam = errMsg;
  673. return -1;
  674. }
  675. JObject joRtn = JObject.Parse(errMsg);
  676. JObject joSettl = JObject.Parse(JsonHelper.getDestValue(joRtn, "data"));
  677. joInpar.Add("payOrdId", JsonHelper.getDestValue(joSettl, "SettlementID"));//支付订单号
  678. joInpar.Add("appRefdSn", Utils.GetTradeNo());//应用退款流水号
  679. joInpar.Add("appRefdTime", JsonHelper.getDestValue(joInsuAdmObj, "appRefdTime"));//应用退费时间
  680. joInpar.Add("totlRefdAmt", JsonHelper.getDestValue(joSettl, "Sumamt"));//总退费金额
  681. joInpar.Add("psnAcctRefdAmt", JsonHelper.getDestValue(joSettl, "AccountPaySumamt"));//医保个人账户支付
  682. joInpar.Add("fundRefdAmt", JsonHelper.getDestValue(joSettl, "FundPaySumamt"));//基金支付
  683. joInpar.Add("cashRefdAmt", JsonHelper.getDestValue(joSettl, "PersonCashPay"));//现金退费金额
  684. joInpar.Add("ecToken", MPat.token);//电子凭证授权Token 前端传入
  685. joInpar.Add("refdType", "ALL");//退费类型 前端传入
  686. joInpar.Add("expData", "");//扩展数据 前端传入
  687. joInpar.Add("payAuthNo", MPat.payAuthNo);//支付授权码 前端传入
  688. //JObject joData = new JObject();
  689. //joData.Add("data", joInpar);
  690. outparam = joInpar.ToString();
  691. return 0;
  692. }
  693. catch (Exception ex)
  694. {
  695. outparam = "Get6203Inpar:" + ex.Message;
  696. return -1;
  697. }
  698. finally
  699. {
  700. Global.writeLog("Get6203Inpar", "", outparam);
  701. }
  702. }
  703. //获取入参,入参基本为类局部变量
  704. public int Get6301Inpar(out string outparam)
  705. {
  706. outparam = "";
  707. try
  708. {
  709. string errMsg;
  710. //查询登记信息
  711. if (mIS.queryRegisterInfo(4, out errMsg) != 0)
  712. {
  713. outparam = errMsg;
  714. return -1;
  715. }
  716. setPatientByMiRegInfo(JObject.Parse(errMsg));
  717. //获取其他入参
  718. JObject joInpar = new JObject();
  719. joInpar.Add("payOrdId", MPat.payOrdId);//待支付订单号
  720. joInpar.Add("payToken", MPat.payToken);//支付订单对应的token
  721. joInpar.Add("orgCodg", Global.inf.hospitalNO);//定点机构编码
  722. joInpar.Add("idNo", MPat.IDNO);//业务流水号 前端传入
  723. joInpar.Add("userName", MPat.name);
  724. joInpar.Add("idType", "01");
  725. joInpar.Add("expData", "");
  726. //JObject joData = new JObject();
  727. //joData.Add("data", joInpar);
  728. outparam = joInpar.ToString();
  729. return 0;
  730. }
  731. catch (Exception ex)
  732. {
  733. outparam = "Get6301Inpar:" + ex.Message;
  734. return -1;
  735. }
  736. finally
  737. {
  738. Global.writeLog("Get6301Inpar", "", outparam);
  739. }
  740. }
  741. public int Get6401Inpar(out string outparam)
  742. {
  743. string errMsg = "";
  744. outparam = "";
  745. try
  746. {
  747. JObject joInpar = new JObject();
  748. //获取医保平台结算信息
  749. if (QuerySettleInfo(out errMsg) != 0)
  750. {
  751. outparam = errMsg;
  752. return -1;
  753. }
  754. JObject joRtn = JObject.Parse(errMsg);
  755. JObject joSettl = JObject.Parse(JsonHelper.getDestValue(joRtn, "data"));
  756. //入参
  757. joInpar.Add("payOrdId", JsonHelper.getDestValue(joSettl, "SettlementID"));//支付订单号
  758. joInpar.Add("appRefdSn", JsonHelper.getDestValue(joSettl, ""));//应用退款流水号
  759. joInpar.Add("appRefdTime", JsonHelper.getDestValue(joSettl, ""));//应用退费时间
  760. joInpar.Add("totlRefdAmt", JsonHelper.getDestValue(joSettl, "Sumamt"));//总退费金额
  761. joInpar.Add("psnAcctRefdAmt", JsonHelper.getDestValue(joSettl, "AccountPaySumamt"));//医保个人账户支付
  762. joInpar.Add("fundRefdAmt", JsonHelper.getDestValue(joSettl, "FundPaySumamt"));//基金支付
  763. joInpar.Add("cashRefdAmt", JsonHelper.getDestValue(joInsuAdmObj, "PersonCashPay"));//现金退费金额
  764. joInpar.Add("ecToken", MPat.token);//电子凭证授权Token 前端传入
  765. joInpar.Add("refdType", "ALL");//退费类型 前端传入
  766. joInpar.Add("expData", "");//扩展数据 前端传入
  767. joInpar.Add("payAuthNo", MPat.payAuthNo);//支付授权码 前端传入
  768. //JObject joData = new JObject();
  769. //joData.Add("data", joInpar);
  770. outparam = joInpar.ToString();
  771. return 0;
  772. }
  773. catch (Exception ex)
  774. {
  775. outparam = "Get6203Inpar:" + ex.Message;
  776. return -1;
  777. }
  778. finally
  779. {
  780. Global.writeLog("Get6203Inpar", "", outparam);
  781. }
  782. }
  783. #endregion
  784. #region 诊断
  785. //获取诊断信息
  786. public int getDiagnoses(out string errMsg)
  787. {
  788. errMsg = "";
  789. try
  790. {
  791. //调用服务获取门诊诊断信息
  792. string outparam = "";
  793. if (hIS.getPatDiagnoses(MPat, out outparam) != 0)
  794. {
  795. return -1;
  796. }
  797. JObject joRtn = JObject.Parse(outparam);
  798. JObject joMdtrtInfo = JObject.Parse(JsonHelper.getDestValue(joRtn, "mdtrtinfo"));
  799. JArray jaDiagnoses = JArray.Parse(JsonHelper.getDestValue(joRtn, "diseinfo"));
  800. //组织门诊结算诊断入参
  801. JArray jaRow = new JArray();
  802. for (int i = 0; i < jaDiagnoses.Count; i++)
  803. {
  804. JObject joTmp = new JObject();
  805. joTmp.Add("diagType", jaDiagnoses[i]["diag_type"]);//
  806. joTmp.Add("diagSrtNo", jaDiagnoses[i]["diag_srt_no"]);//
  807. joTmp.Add("diagCode", jaDiagnoses[i]["diag_code"]);//
  808. joTmp.Add("diagName", jaDiagnoses[i]["diag_name"]);//
  809. joTmp.Add("diagDept", jaDiagnoses[i]["diag_dept"]);//
  810. joTmp.Add("diseDorNo", jaDiagnoses[i]["dise_dor_no"]);//
  811. joTmp.Add("diseDorName", jaDiagnoses[i]["dise_dor_name"]);//
  812. joTmp.Add("diagTime", jaDiagnoses[i]["diag_time"]);//
  813. joTmp.Add("valiFlag", "1");//
  814. jaRow.Add(joTmp);
  815. }
  816. JObject joDiagRow = new JObject();
  817. joDiagRow.Add("diseinfoList", jaRow);
  818. joDiagRow.Add("mdtrtinfo", joMdtrtInfo);
  819. outparam = joDiagRow.ToString();
  820. errMsg = outparam;
  821. return 0;
  822. }
  823. catch (Exception ex)
  824. {
  825. errMsg = "getDiagnoses:" + ex.Message;
  826. return -1;
  827. }
  828. }
  829. #endregion
  830. #region 费用
  831. private int GetFee(out string outparam)
  832. {
  833. string hisFee, chrgBchno = "";
  834. JObject jo = new JObject();
  835. JObject joRow = new JObject();
  836. JArray jaRow = new JArray();
  837. try
  838. {
  839. //获取HIS费用
  840. if (hIS.getHisFee(MPat, out hisFee) != 0)
  841. {
  842. outparam = hisFee;
  843. return -1;
  844. }
  845. JObject joFee = JObject.Parse(hisFee);
  846. //处理
  847. //调用医保平台转换HIS费用(转换医保编码等)
  848. JObject joHisFee = JObject.Parse(hisFee);
  849. if (mIS.convertHisFeeWithInsuCodeOfMobilePay(MPat, joHisFee, out outparam) != 0)
  850. {
  851. return -1;
  852. }
  853. JArray jaFeeDetail = JArray.Parse(JsonHelper.getDestValue(JObject.Parse(outparam), "data"));
  854. jaFee = (JArray)jaFeeDetail.DeepClone();
  855. decimal sumFee = 0;
  856. //转换
  857. for (int i = 0; i < jaFeeDetail.Count; i++)
  858. {
  859. decimal cnt = decimal.Parse(jaFeeDetail[i]["cnt"].ToString());
  860. decimal pric = decimal.Parse(jaFeeDetail[i]["pric"].ToString());
  861. decimal sumamt = decimal.Parse(jaFeeDetail[i]["det_item_fee_sumamt"].ToString());
  862. sumFee = sumFee + sumamt;
  863. JObject joTmp = new JObject();
  864. joTmp.Add("feedetlSn", jaFeeDetail[i]["feedetl_sn"]);//费用明细流水号
  865. //joTmp.Add("mdtrtId", Global.pat.mdtrtID);//医保就诊ID
  866. //joTmp.Add("psnNo", jaFeeDetail[i]["psnNo"]);//人员编号
  867. chrgBchno = jaFeeDetail[i]["chrg_bchno"].ToString();
  868. joTmp.Add("chrgBchno", jaFeeDetail[i]["chrg_bchno"]);//收费批次号
  869. joTmp.Add("diseCodg", "");//病种编码
  870. joTmp.Add("rxno", jaFeeDetail[i]["rxno"]);//处方号
  871. joTmp.Add("rxCircFlag", jaFeeDetail[i]["rx_circ_flag"]);//外购处方标志
  872. joTmp.Add("feeOcurTime", jaFeeDetail[i]["fee_ocur_time"]);//费用发生时间
  873. joTmp.Add("medListCodg", jaFeeDetail[i]["med_list_codg"]);//医疗目录编码
  874. joTmp.Add("medinsListCodg", jaFeeDetail[i]["medins_list_codg"]);//医药机构目录编码
  875. joTmp.Add("detItemFeeSumamt", sumamt.ToString("#0.00"));//明细项目费用总额
  876. joTmp.Add("cnt", cnt.ToString("#0.0000"));//数量
  877. joTmp.Add("pric", pric.ToString("#0.000000"));//单价
  878. joTmp.Add("sinDosDscr", jaFeeDetail[i]["sin_dos_dscr"]);//单次剂量描述
  879. joTmp.Add("usedFrquDscr", jaFeeDetail[i]["used_frqu_dscr"]);//使用频次描述
  880. joTmp.Add("prdDays", jaFeeDetail[i]["prd_days"]);//周期天数
  881. joTmp.Add("medcWayDscr", jaFeeDetail[i]["medc_way_dscr"]);//用药途径描述
  882. joTmp.Add("bilgDeptCodg", jaFeeDetail[i]["bilg_dept_codg"]);//开单科室编码
  883. joTmp.Add("bilgDeptName", jaFeeDetail[i]["bilg_dept_name"]);//开单科室名称
  884. joTmp.Add("bilgDrCodg", jaFeeDetail[i]["bilg_dr_codg"]);//开单医生编码
  885. joTmp.Add("bilgDrName", jaFeeDetail[i]["bilg_dr_name"]);//开单医师姓名
  886. joTmp.Add("acordDeptCodg", jaFeeDetail[i]["acord_dept_codg"]);//受单科室编码
  887. joTmp.Add("acordDeptName", jaFeeDetail[i]["acord_dept_name"]);//受单科室名称
  888. joTmp.Add("ordersDrCode", jaFeeDetail[i]["orders_dr_code"]);//受单医生编码
  889. joTmp.Add("ordersDrName", jaFeeDetail[i]["orders_dr_name"]);//受单医生姓名
  890. joTmp.Add("hospApprFlag", jaFeeDetail[i]["hosp_appr_flag"]);//医院审批标志
  891. joTmp.Add("tcmdrugUsedWay", jaFeeDetail[i]["tcmdrug_used_way"]);//中药使用方式
  892. joTmp.Add("etipFlag", jaFeeDetail[i]["etip_flag"]);//外检标志
  893. joTmp.Add("etipHospCode", jaFeeDetail[i]["etip_hosp_code"]);//外检医院编码
  894. joTmp.Add("dscgTkdrugFlag", jaFeeDetail[i]["dscg_tkdrug_flag"]);//出院带药标志
  895. joTmp.Add("matnFeeFlag", jaFeeDetail[i]["matn_fee_flag"]);//生育费用标志
  896. joTmp.Add("initFeedetlSn", jaFeeDetail[i]["init_feedetl_sn"]);//原费用流水号
  897. joTmp.Add("drordNo", jaFeeDetail[i]["drord_no"]);//医嘱号
  898. joTmp.Add("medType", jaFeeDetail[i]["med_type"]);//医疗类别
  899. joTmp.Add("memo", "");//备注
  900. joTmp.Add("expContent", jaFeeDetail[i]["expContent"]);//扩展字段
  901. joTmp.Add("medListName", jaFeeDetail[i]["medins_list_name"]);//医疗目录名称
  902. joTmp.Add("medListSpc", jaFeeDetail[i]["med_list_spc"]);//医疗目录规格
  903. joTmp.Add("combNo", jaFeeDetail[i]["comb_no"]);//组套编号
  904. jaRow.Add(joTmp);
  905. }
  906. jo.Add("medfeeSumamt", sumFee.ToString("#0.00"));
  907. jo.Add("chrgBchno", chrgBchno);
  908. jo.Add("feedetailList", jaRow);
  909. outparam = jo.ToString();
  910. return 0;
  911. }
  912. catch (Exception ex)
  913. {
  914. outparam = "获取费用异常:" + ex.Message;
  915. Global.writeLog("GetFee", jo.ToString(), "获取费用异常:" + ex.Message);
  916. return -1;
  917. }
  918. }
  919. /// <summary>
  920. /// 汇总医保返回的结算金额(按照HIS的原则汇总,后期HIS按照这个来进行勾稽关系判断)
  921. /// </summary>
  922. /// <param name="jo"></param>
  923. /// <returns></returns>
  924. public int sumInsuRtnSettlInfo(JObject jo, out JObject joSumFee, out string errMsg)
  925. {
  926. // 医疗费总额是患者在医药机构花费的所有诊疗、药品、耗材、服务设施等项目费用的总和 = 基金支付总额 + 个人负担总金额 + 其他(如医院负担金额);
  927. //3、基金支付总额 = 基本医保统筹基金支出(含职工基本医疗保险、居民基本医疗保险)+补充医疗保险基金支出 (含覆盖全体参保人的居民大病保险和大额医疗费用补助、覆盖部分参保人的企业职工大额医疗费用补助和公务员医疗补助等)+医疗救助基金支出 + 其他支出(如伤残人员医疗保障基金支出);
  928. //5、个人账户支出中包含账户共济支付金额
  929. joSumFee = new JObject();
  930. errMsg = "";
  931. decimal ybAmt, psnAcctAmt, hospAmt, psnCashAmt, medFee;
  932. try
  933. {
  934. ybAmt = 0; psnAcctAmt = 0; hospAmt = 0; psnCashAmt = 0; medFee = 0;
  935. ybAmt = MSettl.fundPaySumamt;
  936. psnAcctAmt = MSettl.accountPaySumamt;
  937. psnCashAmt = MSettl.personCashPay;
  938. hospAmt = MSettl.hospitalPartAmount;
  939. medFee = MSettl.sumamt;
  940. joSumFee.Add("sumamt", medFee);
  941. joSumFee.Add("ybAmt", ybAmt);
  942. joSumFee.Add("psnAcctAmt", psnAcctAmt);
  943. joSumFee.Add("hospAmt", hospAmt);
  944. joSumFee.Add("psnCashAmt", psnCashAmt);
  945. if (medFee != (ybAmt + psnAcctAmt + psnCashAmt + hospAmt))
  946. {
  947. errMsg = "ybAmt(" + ybAmt.ToString() + ")+" + "psnAcctAmt(" + psnAcctAmt.ToString() + ")+" + "psnCashAmt(" + psnCashAmt.ToString() + ")+" + "hospAmt(" + hospAmt.ToString() + ")" + "!=medFee(" + medFee.ToString() + ")";
  948. return -1;
  949. }
  950. return 0;
  951. }
  952. catch (Exception ex)
  953. {
  954. errMsg = ex.Message;
  955. return 1;
  956. }
  957. }
  958. /// <summary>
  959. /// 获取结算费用的封装
  960. /// </summary>
  961. /// <param name="jo"></param>
  962. /// <param name="path"></param>
  963. /// <returns></returns>
  964. private decimal getDecimalFee(JObject jo, string path)
  965. {
  966. try
  967. {
  968. string temp = JsonHelper.getDestValue(jo, path);
  969. if (temp == "")
  970. {
  971. return 0;
  972. }
  973. else
  974. {
  975. return decimal.Parse(temp);
  976. }
  977. }
  978. catch (Exception ex)
  979. {
  980. Global.writeLog("getFee异常:" + ex.Message);
  981. return 0;
  982. }
  983. }
  984. #endregion
  985. #region 结算
  986. /// <summary>
  987. /// 返回移动支付结算信息给HIS
  988. /// </summary>
  989. /// <param name="joSetlInpar"></param>
  990. /// <param name="joSetlinfo"></param>中心返回的信息
  991. /// <param name="outParam"></param>
  992. /// <returns></returns>
  993. public int returnMPSettlementInfo(JObject joReg, JObject joSettl, out string outParam)
  994. {
  995. string errMsg;
  996. try
  997. {
  998. JObject joSumFee = new JObject();
  999. if (sumInsuRtnSettlInfo(joSettl, out joSumFee, out errMsg) != 0)
  1000. {
  1001. outParam = "返回结算结果给HIS失败,请联系管理员!" + errMsg;
  1002. return -1;
  1003. }
  1004. dynamic joTmp = new JObject();
  1005. joTmp.settleInfo = joSettl;
  1006. joTmp.updateUserID = Global.user.ID;
  1007. joTmp.regInfo = joReg;
  1008. joTmp.middleSettleFlag = "";
  1009. joTmp.interfaceDr = Global.inf.interfaceDr;
  1010. dynamic joHisInfo = new JObject();
  1011. joHisInfo.admID = MPat.adm_Dr;
  1012. joHisInfo.billID = MPat.billID;
  1013. joHisInfo.recordID = MPat.recordID;
  1014. joTmp.hisInfo = joHisInfo;
  1015. joTmp.psn_type = MPat.psn_type;
  1016. joTmp.mobilePayFlag = "Y";
  1017. joTmp.sumFeeObj = joSumFee;
  1018. joTmp.mdtrtinfo = MPat.mdtrtID;
  1019. JObject joRtn = invoker.invokeHISService(JsonHelper.setIrisInpar("05110018", joTmp).ToString(), "返回移动支付结算结果给HIS");
  1020. if (JsonHelper.parseIrisRtnValue(joRtn, out errMsg) != 0)
  1021. {
  1022. outParam = "返回移动支付结算结果给HIS失败,请联系管理员!" + errMsg;
  1023. return -1;
  1024. }
  1025. else
  1026. {
  1027. joSumFee.Add("payAuthNo", MPat.payAuthNo);
  1028. joSumFee.Add("payOrdId", MPat.payOrdId);
  1029. joSumFee.Add("setlLatlnt", MPat.uldLatlnt);
  1030. joSumFee.Add("org_no", Global.inf.hospitalNO);
  1031. joSumFee.Add("medOrgOrd", MPat.recordID);
  1032. joSumFee.Add("mdtrtId", MPat.mdtrtID);
  1033. joSumFee.Add("gmt_out_create", MSettl.settlTime.ToString("yyyy-MM-dd HH:mm:ss"));
  1034. joRtn["result"] = joSumFee;
  1035. outParam = joRtn.ToString();
  1036. return 0;
  1037. }
  1038. }
  1039. catch (Exception ex)
  1040. {
  1041. outParam = "返回移动支付结算结果给HIS出现异常:!" + ex.Message;
  1042. return -1;
  1043. }
  1044. }
  1045. //查询结算信息
  1046. public int QuerySettleInfo(out string errMsg)
  1047. {
  1048. errMsg = "";
  1049. try
  1050. {
  1051. string sqlStr = "SELECT * FROM BS_MedInsuSettlement WHERE Hospital_Dr= " + Global.inf.hospitalDr;
  1052. sqlStr = sqlStr + " and AdmType = 3 and Adm_Dr= " + MPat.adm_Dr + " and SettlementID= '" + MPat.payOrdId + "'";
  1053. JObject joSqlstr = new JObject();
  1054. joSqlstr.Add("sqlStr", sqlStr);
  1055. JObject joRtn = mIS.DynamicQuerySettlInfo(joSqlstr);
  1056. if (JsonHelper.parseIrisRtnValue(joRtn, out errMsg) != 0)
  1057. {
  1058. return -1;
  1059. }
  1060. else
  1061. {
  1062. errMsg = joRtn.ToString();
  1063. return 0;
  1064. }
  1065. }
  1066. catch (Exception ex)
  1067. {
  1068. errMsg = ex.Message;
  1069. return -1;
  1070. }
  1071. }
  1072. #endregion
  1073. #region 存入MI
  1074. /// <summary>
  1075. /// 插入患者该次就诊参保信息
  1076. /// </summary>
  1077. /// <param name="joBaseInfo"></param>
  1078. /// <param name="joInsuInfo"></param>
  1079. /// <param name="joIdetInfo"></param>
  1080. /// <param name="outParam"></param>
  1081. /// <returns></returns>
  1082. private int insertPatCurInsuInfo(out string outParam)
  1083. {
  1084. JObject joTmp = new JObject();
  1085. string errMsg = "";
  1086. try
  1087. {
  1088. joTmp.Add("HospitalDr", Global.inf.hospitalDr);
  1089. joTmp.Add("InterfaceDr", Global.inf.interfaceDr);
  1090. joTmp.Add("AdmID", MPat.adm_Dr);
  1091. joTmp.Add("PatientName", MPat.name);
  1092. joTmp.Add("PersonalNO", MPat.psn_no);
  1093. joTmp.Add("MdtrtID", MPat.mdtrtID);
  1094. joTmp.Add("PsnCertType", "");
  1095. joTmp.Add("PsnCertNO", MPat.certNO);
  1096. joTmp.Add("Gend", MPat.gend);
  1097. joTmp.Add("Naty", "");
  1098. joTmp.Add("Brdy", MPat.brdy);
  1099. joTmp.Add("Age", MPat.age);
  1100. joTmp.Add("Balc", MPat.balc);
  1101. joTmp.Add("Insutype", MPat.insuType);
  1102. joTmp.Add("PsnType", MPat.psn_type);
  1103. joTmp.Add("PsnInsuStas", "");
  1104. joTmp.Add("PsnInsuDate", "");
  1105. joTmp.Add("PausInsuDate", "");
  1106. joTmp.Add("Cvlservflag", "");
  1107. joTmp.Add("insuplcAdmdvs", MPat.insuplc_admdvs);
  1108. joTmp.Add("EmpName", MPat.emp_name);
  1109. joTmp.Add("PsnIdettype", "");
  1110. joTmp.Add("PsnTypeLv", "");
  1111. joTmp.Add("IdetBegntime", "");
  1112. joTmp.Add("IdetEndtime", "");
  1113. if (string.IsNullOrEmpty(Global.user.ID)) Global.user.ID = "0";
  1114. joTmp.Add("updateUserID", Global.user.ID);
  1115. string serviceCode = "09010070";
  1116. string inpar = JsonHelper.setIrisInpar(serviceCode, joTmp).ToString();
  1117. JObject joRtn = invoker.invokeInsuService(inpar, "插入患者该次就诊参保信息");
  1118. if (JsonHelper.parseIrisRtnValue(joRtn, out errMsg) != 0)
  1119. {
  1120. outParam = errMsg;
  1121. return -1;
  1122. }
  1123. else
  1124. {
  1125. outParam = joRtn.ToString();
  1126. return 0;
  1127. }
  1128. }
  1129. catch (Exception ex)
  1130. {
  1131. outParam = "医保平台插入患者该次就诊参保信息:" + ex.Message;
  1132. return -1;
  1133. }
  1134. }
  1135. /// <summary>
  1136. /// 插入登记信息
  1137. /// </summary>
  1138. /// <param name="joInpar"></param> 48交易入参
  1139. /// <param name="joOutpar"></param>48交易出参
  1140. /// <param name="outParam"></param>
  1141. /// <returns></returns>
  1142. private int saveRegisterInfo(out string outParam)
  1143. {
  1144. //插入云医保平台
  1145. JObject joTmp = new JObject();
  1146. string errMsg = "";
  1147. try
  1148. {
  1149. joTmp.Add("HospitalDr", Global.inf.hospitalDr);
  1150. joTmp.Add("InterfaceDr", Global.inf.interfaceDr);
  1151. joTmp.Add("AdmDr", MPat.adm_Dr);
  1152. joTmp.Add("PatientName", MPat.name);
  1153. joTmp.Add("PersonalNO", MPat.psn_no);
  1154. joTmp.Add("InsuRegID", MPat.mdtrtID);
  1155. joTmp.Add("RegDate", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  1156. joTmp.Add("InsuType", MPat.insuType);
  1157. joTmp.Add("CertificateType", MPat.certType);
  1158. joTmp.Add("CertificateNO", MPat.certNO);
  1159. joTmp.Add("MedicalType", MPat.medType);
  1160. joTmp.Add("AttendDoctorNO", MPat.admAttendDoctorNO);
  1161. joTmp.Add("ChiefPhyDocName", "");
  1162. joTmp.Add("AdmInDiagDesc", "");
  1163. joTmp.Add("AdmInDepCode", MPat.AdmInDepCode);
  1164. joTmp.Add("AdmInDepName", "");
  1165. joTmp.Add("AdmBed", "");
  1166. joTmp.Add("MainDiagCode", MPat.admDiagCode);
  1167. joTmp.Add("MainDiagName", MPat.admDiagName);
  1168. joTmp.Add("MainConditionDesc", "");
  1169. joTmp.Add("DiseasecCode", "");
  1170. joTmp.Add("DiseasecName", "");
  1171. joTmp.Add("OperationCode", "");
  1172. joTmp.Add("OperationName", "");
  1173. joTmp.Add("DiseasecTypeCode", "");
  1174. joTmp.Add("InsuranceAreaCode", MPat.insuplc_admdvs);
  1175. joTmp.Add("TreatmentAreaCode", Global.inf.areaCode);
  1176. joTmp.Add("payOrdId", MPat.payOrdId);
  1177. joTmp.Add("payToken", MPat.payToken);
  1178. joTmp.Add("RegState", "1");
  1179. joTmp.Add("ValidFlag", "1");
  1180. joTmp.Add("Type", "4");//线上支付门诊
  1181. joTmp.Add("updateUserID", Global.user.ID);
  1182. joTmp.Add("msgid", Global.curEvt.msgid);
  1183. joTmp.Add("OccurTime", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  1184. string serviceCode = "09010044";
  1185. string inpar = JsonHelper.setIrisInpar(serviceCode, joTmp).ToString();
  1186. JObject joRtn = invoker.invokeInsuService(inpar, "新增门诊登记信息");
  1187. if (JsonHelper.parseIrisRtnValue(joRtn, out errMsg) != 0)
  1188. {
  1189. outParam = joRtn.ToString();
  1190. return -1;
  1191. }
  1192. else
  1193. {
  1194. outParam = joRtn.ToString();
  1195. return 0;
  1196. }
  1197. }
  1198. catch (Exception ex)
  1199. {
  1200. outParam = "保存门诊登记信息异常:" + ex.Message;
  1201. return -1;
  1202. }
  1203. }
  1204. /// <summary>
  1205. /// 插入结算信息
  1206. /// </summary>
  1207. /// <param name="joSettlement"></param>
  1208. /// <param name="outParam"></param>
  1209. /// <returns></returns>
  1210. public int saveSettlement(out string outParam)
  1211. {
  1212. JObject joTmp = new JObject();
  1213. string errMsg = "";
  1214. try
  1215. {
  1216. JObject joSetlinfo = new JObject();
  1217. joSetlinfo.Add("HospitalDr", Global.inf.hospitalDr);
  1218. joSetlinfo.Add("admID", MPat.adm_Dr);
  1219. joSetlinfo.Add("mdtrt_id", MPat.mdtrtID);
  1220. joSetlinfo.Add("setl_id", MSettl.settlID);//
  1221. joSetlinfo.Add("psn_no", MPat.psn_no);
  1222. joSetlinfo.Add("psn_name", MPat.name);
  1223. //joSetlinfo.Add("mdtrt_cert_type", JsonHelper.getDestValue(joRtnSetlinfo, "mdtrt_cert_type"));
  1224. joSetlinfo.Add("certno", MPat.certNO);
  1225. joSetlinfo.Add("gend", MPat.gend);
  1226. joSetlinfo.Add("naty", MPat.naty);
  1227. joSetlinfo.Add("brdy", MPat.brdy);
  1228. joSetlinfo.Add("age", MPat.age);
  1229. joSetlinfo.Add("insutype", MPat.insuType);
  1230. joSetlinfo.Add("psn_type", MPat.psn_type);
  1231. joSetlinfo.Add("cvlserv_flag", "");
  1232. joSetlinfo.Add("setl_time", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  1233. joSetlinfo.Add("mdtrt_cert_type", MPat.mdtrtcertType);
  1234. joSetlinfo.Add("med_type", MPat.medType);
  1235. joSetlinfo.Add("medfee_sumamt", MSettl.sumamt);//总费用
  1236. joSetlinfo.Add("fulamt_ownpay_amt", MSettl.fundPaySumamt);//全自费金额
  1237. joSetlinfo.Add("overlmt_selfpay", MSettl.overLimitAmountmt);//超限价自费费用
  1238. joSetlinfo.Add("preselfpay_amt", MSettl.preSelfPayAmount);//先行自付金额
  1239. joSetlinfo.Add("inscp_scp_amt", MSettl.inPolicyRangeAmount);//符合政策范围金额
  1240. joSetlinfo.Add("act_pay_dedc", MSettl.actualPayDeductible);//实际支付起付线
  1241. joSetlinfo.Add("hifp_pay", MSettl.healthInsurancePay);//基本医疗保险统筹基金支出
  1242. joSetlinfo.Add("pool_prop_selfpay", MSettl.healthInsuranceRatio);//基本医疗保险统筹基金支付比例
  1243. joSetlinfo.Add("cvlserv_pay", MSettl.civilserviceAllowancePay);//公务员医疗补助资金支出
  1244. joSetlinfo.Add("hifes_pay", MSettl.enterpriseSupplementPay);//企业支付 占用 大病报销金额
  1245. joSetlinfo.Add("hifmi_pay", MSettl.seriousIllnessPay);// 居民大病保险资金支出
  1246. joSetlinfo.Add("hifob_pay", MSettl.largeExpensesSupplementPay);//职工大额医疗费用补助基金支出
  1247. joSetlinfo.Add("maf_pay", MSettl.medicalAssistPay);//医疗救助基金支出
  1248. joSetlinfo.Add("hosp_part_amt", MSettl.hospitalPartAmount);//医院负担金额
  1249. joSetlinfo.Add("oth_pay", MSettl.otherPay);//其他支出
  1250. joSetlinfo.Add("fund_pay_sumamt", MSettl.fundPaySumamt);//基金支付总额
  1251. joSetlinfo.Add("psn_part_amt", MSettl.personPaySumamt);//个人负担总金额
  1252. joSetlinfo.Add("acct_pay", MSettl.accountMutualAidAmount);//个人账户支出
  1253. joSetlinfo.Add("psn_cash_pay", MSettl.personCashPay);//个人现金支出
  1254. joSetlinfo.Add("balc", MSettl.balance);// 余额
  1255. joSetlinfo.Add("acct_mulaid_pay", "");//个人账户共济支付金额
  1256. joSetlinfo.Add("medins_setl_id", "");//医药机构结算ID
  1257. joSetlinfo.Add("clr_optins", MSettl.clearingOrgan);//清算经办机构
  1258. joSetlinfo.Add("clr_way", MSettl.clearingWay);//清算方式
  1259. joSetlinfo.Add("clr_type", MSettl.clearingType);//清算类别
  1260. joSetlinfo.Add("ValidFlag", 1);
  1261. joSetlinfo.Add("BillType", 1);
  1262. joSetlinfo.Add("ConfirmFlag", MSettl.confirmFlag);
  1263. joSetlinfo.Add("msgid", Global.curEvt.msgid);
  1264. joSetlinfo.Add("admType", "3");
  1265. joSetlinfo.Add("billID", MPat.billID);
  1266. joSetlinfo.Add("recordID", MPat.recordID);
  1267. joSetlinfo.Add("interfaceDr", Global.inf.interfaceDr);
  1268. joSetlinfo.Add("insuplc_admdvs", MPat.insuplc_admdvs);
  1269. joSetlinfo.Add("OccurTime", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  1270. joSetlinfo.Add("HospitalizationsDays", MSettl.hospitalizationsDays);
  1271. joSetlinfo.Add("HospitalizationsTimes", MSettl.hospitalizationsTimes);
  1272. joSetlinfo.Add("HISAdmTime", MSettl.hisAdmTime);
  1273. joSetlinfo.Add("HISDischargeTime", MSettl.hisDischargeTime);
  1274. joSetlinfo.Add("updateUserID", Global.user.ID);
  1275. JObject joRtn = invoker.invokeInsuService(JsonHelper.setIrisInpar("09010051", joSetlinfo).ToString(), "插入结算信息");
  1276. if (JsonHelper.parseIrisRtnValue(joRtn, out errMsg) != 0)
  1277. {
  1278. outParam = errMsg;
  1279. return -1;
  1280. }
  1281. else
  1282. {
  1283. outParam = joSetlinfo.ToString();
  1284. return 0;
  1285. }
  1286. }
  1287. catch (Exception ex)
  1288. {
  1289. outParam = "插入结算信息:" + ex.Message;
  1290. return -1;
  1291. }
  1292. }
  1293. public int updateSettlement(out string outParam)
  1294. {
  1295. JObject joTmp = new JObject();
  1296. string errMsg = "";
  1297. try
  1298. {
  1299. JObject joSetlinfo = new JObject();
  1300. joSetlinfo.Add("HospitalDr", Global.inf.hospitalDr);
  1301. joSetlinfo.Add("AdmDr", MPat.adm_Dr);
  1302. joSetlinfo.Add("MdtrtID", MPat.mdtrtID);
  1303. joSetlinfo.Add("SettlementID", MSettl.settlID);//
  1304. joSetlinfo.Add("PersonnelNO", MPat.psn_no);
  1305. joSetlinfo.Add("PatientName", MPat.name);
  1306. //joSetlinfo.Add("CertificateType", JsonHelper.getDestValue(joRtnSetlinfo, "mdtrt_cert_type"));
  1307. joSetlinfo.Add("CertificateNO", MPat.certNO);
  1308. joSetlinfo.Add("Gender", MPat.gend);
  1309. joSetlinfo.Add("Nation", MPat.naty);
  1310. joSetlinfo.Add("BirthDay", MPat.brdy);
  1311. joSetlinfo.Add("Age", MPat.age);
  1312. joSetlinfo.Add("InsuranceType", MPat.insuType);
  1313. joSetlinfo.Add("PersonType", MPat.psn_type);
  1314. joSetlinfo.Add("CivilserviceFlag", "");
  1315. joSetlinfo.Add("SettlementDateTime", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  1316. joSetlinfo.Add("MdtrtCertType", MPat.mdtrtcertType);
  1317. joSetlinfo.Add("MedicalType", MPat.medType);
  1318. joSetlinfo.Add("Sumamt", MSettl.sumamt);//总费用
  1319. joSetlinfo.Add("OwnPayAmount", MSettl.fundPaySumamt);//全自费金额
  1320. joSetlinfo.Add("OverLimitAmount", MSettl.overLimitAmountmt);//超限价自费费用
  1321. joSetlinfo.Add("PreSelfPayAmount", MSettl.preSelfPayAmount);//先行自付金额
  1322. joSetlinfo.Add("InPolicyRangeAmount", MSettl.inPolicyRangeAmount);//符合政策范围金额
  1323. joSetlinfo.Add("ActualPayDeductible", MSettl.actualPayDeductible);//实际支付起付线
  1324. joSetlinfo.Add("HealthInsurancePay", MSettl.healthInsurancePay);//基本医疗保险统筹基金支出
  1325. joSetlinfo.Add("HealthInsuranceRatio", MSettl.healthInsuranceRatio);//基本医疗保险统筹基金支付比例
  1326. joSetlinfo.Add("CivilserviceAllowancePay", MSettl.civilserviceAllowancePay);//公务员医疗补助资金支出
  1327. joSetlinfo.Add("EnterpriseSupplementPay", MSettl.enterpriseSupplementPay);//企业支付
  1328. joSetlinfo.Add("SeriousIllnessPay", MSettl.seriousIllnessPay);// 居民大病保险资金支出
  1329. joSetlinfo.Add("LargeExpensesSupplementPay", MSettl.largeExpensesSupplementPay);//职工大额医疗费用补助基金支出
  1330. joSetlinfo.Add("MedicalAssistPay", MSettl.medicalAssistPay);//医疗救助基金支出
  1331. joSetlinfo.Add("HospitalPartAmount", MSettl.hospitalPartAmount);//医院负担金额
  1332. joSetlinfo.Add("OtherPay", MSettl.otherPay);//其他支出
  1333. joSetlinfo.Add("FundPaySumamt", MSettl.fundPaySumamt);//基金支付总额
  1334. joSetlinfo.Add("PersonPaySumamt", MSettl.personPaySumamt);//个人负担总金额
  1335. joSetlinfo.Add("AccountPaySumamt",MSettl.accountPaySumamt);//个人账户支出
  1336. joSetlinfo.Add("PersonCashPay", MSettl.personCashPay);//个人现金支出
  1337. joSetlinfo.Add("Balance", MSettl.balance);// 余额
  1338. joSetlinfo.Add("AccountMutualAidAmount", MSettl.accountMutualAidAmount);//个人账户共济支付金额
  1339. joSetlinfo.Add("OrganSettlementID", "");//医药机构结算ID
  1340. joSetlinfo.Add("ClearingOrgan", MSettl.clearingOrgan);//清算经办机构
  1341. joSetlinfo.Add("ClearingWay", MSettl.clearingWay);//清算方式
  1342. joSetlinfo.Add("ClearingType", MSettl.clearingType);//清算类别
  1343. joSetlinfo.Add("ValidFlag", 1);
  1344. joSetlinfo.Add("BillType", 1);
  1345. joSetlinfo.Add("ConfirmFlag", MSettl.confirmFlag);
  1346. joSetlinfo.Add("MSGID", Global.curEvt.msgid);
  1347. joSetlinfo.Add("AdmType", "3");
  1348. joSetlinfo.Add("BillID", MPat.billID);
  1349. joSetlinfo.Add("RecordID", MPat.recordID);
  1350. joSetlinfo.Add("InterfaceDr", Global.inf.interfaceDr);
  1351. joSetlinfo.Add("InsuranceAreaCode", MPat.insuplc_admdvs);
  1352. joSetlinfo.Add("OccurTime", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  1353. joSetlinfo.Add("HospitalizationsDays", MSettl.hospitalizationsDays);
  1354. joSetlinfo.Add("HospitalizationsTimes", MSettl.hospitalizationsTimes);
  1355. joSetlinfo.Add("HISAdmTime", MSettl.hisAdmTime);
  1356. joSetlinfo.Add("HISDischargeTime", MSettl.hisDischargeTime);
  1357. joSetlinfo.Add("updateUserID", Global.user.ID);
  1358. JObject joRtn = invoker.invokeInsuService(JsonHelper.setIrisInpar("09010080", joSetlinfo).ToString(), "更新结算信息");
  1359. if (JsonHelper.parseIrisRtnValue(joRtn, out errMsg) != 0)
  1360. {
  1361. outParam = errMsg;
  1362. return -1;
  1363. }
  1364. else
  1365. {
  1366. outParam = joSetlinfo.ToString();
  1367. return 0;
  1368. }
  1369. }
  1370. catch (Exception ex)
  1371. {
  1372. outParam = "插入结算信息:" + ex.Message;
  1373. return -1;
  1374. }
  1375. }
  1376. /// <summary>
  1377. /// 取消结算
  1378. /// </summary>
  1379. /// <param name="outParam"></param>
  1380. /// <returns></returns>
  1381. public int cancleSettlement(string newSettlID, out string outParam)
  1382. {
  1383. JObject joTmp = new JObject();
  1384. string errMsg = "";
  1385. try
  1386. {
  1387. joTmp.Add("HospitalDr", Global.inf.hospitalDr);
  1388. joTmp.Add("InterfaceDr", Global.inf.interfaceDr);
  1389. joTmp.Add("admID", MPat.adm_Dr);
  1390. joTmp.Add("mdtrt_id", MPat.mdtrtID);
  1391. joTmp.Add("setl_id", MPat.settlID);
  1392. joTmp.Add("new_setl_id", newSettlID);
  1393. joTmp.Add("updateUserID", Global.user.ID);
  1394. joTmp.Add("msgid", Global.curEvt.msgid);
  1395. joTmp.Add("OccurTime", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  1396. JObject joRtn = invoker.invokeInsuService(JsonHelper.setIrisInpar("09010052", joTmp).ToString(), "取消结算信息");
  1397. if (JsonHelper.parseIrisRtnValue(joRtn, out errMsg) != 0)
  1398. {
  1399. outParam = errMsg;
  1400. return -1;
  1401. }
  1402. else
  1403. {
  1404. outParam = JsonHelper.setExceptionJson(0, "云医保平台", "取消结算成功").ToString();
  1405. return 0;
  1406. }
  1407. }
  1408. catch (Exception ex)
  1409. {
  1410. outParam = "取消结算信息:" + ex.Message;
  1411. return -1;
  1412. }
  1413. }
  1414. /// <summary>
  1415. /// 插入医保费用
  1416. /// </summary>
  1417. /// <param name="jaTmp"></param>
  1418. /// <param name="outParam"></param>
  1419. /// <returns></returns>
  1420. public int insertFee(JArray jaTmp, out string outParam)
  1421. {
  1422. try
  1423. {
  1424. outParam = "";
  1425. string errMsg;
  1426. dynamic joTmp = new JObject();
  1427. joTmp = new JObject();
  1428. joTmp.code = "09010046";
  1429. joTmp.HospitalDr = Global.inf.hospitalDr;
  1430. joTmp.admID = MPat.adm_Dr;
  1431. joTmp.mdtrt_id = MPat.mdtrtID;
  1432. joTmp.updateUserID = Global.user.ID;
  1433. joTmp.Add("params", jaTmp);
  1434. ;
  1435. JObject joRtn = invoker.invokeInsuService(joTmp.ToString(), "插入2301明细");
  1436. if (JsonHelper.parseIrisRtnValue(joRtn, out errMsg) != 0)
  1437. {
  1438. outParam = errMsg;
  1439. return -1;
  1440. }
  1441. else
  1442. {
  1443. outParam = joRtn.ToString();
  1444. return 0;
  1445. }
  1446. }
  1447. catch (Exception ex)
  1448. {
  1449. outParam = "insertFee 异常:" + ex.Message;
  1450. return -1;
  1451. }
  1452. }
  1453. private int saveToMi(out string errMsg)
  1454. {
  1455. errMsg = "";
  1456. try
  1457. {
  1458. //存储参保信息
  1459. if (insertPatCurInsuInfo(out errMsg) != 0)
  1460. {
  1461. return -1;
  1462. }
  1463. //存储登记信息
  1464. if (saveRegisterInfo(out errMsg) != 0)
  1465. {
  1466. return -1;
  1467. }
  1468. //处理jaFee
  1469. foreach (var jo in jaFee)
  1470. {
  1471. jo["mdtrt_id"] = MPat.mdtrtID;
  1472. jo["psn_no"] = MPat.psn_no;
  1473. }
  1474. //存储费用信息
  1475. if (insertFee(jaFee, out errMsg) != 0)
  1476. {
  1477. return -1;
  1478. }
  1479. return 0;
  1480. }
  1481. catch (Exception ex)
  1482. {
  1483. errMsg = "saveToMi:" + ex.Message;
  1484. return -1;
  1485. }
  1486. }
  1487. #endregion
  1488. #region 解析中心返回
  1489. /// <summary>
  1490. /// 解析银海移动支付返参
  1491. /// </summary>
  1492. /// <param name="joRtn"></param>
  1493. /// <param name="errorMsg"></param>
  1494. /// <returns></returns>
  1495. public int ParseCenterRtnValue(JObject joRtn, out string errorMsg)
  1496. {
  1497. try
  1498. {
  1499. errorMsg = JsonHelper.getDestValue(joRtn, "message");
  1500. return int.Parse(JsonHelper.getDestValue(joRtn, "code")); //0 成功-1 失败
  1501. }
  1502. catch (Exception ex)
  1503. {
  1504. errorMsg = "解析银海移动支付返参发生异常:" + ex.Message;
  1505. return -1;
  1506. }
  1507. }
  1508. #endregion
  1509. }
  1510. }