InpatientRegistration.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. using Newtonsoft.Json;
  2. using Newtonsoft.Json.Linq;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Data;
  7. using System.Drawing;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. using System.Windows.Forms;
  12. using PTMedicalInsurance.Common;
  13. using PTMedicalInsurance.Helper;
  14. using PTMedicalInsurance.Variables;
  15. namespace PTMedicalInsurance.Forms
  16. {
  17. public partial class InpatientRegistration : Form
  18. {
  19. public InpatientRegistration()
  20. {
  21. InitializeComponent();
  22. this.StartPosition = FormStartPosition.CenterParent;
  23. Global.pat.medType = string.IsNullOrEmpty(Global.pat.medType) ? "21": Global.pat.medType; //默认医疗
  24. if (Global.pat.RYorCY == "2")
  25. {
  26. string sqlCondition = " and A.Interface_Dr = '" + Global.inf.interfaceDr.ToString() + "'";
  27. string sqlStr = " SELECT B.Code,B.Descripts AS Name FROM HB_Dictionary A JOIN HB_DictionaryDataDetail B ON A.ID = B.HBDictionary_Dr "
  28. + " WHERE B.Code='" + Global.pat.insuType + "' and A.InsuCode = 'insutype'" + sqlCondition;
  29. SetDBLKCombox(ref dblkcbxInsuranceType, sqlStr);
  30. sqlStr = "select A.Code, A.Name FROM HB_MedInsuDirectory A where A.ValidFlag='1' And A.HisType=7" + sqlCondition;
  31. //// 如果登记选择了,则直接用登记的病种
  32. //if(!string.IsNullOrEmpty(Global.pat.DiseasecCode))
  33. //{
  34. // sqlStr += " and A.Code='" + Global.pat.DiseasecCode + "' ";
  35. //}
  36. SetDBLKCombox(ref dblkcbxDisease, sqlStr);
  37. sqlStr = " SELECT B.Code,B.Descripts AS Name FROM HB_Dictionary A JOIN HB_DictionaryDataDetail B ON A.ID = B.HBDictionary_Dr"
  38. + " WHERE B.Code='" + Global.pat.medType + "' and A.InsuCode = 'med_type'" + sqlCondition;
  39. SetDBLKCombox(ref dblkcbxMedicalType, sqlStr);
  40. sqlStr = "SELECT B.Code,B.Descripts AS Name FROM HB_Dictionary A JOIN HB_DictionaryDataDetail B ON A.ID = B.HBDictionary_Dr WHERE A.InsuCode = 'psn_setlway'" + sqlCondition;
  41. SetDBLKCombox(ref dblkcbxSettelmentWay, sqlStr);
  42. sqlStr = " SELECT B.Code,B.Descripts AS Name FROM HB_Dictionary A JOIN HB_DictionaryDataDetail B ON A.ID = B.HBDictionary_Dr WHERE A.InsuCode = 'dscg_way'" + sqlCondition;
  43. SetDBLKCombox(ref dblkcbxExitway, sqlStr);
  44. }
  45. else
  46. {
  47. string sqlCondition = " and A.Interface_Dr = '" + Global.inf.interfaceDr.ToString() + "'";
  48. string sqlStr = "SELECT B.Code,B.Descripts AS Name FROM HB_Dictionary A JOIN HB_DictionaryDataDetail B ON A.ID = B.HBDictionary_Dr WHERE A.InsuCode = 'insutype'" + sqlCondition;
  49. SetDBLKCombox(ref dblkcbxInsuranceType, sqlStr);
  50. sqlStr = "select A.Code, A.Name FROM HB_MedInsuDirectory A where A.ValidFlag='1' And A.HisType=7" + sqlCondition;
  51. SetDBLKCombox(ref dblkcbxDisease, sqlStr);
  52. sqlStr = "SELECT B.Code,B.Descripts AS Name FROM HB_Dictionary A JOIN HB_DictionaryDataDetail B ON A.ID = B.HBDictionary_Dr WHERE A.InsuCode = 'psn_setlway'" + sqlCondition;
  53. SetDBLKCombox(ref dblkcbxSettelmentWay, sqlStr);
  54. sqlStr = "SELECT B.Code,B.Descripts AS Name FROM HB_Dictionary A JOIN HB_DictionaryDataDetail B ON A.ID = B.HBDictionary_Dr WHERE A.InsuCode = 'med_type'" + sqlCondition;
  55. SetDBLKCombox(ref dblkcbxMedicalType, sqlStr);
  56. sqlStr = " SELECT B.Code,B.Descripts AS Name FROM HB_Dictionary A JOIN HB_DictionaryDataDetail B ON A.ID = B.HBDictionary_Dr WHERE A.InsuCode = 'dscg_way'" + sqlCondition;
  57. SetDBLKCombox(ref dblkcbxExitway, sqlStr);
  58. }
  59. cbxAccountPay.Checked = false;
  60. }
  61. public Boolean b2001 = false;
  62. private DataTable dtDisease;
  63. //private DataTable dtDiseaseType;
  64. //private DataTable dtInsuranceType;
  65. //private DataTable dtMedicalType;
  66. //private DataTable dtOperation;
  67. //private DataTable dtSettelmentType;
  68. //private DataTable dtHospType;
  69. //险种
  70. public string insuType { get; set; }
  71. public string insuTypeName { get; set; }
  72. //医疗类别(人群类别)
  73. public string med_type { get; set; }
  74. public string med_type_name { get; set; }
  75. //诊断
  76. public string diseCodg { get; set; }
  77. public string diseName{ get; set; }
  78. //手术
  79. public string oprn_oprt_code { get; set; }
  80. public string oprn_oprt_name{ get; set; }
  81. //病种
  82. public string dise_type_code { get; set; }
  83. public string dise_type_name { get; set; }
  84. /// <summary>
  85. /// 本地病种编码
  86. /// </summary>
  87. public string local_dise_code { get; set; }
  88. //结算方式
  89. public string psn_setlway { get; set; }
  90. public string psn_setlway_name { get; set; }
  91. //治疗方式
  92. public string treatway_code = "A";
  93. public string treatway_name { get; set; }
  94. //外伤
  95. public string traumaFlag = "0";
  96. //涉及第三方标志
  97. public string relTtpFlag = "0";
  98. public string hospType = "0";
  99. //分级诊疗
  100. public string claTrtFlag = "0";
  101. public string otpErReflFlag = "0";
  102. public string mdtrtGrpType;
  103. public string unifPayStdType = "";
  104. //危重患者
  105. public string dangerFlag = "0";
  106. //住院类型(离院)
  107. public string iptTypeCode = "1";
  108. public string iptTypeName { get; set; }
  109. public DataTable DtDiagnose { get; set; }
  110. public string personAccountUsedFlag = "0";
  111. public void hideBaseInfo()
  112. {
  113. pnlBottom.Top = pnlCenter.Top;
  114. pnlBottom.Location = new Point(0, 160);
  115. pnlCenter.Top = 0;
  116. pnlCenter.Left = 0;
  117. this.Size = new Size(this.Width, this.Height - pnlHeader.Height);
  118. grpHeader.Height = 0;
  119. grpHeader.Visible = false;
  120. }
  121. public void initBaseInfo(JObject jObject)
  122. {
  123. JObject jo = JObject.Parse(jObject["output"].Text());
  124. DataTable dtInsuInfo = (DataTable)jo["insuinfo"].ToObject(typeof(DataTable));
  125. JObject joBaseInfo = JObject.FromObject(jo["baseinfo"]);
  126. this.txtName.Text = joBaseInfo["psn_name"].Text();
  127. this.txtPsnNO.Text = joBaseInfo["psn_no"].Text();
  128. this.txtGend.Text = joBaseInfo["gend"].Text();
  129. this.txtBirthDay.Text = joBaseInfo["brdy"].Text();
  130. this.txtCertType.Text = joBaseInfo["psn_cert_type"].Text();
  131. this.txtCertNO.Text = joBaseInfo["certno"].Text();
  132. this.txtAge.Text = joBaseInfo["age"].Text();
  133. if (dtInsuInfo?.Rows.Count > 0)
  134. {
  135. this.txtCorp.Text = dtInsuInfo.Rows[0]["emp_name"].ToString();
  136. this.txtBalc.Text = dtInsuInfo.Rows[0]["balc"].ToString();
  137. this.txtAdmvs.Text = dtInsuInfo.Rows[0]["insuplc_admdvs"].ToString();
  138. this.txtPsnType.Text = dtInsuInfo.Rows[0]["psn_type"].ToString();
  139. this.txtInsuType.Text = dtInsuInfo.Rows[0]["insutype"].ToString();
  140. }
  141. }
  142. private DataTable GetDBLKComboxTable(string sqlStr)
  143. {
  144. InvokeHelper invoker = new InvokeHelper();
  145. dynamic joInparm = new JObject();
  146. dynamic joTmp = new JObject();
  147. joTmp.sqlStr = sqlStr;
  148. JArray jaParams = new JArray();
  149. jaParams.Add(joTmp);
  150. joInparm.Add("params", JArray.FromObject(jaParams));
  151. joInparm.code = "09010014";
  152. string inParam = joInparm.ToString();
  153. JObject joRtn = invoker.invokeInsuService(inParam,"获取下拉框消息");
  154. //dynamic jsonRtn = JsonConvert.DeserializeObject(strRtn);
  155. DataTable dt = (DataTable)joRtn["result"].ToObject(typeof(DataTable));
  156. //dt.Columns[0].ColumnName = "编码";
  157. //dt.Columns[1].ColumnName = "名称";
  158. //dt.Columns[2].ColumnName = "拼音查找码";
  159. return dt;
  160. }
  161. private void SetDBLKCombox(ref PTControl.DBLookupCombox dblcbx, string sqlStr)
  162. {
  163. dblcbx.sDisplayField = "Code,Name,SearchCode";
  164. dblcbx.sDisplayMember = "名称";
  165. dblcbx.sKeyWords = "Code,SearchCode";
  166. dblcbx.DataSource = GetDBLKComboxTable(sqlStr);
  167. dblcbx.RowFilterVisible = true;
  168. dblcbx.TextBox.Width = 400;
  169. dblcbx.DataGridView.Width = 400;
  170. dblcbx.DataGridView.Columns[0].Name = "编码";
  171. dblcbx.DataGridView.Columns[1].Name = "名称";
  172. dblcbx.DataGridView.Columns[2].Name = "查找码";
  173. dblcbx.DataGridView.Columns[0].Width = 100;
  174. dblcbx.DataGridView.Columns[1].Width = 200;
  175. }
  176. private void InpatientRegistration_Load(object sender, EventArgs e)
  177. {
  178. dgvDiagnose.AutoGenerateColumns = false;
  179. dgvDiagnose.DataSource = DtDiagnose;
  180. //DtDiagnose.AcceptChanges();
  181. dgvDiagnose.ReadOnly = true;
  182. }
  183. private void button1_Click(object sender, EventArgs e)
  184. {
  185. //外伤标志
  186. if (Chk_TraumaFlag.Checked)
  187. traumaFlag = "1";
  188. else
  189. traumaFlag = "0";
  190. //涉及第三方标志
  191. if (Chk_RelTtpFlag.Checked)
  192. relTtpFlag = "1";
  193. else
  194. relTtpFlag = "0";
  195. if (chkDanger.Checked)
  196. {
  197. dangerFlag = "1";
  198. }
  199. //单病种时必须选择病种
  200. if (string.IsNullOrEmpty(this.diseCodg) && "0201".Equals(psn_setlway))
  201. {
  202. MessageBox.Show("单病种时必须选择病种");
  203. return;
  204. }
  205. // 是否使用个人账户金额
  206. if (cbxAccountPay.Checked)
  207. {
  208. personAccountUsedFlag = "1";
  209. }
  210. this.local_dise_code = txtLocateCode.Text.Trim();
  211. this.DialogResult = DialogResult.OK;
  212. }
  213. private void dblkcbxInsuranceType_AfterSelector(object sender, PTControl.AfterSelectorEventArgs e)
  214. {
  215. DataGridViewRow row = e.Value as DataGridViewRow;
  216. DataRowView dataRow = row.DataBoundItem as DataRowView;
  217. insuType = dataRow["Code"].ToString().Trim();
  218. insuTypeName = dataRow["Name"].ToString().Trim();
  219. }
  220. private void dblkcbxMedicalType_AfterSelector(object sender, PTControl.AfterSelectorEventArgs e)
  221. {
  222. DataGridViewRow row = e.Value as DataGridViewRow;
  223. DataRowView dataRow = row.DataBoundItem as DataRowView;
  224. med_type = dataRow["Code"].ToString().Trim();
  225. med_type_name = dataRow["Name"].ToString().Trim();
  226. }
  227. private void dblkcbxDisease_AfterSelector(object sender, PTControl.AfterSelectorEventArgs e)
  228. {
  229. DataGridViewRow row = e.Value as DataGridViewRow;
  230. DataRowView dataRow = row.DataBoundItem as DataRowView;
  231. diseCodg = dataRow["Code"].ToString().Trim();
  232. diseName = dataRow["Name"].ToString().Trim();
  233. }
  234. private void dblkcbxOperation_AfterSelector(object sender, PTControl.AfterSelectorEventArgs e)
  235. {
  236. DataGridViewRow row = e.Value as DataGridViewRow;
  237. DataRowView dataRow = row.DataBoundItem as DataRowView;
  238. oprn_oprt_code = dataRow["Code"].ToString().Trim();
  239. oprn_oprt_name = dataRow["Name"].ToString().Trim();
  240. }
  241. private void dblkcbxSettelmentWay_AfterSelector(object sender, PTControl.AfterSelectorEventArgs e)
  242. {
  243. DataGridViewRow row = e.Value as DataGridViewRow;
  244. DataRowView dataRow = row.DataBoundItem as DataRowView;
  245. psn_setlway = dataRow["Code"].ToString().Trim();
  246. psn_setlway_name = dataRow["Name"].ToString().Trim();
  247. }
  248. private void dblkcbxDiseaseType_AfterSelector(object sender, PTControl.AfterSelectorEventArgs e)
  249. {
  250. DataGridViewRow row = e.Value as DataGridViewRow;
  251. DataRowView dataRow = row.DataBoundItem as DataRowView;
  252. dise_type_code = dataRow["Code"].ToString().Trim();
  253. dise_type_name = dataRow["Name"].ToString().Trim();
  254. }
  255. private void button2_Click(object sender, EventArgs e)
  256. {
  257. this.DialogResult = DialogResult.Cancel;
  258. }
  259. private void cbxAccountPay_ValueChanged(object sender, bool value)
  260. {
  261. if (cbxAccountPay.Checked)
  262. {
  263. personAccountUsedFlag = "1";
  264. }
  265. else
  266. {
  267. personAccountUsedFlag = "0";
  268. }
  269. }
  270. public int DealFor2001(string funNO)
  271. {
  272. //人员待遇享受检查
  273. string errMsg = "";
  274. JObject joData2001 = new JObject();
  275. joData2001.Add("psn_no", Global.pat.psn_no);
  276. joData2001.Add("insutype", insuType);
  277. joData2001.Add("fixmedins_code", Global.inf.hospitalNO);
  278. joData2001.Add("med_type", med_type);
  279. joData2001.Add("begntime", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  280. joData2001.Add("endtime", "");
  281. joData2001.Add("dise_codg", diseCodg);
  282. joData2001.Add("dise_name", diseName);
  283. joData2001.Add("oprn_oprt_code", "");
  284. joData2001.Add("oprn_oprt_name", "");
  285. joData2001.Add("matn_type", "");
  286. joData2001.Add("birctrl_type", "");
  287. JObject joInput = new JObject();
  288. joInput.Add("data", joData2001);
  289. InvokeHelper invoker = new InvokeHelper();
  290. JObject joRtn2001 = invoker.invokeCenterService(TradeEnum.BenefitCheck, joInput);
  291. if (JsonHelper.parseCenterRtnValue(joRtn2001, out errMsg) != 0)
  292. {
  293. MessageBox.Show("人员待遇享受检查调用失败,中心返回错误信息:" + errMsg);
  294. return -1;
  295. }
  296. else
  297. {
  298. string treatInfo = JsonHelper.getDestValue(joRtn2001, "output.trtinfo");
  299. if (!string.IsNullOrEmpty(treatInfo))
  300. {
  301. JArray jarray = JArray.Parse(treatInfo);
  302. StringBuilder sb = new StringBuilder();
  303. foreach (JObject obj in jarray)
  304. {
  305. string flag = JsonHelper.getDestValue(obj, "trt_enjymnt_flag");
  306. if ("0".Equals(flag))
  307. {
  308. string fundType = JsonHelper.getDestValue(obj, "fund_pay_type");
  309. string msg = JsonHelper.getDestValue(obj, "trt_chk_rslt");
  310. sb.Append("基金类型:【" + fundType + "】" + msg);
  311. }
  312. }
  313. if (sb.Length > 0)
  314. {
  315. MessageBox.Show("人员待遇享受检查结果:" + sb.ToString());
  316. return -1;
  317. }
  318. }
  319. MessageBox.Show("人员待遇享受检查结果:【正常】!");
  320. }
  321. return 0;
  322. }
  323. private void uiButton1_Click(object sender, EventArgs e)
  324. {
  325. DealFor2001("");
  326. }
  327. private void dblkcbxHospType_AfterSelector(object sender, PTControl.AfterSelectorEventArgs e)
  328. {
  329. DataGridViewRow row = e.Value as DataGridViewRow;
  330. DataRowView dataRow = row.DataBoundItem as DataRowView;
  331. iptTypeCode = dataRow["Code"].ToString().Trim();
  332. iptTypeName = dataRow["Name"].ToString().Trim();
  333. }
  334. private void dblkcbxTreatway_AfterSelector(object sender, PTControl.AfterSelectorEventArgs e)
  335. {
  336. }
  337. }
  338. }