prescription-detail.js 11 KB

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