listPrint.vue 36KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024
  1. <template>
  2. <div>
  3. <template>
  4. <el-button
  5. style="position:fixed;right:25px;z-index:999"
  6. :loading="loading"
  7. size="small"
  8. icon="el-icon-printer"
  9. @click="printThisPage"
  10. type="primary"
  11. >打印
  12. </el-button
  13. >
  14. </template>
  15. <div class='dialysisPage' style="padding-top:40px;">
  16. <listPrintforu v-if=" org_id != 10106&&org_id != 10215&&org_id != 10265 && org_id!=9675 && org_id!=10485 && org_id != 10191"
  17. :list="list" :patient="patient" :order="order" :admin="admin">
  18. </listPrintforu>
  19. <printOne v-if="org_id == 10191" :list="list" :patient="patient" :order="order" :admin="admin"></printOne>
  20. <printTwo v-if="org_id == 10106 && this.paramsObj.balance_accounts_type != 2" :info="info" :order_infos="order_infos" :p_admin="p_admin" :charge_admin="charge_admin"></printTwo>
  21. <print-three v-if="org_id == 10106 && this.paramsObj.balance_accounts_type == 2" :info="info" :order_infos="order_infos" :p_admin="p_admin" :charge_admin="charge_admin"></print-three>
  22. <!-- <list-print-two v-if="org_id == 10215 || org_id==9675" :list="list" :patient="patient" :order="order" :admin="admin"></list-print-two>-->
  23. <list-print-three v-if="org_id == 10215 || org_id==9675 || org_id ==10485" :list="list" :patient="patient" :order="order" :admin="admin"></list-print-three>
  24. <print-two10265 v-if="org_id == 10265 " :list="list" :patient="patient" :order="order" :admin="admin" :hospital_record="hospital_record"></print-two10265>
  25. </div>
  26. </div>
  27. </template>
  28. <script>
  29. import printOne from './listTemplate/printOne'
  30. import printTwo from './listTemplate/printTwo'
  31. // import printThree from './listTemplate/printThree'
  32. import print from "print-js";
  33. import { getHisOrderDetail,getPrivateExpensesOrder} from '@/api/his/his'
  34. import { uParseTime } from '@/utils/tools'
  35. import axios from 'axios'
  36. import PrintThree from './listTemplate/printThree'
  37. import ListPrintTwo from './listTemplate/listPrintTwo'
  38. import PrintTwo10265 from "./listTemplate/printTwo10265";
  39. import ListPrintThree from "./listTemplate/listPrintThree";
  40. import listPrintforu from "./listTemplate/listPrintforu"
  41. export default {
  42. name: 'listPrint',
  43. components: {
  44. listPrintforu,
  45. ListPrintThree,
  46. PrintTwo10265,
  47. ListPrintTwo,
  48. PrintThree,
  49. printOne,
  50. printTwo,
  51. },
  52. props: {
  53. paramsObj: Object
  54. },
  55. data() {
  56. return {
  57. list: [],
  58. patient:{},
  59. order:{},
  60. admin:{},
  61. order_infos:null,
  62. info:null,
  63. p_admin:{},
  64. charge_admin:{},
  65. org_id:'',
  66. hospital_record:{}
  67. }
  68. },
  69. created() {
  70. this.getInfo(this.paramsObj.id)
  71. this.org_id = this.$store.getters.xt_user.org_id
  72. if(this.org_id == 10106){
  73. if(this.paramsObj.balance_accounts_type == 2){
  74. this.getInfoPrivateExpenses10106(this.paramsObj.id)
  75. }else{
  76. this.getInfo10106(this.paramsObj.id)
  77. }
  78. }
  79. // this.getinfos(this.paramsObj.id)
  80. },
  81. methods: {
  82. getTimes(time) {
  83. return uParseTime(time, '{y}-{m}-{d}')
  84. },
  85. getInfo(order_id) {
  86. let params = {
  87. id: order_id
  88. }
  89. getHisOrderDetail(params).then(response => {
  90. if (response.data.state == 0) {
  91. this.$message.error(response.data.msg)
  92. return false
  93. } else {
  94. if(this.org_id == 10265 ){
  95. this.order = response.data.data.order
  96. this.patient = response.data.data.patient
  97. this.admin = response.data.data.admin_info
  98. this.hospital_record = response.data.data.hospital_record
  99. //获取所有项目类型进行去重
  100. let med_chrgitm_types = []
  101. for (let i = 0; i < response.data.data.order_info.length; i++) {
  102. med_chrgitm_types.push(response.data.data.order_info[i].med_chrgitm_type)
  103. }
  104. const obj = {}
  105. med_chrgitm_types = med_chrgitm_types.reduce((cur, next) => {
  106. obj[next] ? '' : obj[next] = true && cur.push(next)
  107. return cur
  108. }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  109. let tempOrderInfo = []
  110. for (let i = 0; i < med_chrgitm_types.length; i++) {
  111. let obj = {
  112. details: [],
  113. med_chrgitm_name:this.getType(med_chrgitm_types[i]),
  114. jiaTotal:0,
  115. total:0,
  116. yiTotal:0,
  117. noMedicineTotal:0,
  118. bingTotal:0,
  119. otherTotal:0,
  120. sort:0,
  121. }
  122. if(med_chrgitm_types[i] == '09'){
  123. obj.sort = 99
  124. } else if(med_chrgitm_types[i] == '05'){
  125. obj.sort = 98
  126. } else if(med_chrgitm_types[i] == '08'){
  127. obj.sort = 97
  128. }else if(med_chrgitm_types[i] == '03'){
  129. obj.sort = 96
  130. }
  131. let tempDetails = []
  132. for (let b = 0; b < response.data.data.order_info.length; b++) {
  133. if (med_chrgitm_types[i] == response.data.data.order_info[b].med_chrgitm_type) {
  134. tempDetails.push(response.data.data.order_info[b])
  135. }
  136. }
  137. obj.total = this.getTotal(tempDetails)
  138. obj.jiaTotal = this.getJiaTotal(tempDetails,this.hospital_record.balance_accounts_type)
  139. obj.yiTotal = this.getYiTotal(tempDetails,this.hospital_record.balance_accounts_type)
  140. obj.noMedicineTotal = this.getNoMedicineTotal(tempDetails)
  141. obj.bingTotal = this.getBingTotal(tempDetails)
  142. obj.otherTotal = this.getOtherTotal(tempDetails)
  143. obj.details = this.set10265NewData(tempDetails)
  144. this.list.push(obj)
  145. }
  146. this.list.sort((a,b) => a.sort < b.sort ? 1 : a.sort > b.sort ? -1 : 0)
  147. console.log(this.list,'sssss')
  148. }else{
  149. console.log('response.data.data',response.data.data);
  150. this.order = response.data.data.order
  151. this.patient = response.data.data.patient
  152. this.admin = response.data.data.admin_info
  153. for (let i = 0; i < response.data.data.order_info.length; i++) {
  154. var infos = response.data.data.order_info[i]
  155. let obj = {
  156. med_chrgitm_type: this.getType(infos.med_chrgitm_type),
  157. price: infos.pric.toFixed(4),
  158. count: infos.cnt,
  159. selfpay_prop:infos.selfpay_prop,
  160. }
  161. if (infos.advice && infos.advice.id == 0 && infos.project && infos.project.id > 0) {
  162. obj['p_time'] = this.getTimes(infos.project.prescription.ctime)
  163. obj['feedetl_sn'] = infos.feedetl_sn
  164. obj['type'] = infos.chrgitm_lv
  165. if(infos.project.type == 2){
  166. obj['name'] = infos.project.project.project_name
  167. obj['code'] = infos.project.project.medical_code
  168. obj['spec'] = ''
  169. obj['unit'] = infos.project.project.unit
  170. obj['is_total']= 0
  171. obj['record_date'] = infos.project.record_date
  172. }else if (infos.project.type == 3){
  173. obj['name'] = infos.project.good_info.good_name
  174. obj['spec'] = ""
  175. obj['code'] = infos.project.good_info.medical_insurance_number
  176. obj['unit'] = infos.project.good_info.packing_unit
  177. obj['is_total']= 0
  178. obj['record_date'] = infos.project.record_date
  179. }
  180. }
  181. if (infos.advice && infos.advice.id > 0 && infos.project && infos.project.id == 0) {
  182. obj['type'] = infos.chrgitm_lv
  183. obj['p_time'] = this.getTimes(infos.advice.prescription.ctime)
  184. obj['name'] = infos.advice.drug.drug_name
  185. obj['code'] = infos.advice.drug.medical_insurance_number
  186. obj['unit'] = infos.advice.prescribing_number_unit
  187. obj['feedetl_sn'] = infos.feedetl_sn
  188. obj['spec'] = infos.advice.drug.dose + infos.advice.drug.dose_unit+"*" + infos.advice.drug.min_number + infos.advice.drug.min_unit+"/"+infos.advice.drug.max_unit
  189. obj['is_total']= 0
  190. obj['record_date'] = infos.advice.record_date
  191. // v-if="scope.row.min_unit != scope.row.dose_unit">{{ scope.row.dose }}{{ scope.row.dose_unit }}&nbsp;* &nbsp;</span>{{ scope.row.min_number }}{{ scope.row.min_unit }}/{{ scope.row.max_unit }}
  192. }
  193. this.list.push(obj)
  194. this.list.sort(function(a, b) {
  195. return b.p_time < a.p_time ? 1 : -1
  196. })
  197. }
  198. let newObj = {}
  199. newObj['name'] = "合计"
  200. newObj['count']= 1
  201. newObj['price']= this.order.medfee_sumamt.toFixed(2)
  202. newObj['is_total']= 1
  203. this.list.push(newObj)
  204. }
  205. }
  206. })
  207. },
  208. getJiaTotal(items){
  209. console.log(items)
  210. let total = 0
  211. for(let i = 0; i < items.length; i++){
  212. if(items[i].chrgitm_lv == "01") {
  213. total = parseFloat(total) + (parseFloat(items[i].cnt) * parseFloat(items[i].pric))
  214. }
  215. }
  216. return total.toFixed(2)
  217. },getYiTotal(items){
  218. let total = 0
  219. for(let i = 0; i < items.length; i++){
  220. if(items[i].chrgitm_lv == "02") {
  221. total = parseFloat(total) + (parseFloat(items[i].cnt) * parseFloat(items[i].pric))
  222. // total = Number(total) + Number((parseFloat(items[i].count) * parseFloat(items[i].price)).toFixed(2))
  223. }
  224. }
  225. return total.toFixed(2)
  226. },getNoMedicineTotal(items){
  227. let total = 0
  228. for(let i = 0; i < items.length; i++){
  229. total = parseFloat(total) + (parseFloat(items[i].cnt) * parseFloat(items[i].pric))
  230. }
  231. return total.toFixed(2)
  232. },getBingTotal(items){
  233. let total = 0
  234. for(let i = 0; i < items.length; i++){
  235. if(items[i].chrgitm_lv == "03") {
  236. total = parseFloat(total) + (parseFloat(items[i].cnt) * parseFloat(items[i].pric))
  237. // total = Number(total) + Number((parseFloat(items[i].count) * parseFloat(items[i].price)).toFixed(2))
  238. }
  239. }
  240. return total.toFixed(2)
  241. },getOtherTotal(items){
  242. // let total = 0
  243. // for(let i = 0; i < items.length; i++){
  244. // total = Number(total) + Number((parseFloat(items[i].count) * parseFloat(items[i].price)).toFixed(2))
  245. // }
  246. // return total.toFixed(2)
  247. },getTotal:function(items){
  248. let total = 0
  249. for(let i = 0; i < items.length; i++){
  250. total = Number(total) + Number(parseFloat(items[i].cnt) * parseFloat(items[i].pric))
  251. }
  252. return total.toFixed(2)
  253. },
  254. setNewData(details) {
  255. let drug_ids = []
  256. let project_ids = []
  257. for (let i = 0; i < details.length; i++) {
  258. if (details[i].advice && details[i].advice.id > 0 && details[i].advice.prescription && details[i].advice.prescription.type == 1) { //药品
  259. let obj = {
  260. id: details[i].advice.drug_id,
  261. price: details[i].advice.price,
  262. lv: details[i].chrgitm_lv,
  263. }
  264. drug_ids.push(obj)
  265. } else if (details[i].project && details[i].project.id > 0 && details[i].project.prescription && details[i].project.prescription.type == 2) { //项目
  266. let obj = {
  267. id: details[i].project.project_id,
  268. price: details[i].project.price,
  269. lv: details[i].chrgitm_lv,
  270. }
  271. project_ids.push(obj)
  272. }
  273. }
  274. //
  275. // console.log('old ids')
  276. // console.log(drug_ids)
  277. // console.log(project_ids)
  278. // console.log('old ids')
  279. let new_drug_ids = this.unique(drug_ids)
  280. let new_project_ids = this.unique(project_ids)
  281. let list = []
  282. console.log('ids')
  283. console.log(new_drug_ids)
  284. console.log(new_project_ids)
  285. console.log('ids')
  286. if (new_drug_ids.length > 0 && new_project_ids.length == 0) {
  287. for (let i = 0; i < new_drug_ids.length; i++) {
  288. let obj = {}
  289. let count = 0
  290. for (let a = 0; a < details.length; a++) {
  291. if (new_drug_ids[i].id == details[a].advice.drug_id && new_drug_ids[i].price == details[a].advice.price ) {
  292. obj['name'] = details[a].advice.advice_name
  293. // obj['spec'] = details[a].advice.drug.drug_spec
  294. obj['spec'] = details[a].advice.drug.dose + details[a].advice.drug.dose_unit+"*" + details[a].advice.drug.min_number + details[a].advice.drug.min_unit+"/"+ details[a].advice.drug.max_unit
  295. obj['unit'] = details[a].advice.prescribing_number_unit
  296. obj['medicine_insurance_kind'] = this.getMedicineInsuranceType(details[a].chrgitm_lv)
  297. obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type)
  298. obj['price'] = parseFloat(details[a].pric)
  299. obj['is_total'] = 2
  300. count = count + details[a].cnt
  301. }
  302. }
  303. obj['count'] = count
  304. list.push(obj)
  305. }
  306. }
  307. if (new_drug_ids.length == 0 && new_project_ids.length > 0) {
  308. for (let i = 0; i < new_project_ids.length; i++) {
  309. let obj = {}
  310. let count = 0
  311. for (let a = 0; a < details.length; a++) {
  312. if (new_project_ids[i].id == details[a].project.project_id && new_project_ids[i].price == details[a].project.price) {
  313. if( details[a].project.type == 2){
  314. obj['name'] = details[a].project.project.project_name
  315. obj['spec'] = ''
  316. obj['unit'] = details[a].project.project.unit
  317. }else if(details[a].project.type == 3){
  318. obj['name'] = details[a].project.good_info.good_name
  319. obj['spec'] = ''
  320. obj['unit'] = details[a].project.good_info.packing_unit
  321. }
  322. obj['medicine_insurance_kind'] = this.getMedicineInsuranceType(details[a].chrgitm_lv)
  323. obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type)
  324. obj['price'] = parseFloat(details[a].pric)
  325. obj['is_total'] = 2
  326. count = count + details[a].cnt
  327. }
  328. }
  329. obj['count'] = count
  330. list.push(obj)
  331. }
  332. }
  333. return list
  334. },
  335. set10265NewData(details) {
  336. let drug_ids = []
  337. let project_ids = []
  338. console.log('details12121212',details);
  339. for (let i = 0; i < details.length; i++) {
  340. if (details[i].advice && details[i].advice.id > 0 && details[i].advice.prescription && details[i].advice.prescription.type == 1) { //药品
  341. let obj = {
  342. id: details[i].advice.drug_id,
  343. price: details[i].advice.price,
  344. lv: details[i].chrgitm_lv,
  345. selfpay_prop:details[i].selfpay_prop
  346. }
  347. drug_ids.push(obj)
  348. } else if (details[i].project && details[i].project.id > 0 && details[i].project.prescription && details[i].project.prescription.type == 2) { //项目
  349. let obj = {
  350. id: details[i].project.project_id,
  351. price: details[i].project.price,
  352. lv: details[i].chrgitm_lv,
  353. selfpay_prop:details[i].selfpay_prop
  354. }
  355. project_ids.push(obj)
  356. }
  357. }
  358. //
  359. // console.log('old ids')
  360. console.log('drug_ids',drug_ids)
  361. console.log('project_ids',project_ids)
  362. // console.log('old ids')
  363. let new_drug_ids = this.unique10265(drug_ids)
  364. let new_project_ids = this.unique10265(project_ids)
  365. let list = []
  366. // console.log('ids')
  367. console.log('new_drug_ids',new_drug_ids)
  368. console.log('new_project_ids',new_project_ids)
  369. // console.log('ids')
  370. if (new_drug_ids.length > 0 && new_project_ids.length == 0) {
  371. for (let i = 0; i < new_drug_ids.length; i++) {
  372. let obj = {}
  373. let count = 0
  374. for (let a = 0; a < details.length; a++) {
  375. if (new_drug_ids[i].id == details[a].advice.drug_id && new_drug_ids[i].price == details[a].advice.price && new_drug_ids[i].lv == details[a].chrgitm_lv) {
  376. obj['name'] = details[a].advice.advice_name
  377. // obj['spec'] = details[a].advice.drug.drug_spec
  378. obj['spec'] = details[a].advice.drug.dose + details[a].advice.drug.dose_unit+"*" + details[a].advice.drug.min_number + details[a].advice.drug.min_unit+"/"+ details[a].advice.drug.max_unit
  379. obj['unit'] = details[a].advice.prescribing_number_unit
  380. obj['medicine_insurance_kind'] = this.getMedicineInsuranceType(details[a].chrgitm_lv)
  381. obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type)
  382. obj['price'] = parseFloat(details[a].pric)
  383. obj['is_total'] = 2
  384. obj['selfpay_prop'] = details[a].selfpay_prop
  385. count = count + details[a].cnt
  386. }
  387. }
  388. obj['count'] = count
  389. list.push(obj)
  390. }
  391. }
  392. if (new_drug_ids.length == 0 && new_project_ids.length > 0) {
  393. for (let i = 0; i < new_project_ids.length; i++) {
  394. let obj = {}
  395. let count = 0
  396. for (let a = 0; a < details.length; a++) {
  397. if (new_project_ids[i].id == details[a].project.project_id && new_project_ids[i].price == details[a].project.price && new_project_ids[i].lv == details[a].chrgitm_lv) {
  398. if( details[a].project.type == 2){
  399. obj['name'] = details[a].project.project.project_name
  400. obj['spec'] = ''
  401. obj['unit'] = details[a].project.project.unit
  402. }else if(details[a].project.type == 3){
  403. obj['name'] = details[a].project.good_info.good_name
  404. obj['spec'] = ''
  405. obj['unit'] = details[a].project.good_info.packing_unit
  406. }
  407. obj['medicine_insurance_kind'] = this.getMedicineInsuranceType(details[a].chrgitm_lv)
  408. obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type)
  409. obj['price'] = parseFloat(details[a].pric)
  410. obj['is_total'] = 2
  411. obj['selfpay_prop'] = details[a].selfpay_prop
  412. count = count + details[a].cnt
  413. }
  414. }
  415. obj['count'] = count
  416. list.push(obj)
  417. }
  418. }
  419. return list
  420. },
  421. getType(med_chrgitm_type) {
  422. switch (med_chrgitm_type) {
  423. case '01':
  424. return '床位费'
  425. break
  426. case '02':
  427. return '诊察费'
  428. break
  429. case '03':
  430. return '检查费'
  431. break
  432. case '04':
  433. return '化验费'
  434. break
  435. case '05':
  436. return '治疗费'
  437. break
  438. case '06':
  439. return '手术费'
  440. break
  441. case '07':
  442. return '护理费'
  443. break
  444. case '08':
  445. return '材料费'
  446. break
  447. case '09':
  448. return '西药费'
  449. break
  450. case '10':
  451. return '中药饮片费'
  452. break
  453. case '11':
  454. return '中成药费'
  455. break
  456. case '12':
  457. return '一般诊疗费'
  458. break
  459. case '13':
  460. return '挂号费'
  461. break
  462. case '14':
  463. return '其他费'
  464. break
  465. case '0':
  466. return '其他费'
  467. break
  468. }
  469. },
  470. getMedicineInsuranceType(type) {
  471. switch (type) {
  472. case "01":
  473. return '甲类'
  474. break
  475. case "02":
  476. return '乙类'
  477. break
  478. case "03":
  479. return '丙类'
  480. break
  481. }
  482. },
  483. unique(array) {
  484. // res用来存储结果
  485. var res = []
  486. for (var i = 0, arrayLen = array.length; i < arrayLen; i++) {
  487. for (var j = 0, resLen = res.length; j < resLen; j++) {
  488. if (array[i].id === res[j].id && array[i].price === res[j].price) {
  489. break
  490. }
  491. }
  492. // 如果array[i]是唯一的,那么执行完循环,j等于resLen
  493. if (j === resLen) {
  494. res.push(array[i])
  495. }
  496. }
  497. return res
  498. },
  499. unique10265(array) {
  500. // res用来存储结果
  501. var res = []
  502. for (var i = 0, arrayLen = array.length; i < arrayLen; i++) {
  503. for (var j = 0, resLen = res.length; j < resLen; j++) {
  504. if (array[i].id === res[j].id && array[i].price === res[j].price && array[i].lv === res[j].lv) {
  505. break
  506. }
  507. }
  508. // 如果array[i]是唯一的,那么执行完循环,j等于resLen
  509. if (j === resLen) {
  510. res.push(array[i])
  511. }
  512. }
  513. return res
  514. },
  515. printThisPage() {
  516. if(this.org_id != 10106){
  517. if(this.org_id == 10215 || this.org_id == 9675 || this.org_id == 10485){
  518. const style =
  519. '@media print {.allListTitle{font-size: 24px;text-align: center;font-weight: bold;margin-bottom: 10px;}.allListInfo{display: flex;font-size: 16px;justify-content: space-between;margin: 10px 0;} .listTable{width: 100%;text-align: center;border-collapse: collapse;line-height: 20px;font-size: 14px;border-color: #000;text-align:left;} .listTable tr td {padding: 0 5px;}.tableBottom{font-size: 16px;display: flex;margin-top: 10px;}.tableBottomOne{margin-right: 40px;} .allListTable{border: none;width: 100%;text-align: center;border-collapse: collapse;line-height: 20px;font-size: 14px;border-color: #000;text-align:left;} .allListTable tr{page-break-inside:avoid;} .allListTable tr td {padding: 0 5px;border: 1px solid #000;}.tableBottom{font-size: 16px;display: flex;margin-top: 20px;}.tableBottomOne{margin-right: 40px;}}'
  520. printJS({
  521. printable: 'allList-print',
  522. type: 'html',
  523. style: style,
  524. scanStyles: false
  525. })
  526. }else if(this.org_id == 10210 || this.org_id == 0){
  527. const style =
  528. '@media print {.listTitle{font-size: 20px;text-align: center;font-weight: bold;margin-bottom: 10px;}.listInfo{display: flex;font-size: 14px;justify-content: space-around;margin: 10px 0;} .listTable{width: 100%;text-align: center;border-collapse: collapse;line-height: 20px;font-size: 14px;border-color: #000;text-align:left;}.listTable tr td {padding: 0 5px;}.tableBottom{font-size: 12px;display: flex;margin-top: 10px;}.tableBottomOne{margin-right: 20px;}}'
  529. printJS({
  530. printable: 'list-print',
  531. type: 'html',
  532. style: style,
  533. scanStyles: false
  534. })
  535. }
  536. else {
  537. const style =
  538. '@media print {.listTitle{font-size: 24px;text-align: center;font-weight: bold;margin-bottom: 10px;}.listInfo{display: flex;font-size: 16px;justify-content: space-between;margin: 10px 0;} .listTable{width: 100%;text-align: center;border-collapse: collapse;line-height: 20px;font-size: 14px;border-color: #000;text-align:left;}.listTable tr td {padding: 0 5px;}.tableBottom{font-size: 12px;display: flex;margin-top: 10px;}.tableBottomOne{margin-right: 20px;}}'
  539. printJS({
  540. printable: 'list-print',
  541. type: 'html',
  542. style: style,
  543. scanStyles: false
  544. })
  545. }
  546. }else{
  547. const style =
  548. '@media print {#statement-print{font-size:12px;width:800px;margin:0 auto;}.statementTitle{font-size: 22px;text-align: center;margin-bottom: 10px;}.statementTable{width: 100%;text-align: center;border-collapse: collapse;line-height: 40px;font-size: 16px;border-color: #000;}}';
  549. printJS({
  550. printable: "statement-print",
  551. type: "html",
  552. style: style,
  553. scanStyles: false
  554. });
  555. }
  556. // if (this.org_template_info.template_id == 1) {
  557. // printJS({
  558. // printable: "dialysis-print-box",
  559. // type: "html",
  560. // style: style,
  561. // scanStyles: false
  562. // });
  563. // }
  564. },
  565. getInfoPrivateExpenses10106(order_id){
  566. let params = {
  567. order_id: order_id,
  568. admin_user_id:this.$store.getters.xt_user.user.id
  569. }
  570. getPrivateExpensesOrder(params).then(response => {
  571. if (response.data.state == 0) {
  572. this.$message.error(response.data.msg)
  573. return false
  574. } else {
  575. this.info = response.data.data.info
  576. this.info['org_name'] = response.data.data.org_name
  577. this.info['date'] = response.data.data.date
  578. this.info['number'] = response.data.data.number
  579. this.info['name'] = response.data.data.name
  580. this.p_admin = response.data.data.printor_admin
  581. this.charge_admin = response.data.data.charge_admin
  582. this.order_infos = response.data.data
  583. }
  584. })
  585. },
  586. getGoodUnit(id) {
  587. var goodUnit = this.$store.getters.good_unit
  588. for (let i = 0; i < goodUnit.length; i++) {
  589. if (goodUnit[i].id == id) {
  590. return goodUnit[i].name
  591. }
  592. }
  593. },
  594. getInfo10106(order_id) {
  595. if (this.$store.getters.xt_user.org_id == 3877 || this.$store.getters.xt_user.org_id == 9919 || this.$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9538 || this.$store.getters.xt_user.org_id == 9671 || this.$store.getters.xt_user.org_id == 9674 || this.$store.getters.xt_user.org_id == 10106 || this.$store.getters.xt_user.org_id == 9990 ) {
  596. var that = this
  597. axios.get('http://127.0.0.1:9532/api/settle/query', {
  598. params: {
  599. order_id: order_id,
  600. admin_user_id:that.$store.getters.xt_user.user.id
  601. }
  602. })
  603. .then(function (response) {
  604. if (response.data.state == 0) {
  605. this.$message.error(response.data.msg)
  606. return false
  607. } else {
  608. console.log("logloglog")
  609. console.log(response.data.data.info)
  610. that.info = response.data.data.info
  611. that.p_admin = response.data.data.printor_admin
  612. that.charge_admin = response.data.data.charge_admin
  613. that.order_infos = response.data.data
  614. console.log(that.info)
  615. that.info['bed_cost_total'] = response.data.data.bedCostTotal
  616. that.info['bed_cost_self_total'] = response.data.data.bedCostSelfTotal
  617. that.info['bed_cost_part_self_total'] = response.data.data.bedCostPartSelfTotal
  618. that.info['operation_cost_total'] = response.data.data.operationCostTotal
  619. that.info['operation_cost_self_total'] = response.data.data.operationCostSelfTotal
  620. that.info['operation_cost_part_self_total'] = response.data.data.operationCostPartSelfTotal
  621. that.info['other_cost_total'] = response.data.data.otherCostTotal
  622. that.info['other_cost_self_total'] = response.data.data.otherCostSelfTotal
  623. that.info['other_cost_part_self_total'] = response.data.data.otherCostPartSelfTotal
  624. that.info['material_cost_total'] = response.data.data.materialCostTotal
  625. that.info['material_cost_self_total'] = response.data.data.materialCostSelfTotal
  626. that.info['material_cost_part_self_total'] = response.data.data.materialCostPartSelfTotal
  627. that.info['western_medicine_cost_total'] = response.data.data.westernMedicineCostTotal
  628. that.info['western_medicine_cost_self_total'] = response.data.data.westernMedicineCostSelfTotal
  629. that.info['western_medicine_cost_part_self_total'] = response.data.data.westernMedicineCostPartSelfTotal
  630. that.info['chinese_traditional_medicine_cost_total'] = response.data.data.chineseTraditionalMedicineCostTotal
  631. that.info['chinese_traditional_medicine_cost_self_total'] = response.data.data.chineseTraditionalMedicineCostSelfTotal
  632. that.info['chinese_traditional_medicine_cost_part_self_total'] = response.data.data.chineseTraditionalMedicineCostPartSelfTotal
  633. that.info['check_cost_total'] = response.data.data.checkCostTotal
  634. that.info['check_cost_self_total'] = response.data.data.checkCostSelfTotal
  635. that.info['check_cost_part_self_total'] = response.data.data.checkCostPartSelfTotal
  636. that.info['laboratory_cost_total'] = response.data.data.laboratoryCostTotal
  637. that.info['laboratory_cost_self_total'] = response.data.data.laboratoryCostSelfTotal
  638. that.info['laboratory_cost_part_self_total'] = response.data.data.laboratoryCostPartSelfTotal
  639. that.info['treat_cost_total'] = response.data.data.treatCostTotal
  640. that.info['treat_cost_self_total'] = response.data.data.treatCostSelfTotal
  641. that.info['treat_cost_part_self_total'] = response.data.data.treatCostPartSelfTotal
  642. console.log(this.info)
  643. }
  644. })
  645. .catch(function (error) {
  646. });
  647. }
  648. },
  649. // getinfos(order_id){
  650. // let params = {
  651. // id: order_id
  652. // }
  653. // getHisOrderDetailCollect(params).then(res =>{
  654. // console.log('mmmmmmmm',res);
  655. // if(res.data.state == 0){
  656. // }else{
  657. // var order_info = res.data.data.order_info
  658. // let chrgitm_lvs = []
  659. // let advice = []
  660. // let good = []
  661. // let project = []
  662. // for(let i=0;i<order_info.length;i++){
  663. // if(order_info[i].advice.advice_name !=''){
  664. // const adv={
  665. // advice_name:order_info[i].advice.advice_name,
  666. // // good_name:order_info[i].project.good_info.good_name,
  667. // // project_name:order_info[i].project.project.project_name,
  668. // chrgitm_lv:order_info[i].chrgitm_lv,
  669. // }
  670. // advice.push(adv)
  671. // }
  672. // if(order_info[i].project.good_info.good_name !=''){
  673. // const god={
  674. // // advice_name:order_info[i].advice.advice_name,
  675. // good_name:order_info[i].project.good_info.good_name,
  676. // // project_name:order_info[i].project.project.project_name,
  677. // chrgitm_lv:order_info[i].chrgitm_lv,
  678. // }
  679. // good.push(god)
  680. // }
  681. // if(order_info[i].project.project.project_name !=''){
  682. // const pro={
  683. // // advice_name:order_info[i].advice.advice_name,
  684. // // good_name:order_info[i].project.good_info.good_name,
  685. // project_name:order_info[i].project.project.project_name,
  686. // chrgitm_lv:order_info[i].chrgitm_lv,
  687. // }
  688. // project.push(pro)
  689. // }
  690. // for(let i=0;i<advice.length;i++){
  691. // for(let j=i+1;j<advice.length;j++){
  692. // if(advice[i].advice_name == advice[j].advice_name){
  693. // advice.splice(j,1)
  694. // j--
  695. // }
  696. // }
  697. // }
  698. // for(let i=0;i<good.length;i++){
  699. // for(let j=i+1;j<good.length;j++){
  700. // if(good[i].good_name == good[j].good_name){
  701. // good.splice(j,1)
  702. // j--
  703. // }
  704. // }
  705. // }
  706. // for(let i=0;i<project.length;i++){
  707. // for(let j=i+1;j<project.length;j++){
  708. // if(project[i].project_name == project[j].project_name){
  709. // project.splice(j,1)
  710. // j--
  711. // }
  712. // }
  713. // }
  714. // chrgitm_lvs = [...advice,...good,...project]
  715. // for(let i in this.list){
  716. // for(let j in chrgitm_lvs){
  717. // if(this.list[i].is_total ==0){
  718. // if(this.list[i].name == chrgitm_lvs[j].advice_name ||
  719. // this.list[i].name == chrgitm_lvs[j].good_name ||
  720. // this.list[i].name == chrgitm_lvs[j].project_name
  721. // ){
  722. // this.list[i]['chrgitm_lv'] = chrgitm_lvs[j].chrgitm_lv
  723. // }
  724. // }
  725. // }
  726. // }
  727. // }
  728. // }
  729. // })
  730. // }
  731. }
  732. }
  733. </script>
  734. <style>
  735. .dialysis-print-order {
  736. width: 960px;
  737. margin: 0 auto;
  738. }
  739. .dialysis-print-order .order-yy-name {
  740. margin: auto;
  741. text-align: center;
  742. font-size: 20px;
  743. letter-spacing: 5px;
  744. }
  745. .dialysis-print-order .order-title {
  746. margin: auto;
  747. font-weight: 600;
  748. text-align: center;
  749. font-size: 22px;
  750. padding: 10px;
  751. }
  752. .dialysis-print-order .table-box {
  753. width: 100%;
  754. line-height: 23px;
  755. font-size: 14px;
  756. }
  757. .dialysis-print-order .print-table {
  758. width: 100%;
  759. text-align: center;
  760. border-collapse: collapse;
  761. line-height: 40px;
  762. font-size: 14px;
  763. border-color: #000;
  764. }
  765. .dialysis-print-order .print-table-no {
  766. width: 100%;
  767. text-align: center;
  768. border-collapse: collapse;
  769. font-size: 14px;
  770. }
  771. .dialysis-print-order .under-line {
  772. border-bottom: 1px solid #999;
  773. width: 95%;
  774. text-align: center;
  775. margin-left: 2px;
  776. }
  777. .dialysis-print-order .title-box {
  778. text-align: center;
  779. font-size: 16px;
  780. }
  781. .dialysis-print-order .radio-lebel-box {
  782. font-weight: 400;
  783. cursor: pointer;
  784. }
  785. .dialysis-print-order .radio-no {
  786. opacity: 0;
  787. outline: none;
  788. position: absolute;
  789. margin: 0;
  790. width: 0;
  791. height: 0;
  792. z-index: -1;
  793. }
  794. .dialysis-print-order .radio-inner {
  795. white-space: nowrap;
  796. cursor: pointer;
  797. outline: none;
  798. display: inline-block;
  799. line-height: 1;
  800. position: relative;
  801. vertical-align: middle;
  802. }
  803. .dialysis-print-order .radio-fang {
  804. display: inline-block;
  805. position: relative;
  806. border: 1px solid #000;
  807. box-sizing: border-box;
  808. width: 14px;
  809. height: 14px;
  810. background-color: #fff;
  811. z-index: 1;
  812. transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
  813. background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
  814. }
  815. .dialysis-print-order .is-checked-radio::after {
  816. content: "√";
  817. font-size: 15px;
  818. }
  819. .dialysis-print-order .print-table-no tr td {
  820. padding: 8px 5px;
  821. line-height: 25px;
  822. }
  823. .dialysis-print-order .print-table tr td {
  824. padding: 1px 1px;
  825. /*line-height: 25px;*/
  826. }
  827. .es-img {
  828. height: 30px;
  829. }
  830. .advice-name {
  831. text-align: left;
  832. }
  833. .advice-children {
  834. display: flex;
  835. }
  836. .title-box-pro {
  837. border: 0 #fff;
  838. line-height: 25px;
  839. height: 25px;
  840. text-align: left;
  841. padding-left: 10px !important;
  842. }
  843. .title-box-pro-tr {
  844. border: 0 #fff;
  845. }
  846. .text-align-left {
  847. text-align: left !important;
  848. padding-left: 10px !important;
  849. font-size: 14px !important;
  850. line-height: 25px;
  851. }
  852. .print-table-tr-new td {
  853. line-height: 20px !important;
  854. }
  855. .border-top-solid {
  856. border: solid 1px #000;
  857. }
  858. .print-template-two tr {
  859. line-height: 30px;
  860. }
  861. .table-box1 {
  862. border: 1px solid #000;
  863. width: 100%;
  864. line-height: 30px;
  865. font-size: 14px;
  866. border-collapse: collapse;
  867. }
  868. .table-box1 tr {
  869. border-bottom: 1px solid #000;
  870. }
  871. </style>
  872. <style lang="scss">
  873. .newContainer {
  874. .dialysisPage::-webkit-scrollbar {
  875. height: 15px;
  876. }
  877. .el-date-editor {
  878. .el-input__inner {
  879. padding-right: 0px;
  880. }
  881. }
  882. .el-table td, .el-table th {
  883. text-align: center;
  884. }
  885. }
  886. .newContainer::-webkit-scrollbar {
  887. height: 15px !important;
  888. }
  889. </style>