prescription-detail.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. $(function(){
  2. //获取团队信息
  3. var request = getRequest(),
  4. teamCode = request.id,
  5. docInfo = JSON.parse(window.localStorage.getItem('docInfo')),
  6. isLeader = isTeamLeader() && (teamCode == docInfo.adminTeamCode),
  7. prescriptionCode = request.code,
  8. from = request.from, // 判断是否是tab页加载进来
  9. fromTabIdx = request.fromTabIdx;
  10. var $main = $('#main');
  11. var jwHospital = '',
  12. jwDoctorCode = '';
  13. // 认证专用
  14. var strOriginalData;
  15. template.helper('idcardWidthStar',function(idcard) {
  16. if(idcard) {
  17. if(idcard.length == 18) {
  18. return idcard.substring(0,8) +'********'+idcard.substring(16,18)
  19. } else {
  20. idcard.substring(0,5) +'********'+idcard.substring(16,18)
  21. }
  22. }
  23. return "";
  24. })
  25. template.config("escape", false);
  26. template.helper('getStatusName',function(status) {
  27. return getStatusName(status)
  28. })
  29. template.helper('getReviewResultName',function(status) {
  30. return getReviewResultName(status)
  31. })
  32. template.helper('setStatus',function(o){
  33. if(o == -3){ return '<span style="color:#999">续方取消(24小时未支付)</span>' }
  34. if(o == -2){ return '<span style="color:#999">续方取消(居民主动取消)</span>' }
  35. if(o == -1){ return '<span style="color:#ff4c4c">审核未通过</span>' }
  36. if(o == 0 || o == 10){ return '<span style="color:#ffa54b">审核中</span>' }
  37. if(o == 2){ return '<span style="color:#ffa54b">调整中</span>' }
  38. if(o == 3){ return '<span style="color:#ffa54b">调整成功/待ca认证</span>' }
  39. if(o == 4){ return '<span style="color:#ffa54b">调整失败</span>' }
  40. if(o == 20){ return '<span style="color:#ffa54b">药师审核中</span>' }
  41. if(o == 21){ return '<span style="color:#ff4c4c">药师审核失败</span>' }
  42. if(o == 30){ return '<span style="color:#ffa54b">开方中</span>' }
  43. if(o == 31){ return '<span style="color:#ff4c4c">开方失败</span>' }
  44. if(o == 40 || o == 41){ return '<span style="color:#db6bbd">待支付</span>' }
  45. if(o == 50){ return '<span style="color:#ffa54b">配药中</span>' }
  46. if(o == 60){ return '<span style="color:#db6bbd">等待领药</span>' }
  47. if(o == 61 || o == 62 || o == 65 || o == 69){ return '<span style="color:#06bf04">配送中</span>' }
  48. if(o == 100){ return '<span style="color:#17b3ec">已完成</span>' }
  49. })
  50. template.helper('setRestTime',function(minDate,sDate){
  51. if(!minDate || !sDate) {
  52. return ""
  53. }
  54. var now = getNowDate();
  55. var createDate = sDate.split(' ');
  56. var diff = getDays(createDate[0],now);
  57. if(diff<minDate){
  58. return '<span style="color:#17b3ec">'+(minDate-diff)+'天</span>'
  59. }else{
  60. return '<span style="color:#ff4c4c">已用完</span>'
  61. }
  62. })
  63. //相隔几天
  64. function getDays(sDate,eDate){
  65. var oDate1;
  66. var oDate2;
  67. var iDays;
  68. oDate1= sDate.split("-");
  69. oDate2= eDate.split("-");
  70. var strDateS = new Date(oDate1[0], oDate1[1]-1, oDate1[2]);
  71. var strDateE = new Date(oDate2[0], oDate2[1]-1, oDate2[2]);
  72. iDays = parseInt(Math.abs(strDateE - strDateS ) / 1000 / 60 / 60 /24)
  73. return iDays ;
  74. }
  75. //现在时间
  76. function getNowDate() {
  77. var date = new Date();
  78. var year = date.getFullYear();
  79. var month = date.getMonth() + 1;
  80. var day = date.getDate();
  81. var hour = date.getHours();
  82. var minute = date.getMinutes();
  83. var second = date.getSeconds();
  84. return year + '-' + (month < 10 ? '0' + month : month) + '-' + (day < 10 ? '0' + day : day);
  85. }
  86. prescriptionDetailApis.getContinuedPrescriptionAsDoctor({
  87. data: {
  88. code: prescriptionCode, // 续方CODE
  89. type: isLeader?1:2 // 是否为团队长,1:是,2:否
  90. }
  91. }).then(function(res) {
  92. if(res.status == 200) {
  93. var detailData = res.data;
  94. var prescription = detailData.prescription;
  95. var diagnosis = detailData.diagnosis;
  96. var patient = detailData.patient;
  97. strOriginalData = detailData;
  98. jwHospital = prescription.jwHospital;
  99. jwDoctorCode = prescription.jwDoctorCode;
  100. var diagnosisNames = _.pluck(diagnosis,'name').join('、')
  101. prescriptionDetailApis.getPrescription({
  102. data: {
  103. code: prescriptionCode,
  104. patient: patient.code
  105. }
  106. }).then(function(res) {
  107. if(res.status == 200) {
  108. if(isLeader) {
  109. getDataPromises().then(function(responses) {
  110. var deptRes = responses[0],
  111. feeRes = responses[1],
  112. authRes = responses[2],
  113. reasonRes = responses[3];
  114. $main.html(template('detailTmpl',$.extend({}, detailData , {
  115. primary: res.data,
  116. diagnosisNames: diagnosisNames,
  117. depts: deptRes.data,
  118. feeRes: feeRes.data,
  119. isAuthentication: authRes.data.type == 4,
  120. isLeader: isLeader,
  121. reasonTypes: reasonRes.data
  122. })))
  123. bindEvents()
  124. }).catch(function(e) {
  125. showErrorMsg('初始化失败')
  126. })
  127. } else {
  128. $main.html(template('detailTmpl',$.extend({}, detailData , {
  129. primary: res.data,
  130. diagnosisNames: diagnosisNames,
  131. isLeader: isLeader
  132. })))
  133. bindEvents()
  134. }
  135. }else {
  136. showErrorMsg(res.msg)
  137. }
  138. }).catch(function(e){
  139. console && console.error(e)
  140. })
  141. } else {
  142. showErrorMsg(res.msg)
  143. }
  144. }).catch(function(e){
  145. console && console.error(e)
  146. })
  147. function bindEvents() {
  148. $('#auditResultSel').on('change',function() {
  149. var value = $(this).val();
  150. if(value == 1) {
  151. $('#disagreeAudit').hide();
  152. $('#agreeAudit').show();
  153. } else if(value == 2) {
  154. $('#agreeAudit').hide();
  155. $('#disagreeAudit').show();
  156. } else {
  157. $('#agreeAudit').hide();
  158. $('#disagreeAudit').hide();
  159. }
  160. })
  161. $('#reviewBtn').on('click',function() {
  162. var result = $('#auditResultSel').val();
  163. var data = {
  164. code: prescriptionCode, // 续方CODE
  165. reason: '', // 不同意原因
  166. reasonCode: '', // 不同意原因CODE
  167. state: '', // 1同意,2不同意
  168. dept: '', // 科室
  169. registerFee: '', // 诊金
  170. rateTypeCode: '' // 诊金类型
  171. }
  172. if(result == 1) { // 审核通过
  173. if(!checkAgreeInputs()) {
  174. return ;
  175. }
  176. $('#reviewBtn').attr('disabled','disabled')
  177. var params ={
  178. strRealNameSoftCertCalledPasswd: $('#reviewPassword').val(),
  179. strOriginalData:JSON.stringify(getStrOriginalData()),
  180. prescriptionCode:prescriptionCode
  181. }
  182. prescriptionDetailApis.requestRealNameSoftCertAndSign({
  183. data: params
  184. }).then(function(res) {
  185. if(res.status==200 && res.data){
  186. var feesel = $('#feeSel').val().split(' ');
  187. prescriptionDetailApis.reviewPrescription({
  188. data: {
  189. code: prescriptionCode, // 续方CODE
  190. state: 1, // 1同意,2不同意
  191. dept: $('#deptSel').val(), // 科室
  192. registerFee: feesel[1], // 诊金
  193. rateTypeCode: feesel[0] // 诊金类型
  194. }
  195. }).then(function(res) {
  196. if(res.status == 200 && res.data){
  197. showSuccessMsg('提交成功')
  198. setTimeout(function() {
  199. location.reload(true)
  200. }, 2000)
  201. } else {
  202. showErrorMsg(res.msg)
  203. $('#reviewBtn').removeAttr('disabled')
  204. }
  205. })
  206. } else {
  207. showErrorMsg(res.msg)
  208. $('#reviewBtn').removeAttr('disabled')
  209. }
  210. }).catch(function(e) {
  211. showErrorMsg(e)
  212. })
  213. } else if(result == 2){ // 审核不通过
  214. if(!checkDisAgreeInputs()) {
  215. return ;
  216. }
  217. var reason = $('#disagreeReason').val();
  218. var reasonType = _.map($('#adjustReason li.active'),function(el) {
  219. return $(el).attr('data-code')
  220. }).join(',');
  221. prescriptionDetailApis.reviewPrescription({
  222. data: {
  223. code: prescriptionCode, // 续方CODE
  224. state: 2, // 1同意,2不同意
  225. reason: reason || "-", // 不同意原因
  226. reasonCode: reasonType // 不同意原因CODE
  227. }
  228. }).then(function(res) {
  229. if(res.status == 200 && res.data){
  230. showSuccessMsg('提交成功')
  231. setTimeout(function() {
  232. location.reload(true)
  233. }, 2000)
  234. } else {
  235. $('#reviewBtn').removeAttr('disabled')
  236. }
  237. }).catch(function(e) {
  238. showErrorMsg(e)
  239. })
  240. } else {
  241. showErrorMsg("请选择审核结果")
  242. }
  243. })
  244. $('#editBtn').on('click',function() {
  245. location.href = 'prescription-adjustment.html?code='+prescriptionCode
  246. })
  247. $('#backBtn').on('click',function() {
  248. if(from == 'tab') {
  249. top.toPrePrescriptionTab && top.toPrePrescriptionTab()
  250. } else {
  251. history.go(-1);
  252. }
  253. })
  254. $('#adjustReason').on('click','li',function() {
  255. if($(this).hasClass('active')) {
  256. $(this).removeClass('active')
  257. } else {
  258. $(this).addClass('active')
  259. }
  260. setDisagreeReason()
  261. })
  262. calcWorldWithTextarea()
  263. }
  264. function setDisagreeReason() {
  265. var reasons = _.map($('#adjustReason li.active'),function(el) {
  266. return $.trim($(el).text())
  267. });
  268. if(reasons && reasons.length) {
  269. $('#disagreeReason').val(reasons.join(','))
  270. $('#disagreeReason').focus()
  271. }
  272. }
  273. function getStrOriginalData() {
  274. var imporMsg = {
  275. prescription: {}
  276. };
  277. imporMsg.prescription.jwCode = strOriginalData.prescription.jwCode;
  278. imporMsg.prescription.patientName = strOriginalData.prescription.patientName;
  279. imporMsg.prescription.doctorName = strOriginalData.prescription.doctorName;
  280. imporMsg.prescription.diagnosis = strOriginalData.diagnosis;
  281. var arr = _.map(strOriginalData.prescriptionInfo,function(item){
  282. return _.pick(item, 'drugCode','drugName','jwSubCode','physicAmount','physicAmountUnit','physicAmountUnitName');
  283. })
  284. imporMsg.prescription.prescriptionInfo = arr;
  285. return imporMsg;
  286. }
  287. function checkAgreeInputs() {
  288. var fee = $('#feeSel').val();
  289. var dept = $('#deptSel').val();
  290. var pwd = $('#reviewPassword').val();
  291. if(!fee) {
  292. showErrorMsg("请选择诊查费用")
  293. return false;
  294. } else if(!dept) {
  295. showErrorMsg("请选择开方科室")
  296. return false;
  297. } else if(!pwd) {
  298. showErrorMsg("请输入审方密码")
  299. return false;
  300. }
  301. return true;
  302. }
  303. function checkDisAgreeInputs() {
  304. var reason = $('#disagreeReason').val();
  305. if(!reason) {
  306. showErrorMsg("请输入不通过原因")
  307. return false;
  308. }
  309. return true;
  310. }
  311. function getDataPromises() {
  312. return Promise.all([
  313. prescriptionDetailApis.getDeptList({
  314. data: {
  315. jwHospital: jwHospital,
  316. jwDoctorCode: jwDoctorCode
  317. }
  318. }),
  319. prescriptionDetailApis.getRegisterRee({
  320. data: {
  321. jwHospital: jwHospital,
  322. jwDoctorCode: jwDoctorCode
  323. }
  324. }),
  325. prescriptionDetailApis.isAuthentication({}),
  326. prescriptionDetailApis.getReasonByType({
  327. data: {
  328. type: '0'
  329. }
  330. })
  331. ])
  332. }
  333. })