Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

statementPrint.vue 59KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569
  1. <template>
  2. <!-- 打印 -->
  3. <div>
  4. <template>
  5. <el-button
  6. style="position: fixed; right: 25px; z-index: 999"
  7. :loading="loading"
  8. size="small"
  9. icon="el-icon-printer"
  10. @click="printThisPage"
  11. type="primary"
  12. >打印
  13. </el-button>
  14. </template>
  15. <div class="dialysisPage" style="padding-top: 40px">
  16. <div
  17. v-if="
  18. org_id == 9990 ||
  19. org_id == 10138 ||
  20. org_id == 9504 ||
  21. org_id == 10028 ||
  22. org_id == 10278
  23. "
  24. >
  25. <printTwo :info="info" v-if="org_id == 9990"></printTwo>
  26. <printThree
  27. :info="info"
  28. :paramsObj="paramsObj"
  29. :balanceAccounts="balanceAccounts"
  30. v-if="org_id == 10138 || org_id == 10278 "
  31. ></printThree>
  32. <printFour
  33. v-if="org_id == 9504 || org_id == 10028 || org_id == 10088 "
  34. :info="info"
  35. :paramsObj="paramsObj"
  36. :balanceAccounts="balanceAccounts"
  37. ></printFour>
  38. </div>
  39. <!-- <print-other :info="info" v-if="org_id == 9919"></print-other>-->
  40. <!-- <printOne :info=" info" v-if="org_id == 10215 && this.paramsObj.balance_accounts_type == 2"></printOne>-->
  41. <!-- <printFive-->
  42. <!-- v-if="org_id == 10191"-->
  43. <!-- :info="info"-->
  44. <!-- :paramsObj="paramsObj"-->
  45. <!-- :balanceAccounts="balanceAccounts"-->
  46. <!-- ></printFive>-->
  47. <printSeven
  48. v-if="org_id == 10387"
  49. :info="info"
  50. :paramsObj="paramsObj"
  51. :balanceAccounts="balanceAccounts"
  52. >
  53. </printSeven>
  54. <print10191 :info="info" v-if="org_id == 10191"></print10191>
  55. <printTen :info="info" v-if="org_id == 10210"></printTen>
  56. <printEleven :info="info" v-if="org_id == 10485"></printEleven>
  57. <!-- 阜阳经沃 org_id != 0 && -->
  58. <printtwelve :info="info" v-if="org_id == 10480 "></printtwelve>
  59. <!-- 大冶 -->
  60. <printthirteen :info="info" v-if="org_id == 10510 || org_id == 0"></printthirteen>
  61. <printOne :info="info" v-if=" org_id != 9990 &&
  62. org_id != 10138 &&
  63. org_id != 9504 &&
  64. org_id != 10028 &&
  65. org_id != 0 &&
  66. org_id != 10278 && org_id != 10387 && org_id != 10191 &&org_id != 10210 &&org_id != 10485 &&org_id != 10480 &&org_id != 10510 && this.paramsObj.balance_accounts_type == 1">
  67. </printOne>
  68. <privateChargePrint :info="info" v-if="org_id != 9990 &&
  69. org_id != 10138 &&
  70. org_id != 9504 &&
  71. org_id != 10028 &&
  72. org_id != 10278 && org_id != 10387 && org_id != 10191 &&org_id != 10210 &&org_id != 10485 &&org_id != 10480 &&org_id != 10510 && org_id != 0 && this.paramsObj.balance_accounts_type == 2">
  73. </privateChargePrint>
  74. </div>
  75. </div>
  76. </template>
  77. <script>
  78. import { uParseTime } from '@/utils/tools'
  79. import axios from 'axios'
  80. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  81. import printOne from './statementTemplate/printOne'
  82. import privateChargePrint from './statementTemplate/privateChargePrint'
  83. import printTwo from './statementTemplate/printTwo'
  84. import printThree from './statementTemplate/printThree'
  85. import printFour from './statementTemplate/printFour'
  86. import printFive from './statementTemplate/printFive'
  87. import testVue from './statementTemplate/test'
  88. import { getAllDoctorList, getAllHisPatientList } from '@/api/project/project'
  89. import { getPrivateExpenses, getPrivateExpensesOrder, getPrivateExpensesTwo } from '@/api/his/his'
  90. import printSeven from './statementTemplate/printSeven'
  91. import Print10191 from './statementTemplate/print10191'
  92. import printTen from './statementTemplate/printTen'
  93. import printEleven from './statementTemplate/printeEleven'
  94. import printtwelve from './statementTemplate/printtwelve'
  95. import printthirteen from './statementTemplate/printthirteen'
  96. export default {
  97. name: 'dialysisPrintOrder',
  98. components: {
  99. Print10191,
  100. printSeven,
  101. BreadCrumb,
  102. printOne,
  103. privateChargePrint,
  104. printTwo,
  105. printThree,
  106. printFour,
  107. testVue,
  108. printFive,
  109. printTen,
  110. printEleven,
  111. printtwelve,
  112. printthirteen
  113. },
  114. props: {
  115. paramsObj: Object
  116. },
  117. data() {
  118. return {
  119. crumbs: [
  120. { path: false, name: '门诊医生站' },
  121. { path: false, name: '打印' }
  122. ],
  123. record_date: '',
  124. patientTableData: [],
  125. advicePrint: [],
  126. hisPatient: {},
  127. patient: {},
  128. search_input: '',
  129. loading: false,
  130. patient_id: 0,
  131. prescription_id: 0,
  132. ids: '',
  133. info: null,
  134. order: null,
  135. org_id: '',
  136. balanceAccounts: {}
  137. }
  138. },
  139. methods: {
  140. printThisPage() {
  141. var ptime = Math.round(new Date().getTime() / 1000)
  142. this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}')
  143. if (
  144. this.$store.getters.xt_user.org_id == 10138 ||
  145. this.$store.getters.xt_user.org_id == 4 ||
  146. this.$store.getters.xt_user.org_id == 10278
  147. ) {
  148. setTimeout(() => {
  149. const style =
  150. '@media print {#statement-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 47%;}}}'
  151. const style2 =
  152. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 50%;}}}'
  153. const style3 =
  154. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 55%;}}}'
  155. const style4 =
  156. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 58%;}}}'
  157. const style5 =
  158. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 61%;}}}'
  159. const style6 =
  160. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 66%;}}}'
  161. const style7 =
  162. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 71%;}}}'
  163. const style8 =
  164. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 75%;}}}'
  165. const style9 =
  166. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 80%;}}}'
  167. const style10 =
  168. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 85%;}}}'
  169. const style11 =
  170. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 87%;}}}'
  171. const style12 =
  172. '@media print {#prescription-print{font-size:14px;border:1px solid white}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 89%;}}}'
  173. if (this.num >= 13) {
  174. printJS({
  175. printable: 'prescription-print',
  176. type: 'html',
  177. style: style,
  178. scanStyles: false
  179. })
  180. } else if (this.num == 12) {
  181. printJS({
  182. printable: 'prescription-print',
  183. type: 'html',
  184. style: style2,
  185. scanStyles: false
  186. })
  187. } else if (this.num == 11) {
  188. printJS({
  189. printable: 'prescription-print',
  190. type: 'html',
  191. style: style3,
  192. scanStyles: false
  193. })
  194. } else if (this.num == 10) {
  195. printJS({
  196. printable: 'prescription-print',
  197. type: 'html',
  198. style: style4,
  199. scanStyles: false
  200. })
  201. } else if (this.num == 9) {
  202. printJS({
  203. printable: 'prescription-print',
  204. type: 'html',
  205. style: style5,
  206. scanStyles: false
  207. })
  208. } else if (this.num == 8) {
  209. printJS({
  210. printable: 'prescription-print',
  211. type: 'html',
  212. style: style6,
  213. scanStyles: false
  214. })
  215. } else if (this.num == 7) {
  216. printJS({
  217. printable: 'prescription-print',
  218. type: 'html',
  219. style: style7,
  220. scanStyles: false
  221. })
  222. } else if (this.num == 6) {
  223. printJS({
  224. printable: 'prescription-print',
  225. type: 'html',
  226. style: style8,
  227. scanStyles: false
  228. })
  229. } else if (this.num == 5) {
  230. printJS({
  231. printable: 'prescription-print',
  232. type: 'html',
  233. style: style9,
  234. scanStyles: false
  235. })
  236. } else if (this.num == 4) {
  237. printJS({
  238. printable: 'prescription-print',
  239. type: 'html',
  240. style: style10,
  241. scanStyles: false
  242. })
  243. } else if (this.num == 3) {
  244. printJS({
  245. printable: 'prescription-print',
  246. type: 'html',
  247. style: style11,
  248. scanStyles: false
  249. })
  250. } else if (this.num <= 2) {
  251. printJS({
  252. printable: 'prescription-print',
  253. type: 'html',
  254. style: style12,
  255. scanStyles: false
  256. })
  257. }
  258. }, 500)
  259. } else if (
  260. this.$store.getters.xt_user.org_id == 9504 ||
  261. this.$store.getters.xt_user.org_id == 10028
  262. ) {
  263. const style =
  264. '@media print {.printTitle{font-size: 20px;text-align: center;font-weight: bold;}.infoMain{display: flex;flex-wrap: wrap;padding:0 10px;margin-top:10px;font-size:12px;}.infoMain .infoP{width: 33%;}.chargeBox{border: 1px solid #000;font-size:12px;}.chargeUl{display:flex;justify-content: space-between;text-align: center;}.chargeUl p{line-height: 1px;}.chargeP{line-height: 1px;padding-bottom:16px;}.moneyBox{display: flex;justify-content: space-between;padding: 0 10px;background: #eeeeee;-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact;print-color-adjust:exact;height: 40px;align-items: center;border:1px solid #000; border-top:none;font-size:12px;}.actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;font-size:12px;}.actionBar div{width:150px;}}'
  265. printJS({
  266. printable: 'prescription-print',
  267. type: 'html',
  268. style: style,
  269. scanStyles: false
  270. })
  271. } else {
  272. // 医保环境打印格式
  273. if (
  274. this.$store.getters.xt_user.org_id == 9919 ||
  275. this.$store.getters.xt_user.org_id == 10106
  276. ) {
  277. const style =
  278. '@media print {.statementTitle{font-size: 28px;text-align: center;font-weight: bold;margin-bottom: 10px;}.statementTable{width: 100%;text-align: center;border-collapse: collapse;line-height: 40px;font-size: 16px;border-color: #000;}}'
  279. printJS({
  280. printable: 'statement-print',
  281. type: 'html',
  282. style: style,
  283. scanStyles: false
  284. })
  285. } else if (
  286. // this.$store.getters.xt_user.org_id == 0 ||
  287. this.$store.getters.xt_user.org_id == 10191
  288. ) {
  289. const style =
  290. '@media print {#statement-print{font-size:14px;border:1px solid white}.statementTitle{font-size: 22px;text-align: center;font-weight: bold;}table{border-collapse: collapse;text-align: center;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 57%;}}}'
  291. printJS({
  292. printable: 'statement-print',
  293. type: 'html',
  294. style: style,
  295. scanStyles: false
  296. })
  297. // const style =
  298. // "@media print {.statementTable{width: 100%;text-align: center;border-collapse: collapse;line-height: 40px;font-size: 14px;border-color: #000;} .statementTable thead{font-size: 28px;text-align: center;font-weight: bold;margin-bottom: 10px;} .statementTable tbody{text-align:left;} .statementTable tbody .view_tr{text-align:center;border: 1px solid;} tbody .dashed_tr{border: 1px dashed;text-align:center} .list_table{width: 100%;margin-bottom: 100px;} tbody tr td div{height:25px;}}";
  299. // printJS({
  300. // printable: "statement-print",
  301. // type: "html",
  302. // style: style,
  303. // scanStyles: false,
  304. // });
  305. } else if (
  306. this.$store.getters.xt_user.org_id == 10485
  307. ) {
  308. const style =
  309. '@media print {#statement-print{font-size:14px;border:1px solid white}.statementTitle{font-size: 22px;text-align: center;font-weight: bold;}table tr td {padding: 5px;line-height: 30px;border: none;}'
  310. printJS({
  311. printable: 'statement-print',
  312. type: 'html',
  313. style: style,
  314. scanStyles: false
  315. })
  316. }else if (
  317. this.$store.getters.xt_user.org_id == 10480
  318. ) {
  319. const style =
  320. '@media print {#statement-print{font-size:14px;border:1px solid white}.statementTitle{font-size: 22px;text-align: center;font-weight: bold;}table tr td {padding: 2px;line-height: 30px;border: 1px solid black;text-align: center;}'
  321. printJS({
  322. printable: 'statement-print',
  323. type: 'html',
  324. style: style,
  325. scanStyles: false
  326. })
  327. }else if( this.$store.getters.xt_user.org_id == 10510 || this.$store.getters.xt_user.org_id == 0) {
  328. const style =
  329. '@media print {#statement-print{font-size:14px;border:1px solid white}.statementTitle{font-size: 22px;text-align: center;font-weight: bold;}table{border-collapse: collapse;text-align: center;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 57%;}}}'
  330. printJS({
  331. printable: 'statement-print',
  332. type: 'html',
  333. style: style,
  334. scanStyles: false
  335. })
  336. } else {
  337. const style =
  338. '@media print {#statement-print{font-size:14px;border:1px solid white}.statementTitle{font-size: 22px;text-align: center;font-weight: bold;}table{border-collapse: collapse;text-align: center;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 57%;}}}'
  339. printJS({
  340. printable: 'statement-print',
  341. type: 'html',
  342. style: style,
  343. scanStyles: false
  344. })
  345. }
  346. }
  347. // if (this.org_template_info.template_id == 1) {
  348. // printJS({
  349. // printable: "dialysis-print-box",
  350. // type: "html",
  351. // style: style,
  352. // scanStyles: false
  353. // });
  354. // }
  355. },
  356. getAllDoctorList() {
  357. getAllDoctorList().then((response) => {
  358. if (response.data.state == 1) {
  359. var doctor = response.data.data.doctor
  360. this.doctorList = doctor
  361. }
  362. })
  363. }, getType(med_chrgitm_type) {
  364. switch (med_chrgitm_type) {
  365. case '01':
  366. return '床位费'
  367. break
  368. case '02':
  369. return '诊察费'
  370. break
  371. case '03':
  372. return '检查费'
  373. break
  374. case '04':
  375. return '化验费'
  376. break
  377. case '05':
  378. return '治疗费'
  379. break
  380. case '06':
  381. return '手术费'
  382. break
  383. case '07':
  384. return '护理费'
  385. break
  386. case '08':
  387. return '材料费'
  388. break
  389. case '09':
  390. return '西药费'
  391. break
  392. case '10':
  393. return '中药饮片费'
  394. break
  395. case '11':
  396. return '中成药费'
  397. break
  398. case '12':
  399. return '一般诊疗费'
  400. break
  401. case '13':
  402. return '挂号费'
  403. break
  404. case '14':
  405. return '其他费'
  406. break
  407. }
  408. },
  409. getAllHisPatientList() {
  410. const params = {
  411. record_date: this.record_date
  412. }
  413. getAllHisPatientList(params).then((response) => {
  414. if (response.data.state == 1) {
  415. this.patientTableData = response.data.data.list
  416. this.patientTableDataTwo = response.data.data.list
  417. let cal_one = 0
  418. let cal_two = 0
  419. for (let i = 0; i < response.data.data.list.length; i++) {
  420. if (
  421. response.data.data.list[i].prescription == null ||
  422. response.data.data.list[i].prescription.length == 0
  423. ) {
  424. cal_one = cal_one + 1
  425. }
  426. if (
  427. response.data.data.list[i].prescription != null &&
  428. response.data.data.list[i].prescription.length > 0
  429. ) {
  430. cal_two = cal_two + 1
  431. }
  432. }
  433. // this.$refs.tab.setCurrentRow(this.patientTableData[0])
  434. // console.log(this.patientTableData[0])
  435. // this.choosePatient(this.patientTableData[0])
  436. this.cal_one = cal_one
  437. this.cal_two = cal_two
  438. }
  439. })
  440. },
  441. changePatient(row) {
  442. console.log('row', row)
  443. this.patient_id = row.patient_id
  444. this.record_date = this.record_date
  445. this.prescription_id = this.prescription_id
  446. // var params = {
  447. // patient_id:row.patient_id,
  448. // record_date:this.record_date,
  449. // prescription_id:this.prescription_id,
  450. // }
  451. // getPrescriptionPrint(params).then(response=>{
  452. // if(response.data.state == 1){
  453. // var advicePrint = response.data.data.advicePrint
  454. // console.log("adviceprint",advicePrint)
  455. // this.advicePrint = advicePrint
  456. // // var hisPatient = response.data.data.hisPatient
  457. // // console.log("hispatient",hisPatient)
  458. // // this.hisPatient = hisPatient
  459. // var patient = response.data.data.patient
  460. // console.log("patient",patient)
  461. // this.patient = patient
  462. // var doctorPorject = response.data.data.doctorPorject
  463. // console.log("doctorporject",doctorPorject)
  464. // }
  465. // })
  466. },
  467. getTimes(time) {
  468. return uParseTime(time, '{y}-{m}-{d}')
  469. }, getTotal: function(items) {
  470. let total = 0
  471. for (let i = 0; i < items.length; i++) {
  472. total = Number(total) + Number(parseFloat(items[i].cnt) * parseFloat(items[i].pric))
  473. }
  474. return total.toFixed(2)
  475. },
  476. set10265NewData(details) {
  477. var list = []
  478. for (let a = 0; a < details.length; a++) {
  479. let obj = {}
  480. if(details[a].advice_id > 0 && details[a].project_id == 0) {
  481. obj['yibao_code'] = details[a].advice.drug.medical_insurance_number
  482. obj['yiyuan_code'] = details[a].advice.drug.id
  483. obj['name'] = details[a].advice.advice_name
  484. obj['unit'] = details[a].advice.prescribing_number_unit
  485. 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
  486. obj['count'] = details[a].cnt
  487. obj['price'] = parseFloat(details[a].pric)
  488. obj['total_price'] = parseFloat(details[a].det_item_fee_sumamt)
  489. obj['psn_pay'] = (details[a].selfpay_prop * details[a].det_item_fee_sumamt).toFixed(2)
  490. // obj['yibao_biaozhi'] = details[a].
  491. list.push(obj)
  492. }
  493. if(details[a].advice_id == 0 && details[a].project_id > 0 && details[a].project.type == 2) {
  494. obj['yibao_code'] = details[a].project.project.medical_code
  495. obj['yiyuan_code'] = details[a].project.project.id
  496. obj['name'] = details[a].project.project.project_name
  497. obj['unit'] = details[a].project.project.unit
  498. obj['spec'] = ""
  499. obj['count'] = details[a].cnt
  500. obj['price'] = parseFloat(details[a].pric)
  501. obj['psn_pay'] = (details[a].selfpay_prop * details[a].det_item_fee_sumamt).toFixed(2)
  502. obj['total_price'] = parseFloat(details[a].det_item_fee_sumamt)
  503. list.push(obj)
  504. }
  505. if(details[a].advice_id == 0 && details[a].project_id > 0 && details[a].project.type == 3) {
  506. obj['yibao_code'] = details[a].project.good_info.medical_insurance_number
  507. obj['yiyuan_code'] = details[a].project.good_info.id
  508. obj['name'] = details[a].project.good_info.good_name
  509. obj['unit'] = details[a].project.good_info.packing_unit
  510. obj['spec'] = details[a].project.good_info.specification_name
  511. obj['count'] = details[a].cnt
  512. obj['price'] = parseFloat(details[a].pric)
  513. obj['psn_pay'] = (details[a].selfpay_prop * details[a].det_item_fee_sumamt).toFixed(2)
  514. obj['total_price'] = parseFloat(details[a].det_item_fee_sumamt)
  515. list.push(obj)
  516. }
  517. }
  518. return list
  519. },
  520. searchAction() {
  521. },
  522. getInfo(order_id, obj) {
  523. if (obj.balance_accounts_type == 2) {
  524. let params = {
  525. his_patient_id: obj.his_patient_id,
  526. id: obj.order_id,
  527. order_id: obj.order_id,
  528. admin_user_id: this.$store.getters.xt_user.user.id
  529. }
  530. if (
  531. this.org_id == 10138 ||
  532. this.org_id == 10278
  533. ) {
  534. getPrivateExpenses(params).then((response) => {
  535. if (response.data.state == 0) {
  536. // this.$message.error(response.data.msg)
  537. return false
  538. } else {
  539. this.balanceAccounts = response.data.data
  540. let arr = []
  541. let obj = {
  542. type: 1,
  543. details: [],
  544. total: 0
  545. }
  546. let obj2 = {
  547. type: 2,
  548. details: [],
  549. total: 0
  550. }
  551. let obj3 = {
  552. type: 3,
  553. details: [],
  554. total: 0
  555. }
  556. let num = 0
  557. let obj4 = {
  558. type: 4,
  559. details: [],
  560. total: 0
  561. }
  562. this.balanceAccounts.order_info.map((item) => {
  563. if (item.advice_id > 0) {
  564. obj.details.push(item)
  565. obj.total += item.pric.toFixed(2) * item.advice.prescribing_number
  566. num++
  567. } else {
  568. if (item.project.type == 2) {
  569. obj2.details.push(item)
  570. obj2.total += item.pric * item.project.count
  571. num++
  572. } else {
  573. obj3.details.push(item)
  574. obj3.total += item.pric * item.project.count
  575. num++
  576. }
  577. }
  578. })
  579. if (this.balanceAccounts.new_order_info != null) {
  580. this.balanceAccounts.new_order_info.map((item) => {
  581. obj2.total = obj2.total + item.Total
  582. var newObj = {
  583. pric: parseFloat(item.Total),
  584. project: {
  585. count: 1,
  586. project: {
  587. project_name: item.Name,
  588. unit: ''
  589. }
  590. }
  591. }
  592. obj2.details.push(newObj)
  593. num++
  594. })
  595. }
  596. this.balanceAccounts.new_detail_list = []
  597. this.balanceAccounts.new_detail_list.push(obj)
  598. this.balanceAccounts.new_detail_list.push(obj2)
  599. this.balanceAccounts.new_detail_list.push(obj3)
  600. // this.balanceAccounts.new_detail_list.push(obj4)
  601. console.log(111, this.balanceAccounts)
  602. this.num = num
  603. console.log('this.num', this.num)
  604. }
  605. })
  606. } else if (this.org_id == 10028 || this.org_id == 9504) {
  607. getPrivateExpenses(params).then((response) => {
  608. if (response.data.state == 0) {
  609. // this.$message.error(response.data.msg)
  610. return false
  611. } else {
  612. this.balanceAccounts = response.data.data
  613. let obj = {
  614. type: 1,
  615. details: [],
  616. total: 0
  617. }
  618. let obj2 = {
  619. type: 2,
  620. details: [],
  621. total: 0
  622. }
  623. let obj3 = {
  624. type: 3,
  625. details: [],
  626. total: 0
  627. }
  628. this.balanceAccounts.order_info.map((item) => {
  629. if (item.advice_id > 0) {
  630. obj.details.push(item)
  631. obj.total += item.pric * item.advice.prescribing_number
  632. } else {
  633. if (item.project.type == 2) {
  634. obj2.details.push(item)
  635. obj2.total += item.pric * item.project.count
  636. } else {
  637. obj3.details.push(item)
  638. obj3.total += item.pric * item.project.count
  639. }
  640. }
  641. })
  642. this.balanceAccounts.new_detail_list = []
  643. this.balanceAccounts.new_detail_list.push(obj)
  644. this.balanceAccounts.new_detail_list.push(obj2)
  645. this.balanceAccounts.new_detail_list.push(obj3)
  646. console.log(111, this.balanceAccounts)
  647. }
  648. })
  649. } else {
  650. console.log("------==========`````")
  651. getPrivateExpensesOrder(params).then((response) => {
  652. if (response.data.state == 0) {
  653. // this.$message.error(response.data.msg)
  654. return false
  655. } else {
  656. var that = this
  657. that.info = response.data.data.info
  658. that.p_admin = response.data.data.printor_admin
  659. that.charge_admin = response.data.data.charge_admin
  660. that.info['new_order'] = response.data.data.info
  661. that.info['p_admin'] = that.p_admin
  662. that.info['charge_admin'] = that.charge_admin
  663. that.info['order_number'] = response.data.data.order_number
  664. that.info['patient'] = response.data.data.patient
  665. that.info['date'] = response.data.data.date
  666. that.info['number'] = response.data.data.number
  667. that.info['order_infos'] = response.data.data.order_infos
  668. that.info['diagnosis'] = response.data.data.diagnosis
  669. that.info['fixmedins_name'] = response.data.data.org_name
  670. that.info['fixmedins_code'] = response.data.data.org_code
  671. // that.info["doctor_code"] = response.data.data.doctor_code;
  672. // that.info["department"] = response.data.data.department;
  673. // that.info["health_card_no"] = response.data.data.health_card_no;
  674. that.info['bed_cost_total'] = response.data.data.bedCostTotal
  675. that.info['bed_cost_self_total'] =
  676. response.data.data.bedCostSelfTotal
  677. that.info['bed_cost_part_self_total'] =
  678. response.data.data.bedCostPartSelfTotal
  679. that.info['operation_cost_total'] =
  680. response.data.data.operationCostTotal
  681. that.info['operation_cost_self_total'] =
  682. response.data.data.operationCostSelfTotal
  683. that.info['operation_cost_part_self_total'] =
  684. response.data.data.operationCostPartSelfTotal
  685. that.info['other_cost_total'] = response.data.data.otherCostTotal
  686. that.info['other_cost_self_total'] =
  687. response.data.data.otherCostSelfTotal
  688. that.info['other_cost_part_self_total'] =
  689. response.data.data.otherCostPartSelfTotal
  690. that.info['material_cost_total'] =
  691. response.data.data.materialCostTotal
  692. that.info['material_cost_self_total'] =
  693. response.data.data.materialCostSelfTotal
  694. that.info['material_cost_part_self_total'] =
  695. response.data.data.materialCostPartSelfTotal
  696. that.info['western_medicine_cost_total'] =
  697. response.data.data.westernMedicineCostTotal
  698. that.info['western_medicine_cost_self_total'] =
  699. response.data.data.westernMedicineCostSelfTotal
  700. that.info['western_medicine_cost_part_self_total'] =
  701. response.data.data.westernMedicineCostPartSelfTotal
  702. that.info['chinese_traditional_medicine_cost_total'] =
  703. response.data.data.chineseTraditionalMedicineCostTotal
  704. that.info['chinese_traditional_medicine_cost_self_total'] =
  705. response.data.data.chineseTraditionalMedicineCostSelfTotal
  706. that.info['chinese_traditional_medicine_cost_part_self_total'] =
  707. response.data.data.chineseTraditionalMedicineCostPartSelfTotal
  708. that.info['check_cost_total'] = response.data.data.checkCostTotal
  709. that.info['check_cost_self_total'] =
  710. response.data.data.checkCostSelfTotal
  711. that.info['check_cost_part_self_total'] =
  712. response.data.data.checkCostPartSelfTotal
  713. that.info['laboratory_cost_total'] =
  714. response.data.data.laboratoryCostTotal
  715. that.info['laboratory_cost_self_total'] =
  716. response.data.data.laboratoryCostSelfTotal
  717. that.info['laboratory_cost_part_self_total'] =
  718. response.data.data.laboratoryCostPartSelfTotal
  719. that.info['treat_cost_total'] = response.data.data.treatCostTotal
  720. that.info['treat_cost_self_total'] =
  721. response.data.data.treatCostSelfTotal
  722. that.info['treat_cost_part_self_total'] =
  723. response.data.data.treatCostPartSelfTotal
  724. that.info['date'] = response.data.data.date
  725. that.info['number'] = response.data.data.number
  726. that.info['order_infos'] = response.data.data.order_infos
  727. that.info['diagnosis'] = response.data.data.diagnosis
  728. that.info['his'] = response.data.data.his
  729. for (let i = 0; i < response.data.data.order_infos.length; i++) {
  730. if (response.data.data.order_infos[i].advice_id > 0 && response.data.data.order_infos[i].project_id == 0) {
  731. response.data.data.order_infos[i].med_chrgitm_type = '09'
  732. }
  733. if (response.data.data.order_infos[i].advice_id == 0 && response.data.data.order_infos[i].project_id > 0) {
  734. if (response.data.data.order_infos[i].project.type == 2) { //项目
  735. if (response.data.data.order_infos[i].project.project.cost_classify == 2) {
  736. response.data.data.order_infos[i].med_chrgitm_type = '05'
  737. } else if (response.data.data.order_infos[i].project.project.cost_classify == 3) {
  738. response.data.data.order_infos[i].med_chrgitm_type = '04'
  739. } else {
  740. response.data.data.order_infos[i].med_chrgitm_type = '14'
  741. }
  742. } else if (response.data.data.order_infos[i].project.type == 3) { //耗材
  743. response.data.data.order_infos[i].med_chrgitm_type = '08'
  744. }
  745. }
  746. }
  747. console.log(response.data.data.order_infos)
  748. console.log(that.info)
  749. var list = []
  750. //获取所有项目类型进行去重
  751. let med_chrgitm_types = []
  752. for (let i = 0; i < response.data.data.order_infos.length; i++) {
  753. med_chrgitm_types.push(response.data.data.order_infos[i].med_chrgitm_type)
  754. }
  755. const obj10 = {}
  756. med_chrgitm_types = med_chrgitm_types.reduce((cur, next) => {
  757. obj10[next] ? '' : obj10[next] = true && cur.push(next)
  758. return cur
  759. }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  760. let tempOrderInfo = []
  761. for (let i = 0; i < med_chrgitm_types.length; i++) {
  762. let obj9 = {
  763. details: [],
  764. med_chrgitm_name: that.getType(med_chrgitm_types[i]),
  765. total:0,
  766. }
  767. // if(med_chrgitm_types[i] == '09'){
  768. // obj.sort = 99
  769. // } else if(med_chrgitm_types[i] == '05'){
  770. // obj.sort = 98
  771. // } else if(med_chrgitm_types[i] == '08'){
  772. // obj.sort = 97
  773. // }else if(med_chrgitm_types[i] == '03'){
  774. // obj.sort = 96
  775. // }
  776. let tempDetails = []
  777. for (let b = 0; b < response.data.data.order_infos.length; b++) {
  778. if (med_chrgitm_types[i] == response.data.data.order_infos[b].med_chrgitm_type) {
  779. tempDetails.push(response.data.data.order_infos[b])
  780. }
  781. }
  782. console.log(med_chrgitm_types[i])
  783. console.log(tempDetails)
  784. obj9.total = that.getTotal(tempDetails)
  785. obj9.details = that.set10265NewData(tempDetails)
  786. list.push(obj9)
  787. }
  788. that.info['new_list'] = list
  789. // list.sort((a,b) => a.sort < b.sort ? 1 : a.sort > b.sort ? -1 : 0)
  790. let obj = {
  791. type: 1,
  792. details: [],
  793. total: 0
  794. }
  795. let obj2 = {
  796. type: 2,
  797. details: [],
  798. total: 0
  799. }
  800. let obj3 = {
  801. type: 3,
  802. details: [],
  803. total: 0
  804. }
  805. let obj4 = {
  806. type: 4,
  807. details: [],
  808. total: 0
  809. }
  810. let num = 0
  811. that.info.order_infos.map((item) => {
  812. if (item.advice_id > 0) {
  813. obj.details.push(item)
  814. obj.total += item.pric * item.advice.prescribing_number
  815. num++
  816. } else {
  817. if (item.project.type == 2) {
  818. obj2.details.push(item)
  819. obj2.total += item.pric * item.project.count
  820. num++
  821. } else {
  822. obj3.details.push(item)
  823. obj3.total += item.pric * item.project.count
  824. num++
  825. }
  826. }
  827. })
  828. // this.info.order_infos.map(item => {
  829. // obj4.total = item.Total
  830. // obj4.details.push(item)
  831. // num++
  832. //
  833. // })
  834. that.info.new_detail_list = []
  835. that.info.new_detail_list.push(obj)
  836. that.info.new_detail_list.push(obj2)
  837. that.info.new_detail_list.push(obj3)
  838. // that.info.new_detail_list.push(obj4)
  839. that.num = num
  840. if (that.paramsObj.settle_type != 1) {
  841. that.info.begndate = that.getTimes(that.paramsObj.start_time)
  842. that.info.enddate = that.getTimes(that.paramsObj.end_time)
  843. }
  844. that.info.order_infos.map((item) => {
  845. })
  846. }
  847. })
  848. }
  849. } else {
  850. console.log(this.org_id)
  851. if (this.org_id == 0) {
  852. let params = {
  853. order_id: obj.order_id,
  854. admin_user_id: this.$store.getters.xt_user.user.id
  855. }
  856. getPrivateExpensesTwo(params).then((response) => {
  857. if (response.data.state == 0) {
  858. // this.$message.error(response.data.msg)
  859. return false
  860. } else {
  861. var that = this
  862. that.info = response.data.data.info
  863. that.p_admin = response.data.data.printor_admin
  864. that.charge_admin = response.data.data.charge_admin
  865. that.info['p_admin'] = that.p_admin
  866. that.info['charge_admin'] = that.charge_admin
  867. that.info['order_number'] = response.data.data.order_number
  868. that.info['patient'] = response.data.data.patient
  869. that.info['date'] = response.data.data.date
  870. that.info['number'] = response.data.data.number
  871. that.info['order_infos'] = response.data.data.order_infos
  872. that.info['diagnosis'] = response.data.data.diagnosis
  873. that.info['fixmedins_name'] = response.data.data.org_name
  874. that.info['fixmedins_code'] = response.data.data.org_code
  875. // that.info["doctor_code"] = response.data.data.doctor_code;
  876. // that.info["department"] = response.data.data.department;
  877. // that.info["health_card_no"] = response.data.data.health_card_no;
  878. that.info['bed_cost_total'] = response.data.data.bedCostTotal
  879. that.info['bed_cost_self_total'] =
  880. response.data.data.bedCostSelfTotal
  881. that.info['bed_cost_part_self_total'] =
  882. response.data.data.bedCostPartSelfTotal
  883. that.info['operation_cost_total'] =
  884. response.data.data.operationCostTotal
  885. that.info['operation_cost_self_total'] =
  886. response.data.data.operationCostSelfTotal
  887. that.info['operation_cost_part_self_total'] =
  888. response.data.data.operationCostPartSelfTotal
  889. that.info['other_cost_total'] = response.data.data.otherCostTotal
  890. that.info['other_cost_self_total'] =
  891. response.data.data.otherCostSelfTotal
  892. that.info['other_cost_part_self_total'] =
  893. response.data.data.otherCostPartSelfTotal
  894. that.info['material_cost_total'] =
  895. response.data.data.materialCostTotal
  896. that.info['material_cost_self_total'] =
  897. response.data.data.materialCostSelfTotal
  898. that.info['material_cost_part_self_total'] =
  899. response.data.data.materialCostPartSelfTotal
  900. that.info['western_medicine_cost_total'] =
  901. response.data.data.westernMedicineCostTotal
  902. that.info['western_medicine_cost_self_total'] =
  903. response.data.data.westernMedicineCostSelfTotal
  904. that.info['western_medicine_cost_part_self_total'] =
  905. response.data.data.westernMedicineCostPartSelfTotal
  906. that.info['chinese_traditional_medicine_cost_total'] =
  907. response.data.data.chineseTraditionalMedicineCostTotal
  908. that.info['chinese_traditional_medicine_cost_self_total'] =
  909. response.data.data.chineseTraditionalMedicineCostSelfTotal
  910. that.info['chinese_traditional_medicine_cost_part_self_total'] =
  911. response.data.data.chineseTraditionalMedicineCostPartSelfTotal
  912. that.info['check_cost_total'] = response.data.data.checkCostTotal
  913. that.info['check_cost_self_total'] =
  914. response.data.data.checkCostSelfTotal
  915. that.info['check_cost_part_self_total'] =
  916. response.data.data.checkCostPartSelfTotal
  917. that.info['laboratory_cost_total'] =
  918. response.data.data.laboratoryCostTotal
  919. that.info['laboratory_cost_self_total'] =
  920. response.data.data.laboratoryCostSelfTotal
  921. that.info['laboratory_cost_part_self_total'] =
  922. response.data.data.laboratoryCostPartSelfTotal
  923. that.info['treat_cost_total'] = response.data.data.treatCostTotal
  924. that.info['treat_cost_self_total'] =
  925. response.data.data.treatCostSelfTotal
  926. that.info['treat_cost_part_self_total'] =
  927. response.data.data.treatCostPartSelfTotal
  928. that.info['date'] = response.data.data.date
  929. // that.info["number"] = response.data.data.number;
  930. that.info['order_infos'] = response.data.data.order_infos
  931. that.info['diagnosis'] = response.data.data.diagnosis
  932. let list = []
  933. for (let i = 0; i < response.data.data.order_infos.length; i++) {
  934. let order = response.data.data.order_infos[i]
  935. let obj = {
  936. name: '',
  937. spec: '',
  938. cnt: '',
  939. det_item_fee_sumamt: ''
  940. }
  941. if (order.advice_id > 0 && order.project_id == 0) {
  942. obj.name = order.advice.advice_name
  943. let spec = order.advice.drug.dose + order.advice.drug.dose_unit + '*' + order.advice.drug.min_number + order.advice.drug.min_unit + '/' + order.advice.drug.max_unit
  944. obj.spec = spec
  945. obj.cnt = order.cnt
  946. obj.det_item_fee_sumamt = order.det_item_fee_sumamt
  947. list.push(obj)
  948. } else if (order.advice_id == 0 && order.project_id > 0) {
  949. if (order.project.type == 2) {
  950. obj.name = order.project.project.project_name
  951. obj.spec = ''
  952. obj.cnt = order.cnt
  953. obj.det_item_fee_sumamt = order.det_item_fee_sumamt
  954. } else {
  955. obj.name = order.project.good_info.good_name
  956. obj.spec = order.project.good_info.specification_name
  957. obj.cnt = order.cnt
  958. obj.det_item_fee_sumamt = order.det_item_fee_sumamt
  959. }
  960. list.push(obj)
  961. }
  962. }
  963. console.log(list)
  964. let len = list.length / 2
  965. let L_list = []
  966. let R_list = []
  967. len = Math.trunc(len)
  968. for (let i = 0; i < len; i++) {
  969. L_list.push(list[i])
  970. }
  971. console.log(len)
  972. for (let i = len; i < list.length; i++) {
  973. console.log(list[i])
  974. R_list.push(list[i])
  975. }
  976. console.log(L_list)
  977. console.log(R_list)
  978. that.info['L_list'] = L_list
  979. that.info['R_list'] = R_list
  980. }
  981. })
  982. } else {
  983. var that = this
  984. axios
  985. .get('http://127.0.0.1:9532/api/settle/query', {
  986. params: {
  987. order_id: order_id,
  988. admin_user_id: this.$store.getters.xt_user.user.id
  989. }
  990. })
  991. .then(function(response) {
  992. if (response.data.state == 0) {
  993. this.$message.error(response.data.msg)
  994. return false
  995. } else {
  996. console.log(response.data.data.info)
  997. that.info = response.data.data.info
  998. that.p_admin = response.data.data.printor_admin
  999. that.charge_admin = response.data.data.charge_admin
  1000. that.info['new_order'] = response.data.data.order
  1001. that.info['p_admin'] = that.p_admin
  1002. that.info['charge_admin'] = that.charge_admin
  1003. that.info['order_number'] = response.data.data.order_number
  1004. that.info['patient'] = response.data.data.patient
  1005. that.info['date'] = response.data.data.date
  1006. that.info['number'] = response.data.data.number
  1007. that.info['order_infos'] = response.data.data.order_infos
  1008. that.info['diagnosis'] = response.data.data.diagnosis
  1009. that.info['org_code'] = response.data.data.org_code
  1010. that.info['org_name'] = response.data.data.org_name
  1011. that.info['doctor_code'] = response.data.data.doctor_code
  1012. that.info['department'] = response.data.data.department
  1013. that.info['health_card_no'] = response.data.data.health_card_no
  1014. that.info['bed_cost_total'] = response.data.data.bedCostTotal
  1015. that.info['bed_cost_self_total'] =
  1016. response.data.data.bedCostSelfTotal
  1017. that.info['bed_cost_part_self_total'] =
  1018. response.data.data.bedCostPartSelfTotal
  1019. that.info['operation_cost_total'] =
  1020. response.data.data.operationCostTotal
  1021. that.info['operation_cost_self_total'] =
  1022. response.data.data.operationCostSelfTotal
  1023. that.info['operation_cost_part_self_total'] =
  1024. response.data.data.operationCostPartSelfTotal
  1025. that.info['other_cost_total'] = response.data.data.otherCostTotal
  1026. that.info['other_cost_self_total'] =
  1027. response.data.data.otherCostSelfTotal
  1028. that.info['other_cost_part_self_total'] =
  1029. response.data.data.otherCostPartSelfTotal
  1030. that.info['material_cost_total'] =
  1031. response.data.data.materialCostTotal
  1032. that.info['material_cost_self_total'] =
  1033. response.data.data.materialCostSelfTotal
  1034. that.info['material_cost_part_self_total'] =
  1035. response.data.data.materialCostPartSelfTotal
  1036. that.info['western_medicine_cost_total'] =
  1037. response.data.data.westernMedicineCostTotal
  1038. that.info['western_medicine_cost_self_total'] =
  1039. response.data.data.westernMedicineCostSelfTotal
  1040. that.info['western_medicine_cost_part_self_total'] =
  1041. response.data.data.westernMedicineCostPartSelfTotal
  1042. that.info['chinese_traditional_medicine_cost_total'] =
  1043. response.data.data.chineseTraditionalMedicineCostTotal
  1044. that.info['chinese_traditional_medicine_cost_self_total'] =
  1045. response.data.data.chineseTraditionalMedicineCostSelfTotal
  1046. that.info['chinese_traditional_medicine_cost_part_self_total'] =
  1047. response.data.data.chineseTraditionalMedicineCostPartSelfTotal
  1048. that.info['check_cost_total'] = response.data.data.checkCostTotal
  1049. that.info['check_cost_self_total'] =
  1050. response.data.data.checkCostSelfTotal
  1051. that.info['check_cost_part_self_total'] =
  1052. response.data.data.checkCostPartSelfTotal
  1053. that.info['laboratory_cost_total'] =
  1054. response.data.data.laboratoryCostTotal
  1055. that.info['laboratory_cost_self_total'] =
  1056. response.data.data.laboratoryCostSelfTotal
  1057. that.info['laboratory_cost_part_self_total'] =
  1058. response.data.data.laboratoryCostPartSelfTotal
  1059. that.info['treat_cost_total'] = response.data.data.treatCostTotal
  1060. that.info['treat_cost_self_total'] =
  1061. response.data.data.treatCostSelfTotal
  1062. that.info['treat_cost_part_self_total'] =
  1063. response.data.data.treatCostPartSelfTotal
  1064. that.info['date'] = response.data.data.date
  1065. that.info['number'] = response.data.data.number
  1066. that.info['order_infos'] = response.data.data.order_infos
  1067. that.info['bedInscpTotal'] =
  1068. response.data.data.bedInscpTotal
  1069. that.info['bedSelfTotal'] =
  1070. response.data.data.bedSelfTotal
  1071. that.info['operationInscpTotal'] =
  1072. response.data.data.operationInscpTotal
  1073. that.info['operationSelfTotal'] =
  1074. response.data.data.operationSelfTotal
  1075. that.info['checkInscpTotal'] =
  1076. response.data.data.checkInscpTotal
  1077. that.info['checkSelfTotal'] =
  1078. response.data.data.checkSelfTotal
  1079. that.info['treatInscpTotal'] =
  1080. response.data.data.treatInscpTotal
  1081. that.info['treatSelfTotal'] =
  1082. response.data.data.treatSelfTotal
  1083. that.info['laboratoryInscpTotal'] =
  1084. response.data.data.laboratoryInscpTotal
  1085. that.info['laboratorySelfTotal'] =
  1086. response.data.data.laboratorySelfTotal
  1087. that.info['westernMedicineInscpTotal'] =
  1088. response.data.data.westernMedicineInscpTotal
  1089. that.info['westernMedicineSelfTotal'] =
  1090. response.data.data.westernMedicineSelfTotal
  1091. that.info['materialInscpTotal'] =
  1092. response.data.data.materialInscpTotal
  1093. that.info['materialSelfTotal'] =
  1094. response.data.data.materialSelfTotal
  1095. that.info['chineseTraditionalInscpTotal'] =
  1096. response.data.data.chineseTraditionalInscpTotal
  1097. that.info['chineseTraditionalSelfTotal'] =
  1098. response.data.data.chineseTraditionalSelfTotal
  1099. that.info['otherInscpTotal'] =
  1100. response.data.data.otherInscpTotal
  1101. that.info['otherSelfTotal'] =
  1102. response.data.data.otherSelfTotal
  1103. //org_id 10485,此代码为阳春恒健血液透析中心结算单模版数据处理逻辑
  1104. var list = []
  1105. //获取所有项目类型进行去重
  1106. let med_chrgitm_types = []
  1107. for (let i = 0; i < response.data.data.order_infos.length; i++) {
  1108. med_chrgitm_types.push(response.data.data.order_infos[i].med_chrgitm_type)
  1109. }
  1110. const obj10 = {}
  1111. med_chrgitm_types = med_chrgitm_types.reduce((cur, next) => {
  1112. obj10[next] ? '' : obj10[next] = true && cur.push(next)
  1113. return cur
  1114. }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  1115. for (let i = 0; i < med_chrgitm_types.length; i++) {
  1116. let obj9 = {
  1117. details: [],
  1118. med_chrgitm_name: that.getType(med_chrgitm_types[i]),
  1119. total:0,
  1120. }
  1121. let tempDetails = []
  1122. for (let b = 0; b < response.data.data.order_infos.length; b++) {
  1123. if (med_chrgitm_types[i] == response.data.data.order_infos[b].med_chrgitm_type) {
  1124. tempDetails.push(response.data.data.order_infos[b])
  1125. }
  1126. }
  1127. obj9.total = that.getTotal(tempDetails)
  1128. obj9.details = that.set10265NewData(tempDetails)
  1129. list.push(obj9)
  1130. }
  1131. that.info['new_list'] = list
  1132. //org_id 10485,此代码为阳春恒健血液透析中心结算单模版数据处理逻辑
  1133. let obj = {
  1134. type: 1,
  1135. details: [],
  1136. total: 0
  1137. }
  1138. let obj2 = {
  1139. type: 2,
  1140. details: [],
  1141. total: 0
  1142. }
  1143. let obj3 = {
  1144. type: 3,
  1145. details: [],
  1146. total: 0
  1147. }
  1148. let obj4 = {
  1149. type: 4,
  1150. details: [],
  1151. total: 0
  1152. }
  1153. let num = 0
  1154. that.info.order_infos.map((item) => {
  1155. if (item.advice_id > 0) {
  1156. obj.details.push(item)
  1157. obj.total += item.pric * item.advice.prescribing_number
  1158. num++
  1159. } else {
  1160. if (item.project.type == 2) {
  1161. obj2.details.push(item)
  1162. obj2.total += item.pric * item.project.count
  1163. num++
  1164. } else {
  1165. obj3.details.push(item)
  1166. obj3.total += item.pric * item.project.count
  1167. num++
  1168. }
  1169. }
  1170. })
  1171. // this.info.order_infos.map(item => {
  1172. // obj4.total = item.Total
  1173. // obj4.details.push(item)
  1174. // num++
  1175. //
  1176. // })
  1177. that.info.new_detail_list = []
  1178. that.info.new_detail_list.push(obj)
  1179. that.info.new_detail_list.push(obj2)
  1180. that.info.new_detail_list.push(obj3)
  1181. // that.info.new_detail_list.push(obj4)
  1182. that.num = num
  1183. if (that.paramsObj.settle_type != 1) {
  1184. that.info.begndate = that.getTimes(that.paramsObj.start_time)
  1185. that.info.enddate = that.getTimes(that.paramsObj.end_time)
  1186. }
  1187. let list = []
  1188. for (let i = 0; i < response.data.data.order_infos.length; i++) {
  1189. let order = response.data.data.order_infos[i]
  1190. let obj = {
  1191. name: '',
  1192. spec: '',
  1193. cnt: '',
  1194. det_item_fee_sumamt: ''
  1195. }
  1196. if (order.advice_id > 0 && order.project_id == 0) {
  1197. obj.name = order.advice.advice_name
  1198. let spec = order.advice.drug.dose + order.advice.drug.dose_unit + '*' + order.advice.drug.min_number + order.advice.drug.min_unit + '/' + order.advice.drug.max_unit
  1199. obj.spec = spec
  1200. obj.cnt = order.cnt
  1201. obj.det_item_fee_sumamt = order.det_item_fee_sumamt
  1202. list.push(obj)
  1203. } else if (order.advice_id == 0 && order.project_id > 0) {
  1204. if (order.project.type == 2) {
  1205. obj.name = order.project.project.project_name
  1206. obj.spec = ''
  1207. obj.cnt = order.cnt
  1208. obj.det_item_fee_sumamt = order.det_item_fee_sumamt
  1209. list.push(obj)
  1210. } else {
  1211. obj.name = order.project.good_info.good_name
  1212. obj.spec = order.project.good_info.specification_name
  1213. obj.cnt = order.cnt
  1214. obj.det_item_fee_sumamt = order.det_item_fee_sumamt
  1215. list.push(obj)
  1216. }
  1217. }
  1218. }
  1219. let len = list.length / 2
  1220. let L_list = []
  1221. let R_list = []
  1222. len = Math.trunc(len)
  1223. for (let i = 0; i < len; i++) {
  1224. L_list.push(list[i])
  1225. }
  1226. for (let i = len; i < list.length; i++) {
  1227. R_list.push(list[i])
  1228. }
  1229. that.info['L_list'] = L_list
  1230. that.info['R_list'] = R_list
  1231. }
  1232. })
  1233. .catch(function(error) {
  1234. })
  1235. }
  1236. }
  1237. }
  1238. },
  1239. created() {
  1240. console.log(this.paramsObj)
  1241. this.getInfo(this.paramsObj.order_id, this.paramsObj)
  1242. this.org_id = this.$store.getters.xt_user.org_id
  1243. console.log('this.org_id', this.org_id)
  1244. },
  1245. watch: {
  1246. paramsObj: {
  1247. //深度监听,可监听到对象、数组的变化
  1248. handler(val, oldVal) {
  1249. this.paramsObj = val
  1250. console.log(this.paramsObj)
  1251. this.getInfo(this.paramsObj.order_id, this.paramsObj)
  1252. },
  1253. deep: true,
  1254. immediate: true
  1255. }
  1256. }
  1257. }
  1258. </script>
  1259. <style>
  1260. .dialysis-print-order {
  1261. width: 960px;
  1262. margin: 0 auto;
  1263. }
  1264. .dialysis-print-order .order-yy-name {
  1265. margin: auto;
  1266. text-align: center;
  1267. font-size: 20px;
  1268. letter-spacing: 5px;
  1269. }
  1270. .dialysis-print-order .order-title {
  1271. margin: auto;
  1272. font-weight: 600;
  1273. text-align: center;
  1274. font-size: 22px;
  1275. padding: 10px;
  1276. }
  1277. .dialysis-print-order .table-box {
  1278. width: 100%;
  1279. line-height: 23px;
  1280. font-size: 14px;
  1281. }
  1282. .dialysis-print-order .print-table {
  1283. width: 100%;
  1284. text-align: center;
  1285. border-collapse: collapse;
  1286. line-height: 40px;
  1287. font-size: 14px;
  1288. border-color: #000;
  1289. }
  1290. .dialysis-print-order .print-table-no {
  1291. width: 100%;
  1292. text-align: center;
  1293. border-collapse: collapse;
  1294. font-size: 14px;
  1295. }
  1296. .dialysis-print-order .under-line {
  1297. border-bottom: 1px solid #999;
  1298. width: 95%;
  1299. text-align: center;
  1300. margin-left: 2px;
  1301. }
  1302. .dialysis-print-order .title-box {
  1303. text-align: center;
  1304. font-size: 16px;
  1305. }
  1306. .dialysis-print-order .radio-lebel-box {
  1307. font-weight: 400;
  1308. cursor: pointer;
  1309. }
  1310. .dialysis-print-order .radio-no {
  1311. opacity: 0;
  1312. outline: none;
  1313. position: absolute;
  1314. margin: 0;
  1315. width: 0;
  1316. height: 0;
  1317. z-index: -1;
  1318. }
  1319. .dialysis-print-order .radio-inner {
  1320. white-space: nowrap;
  1321. cursor: pointer;
  1322. outline: none;
  1323. display: inline-block;
  1324. line-height: 1;
  1325. position: relative;
  1326. vertical-align: middle;
  1327. }
  1328. .dialysis-print-order .radio-fang {
  1329. display: inline-block;
  1330. position: relative;
  1331. border: 1px solid #000;
  1332. box-sizing: border-box;
  1333. width: 14px;
  1334. height: 14px;
  1335. background-color: #fff;
  1336. z-index: 1;
  1337. transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
  1338. background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
  1339. }
  1340. .dialysis-print-order .is-checked-radio::after {
  1341. content: "√";
  1342. font-size: 15px;
  1343. }
  1344. .dialysis-print-order .print-table-no tr td {
  1345. padding: 8px 5px;
  1346. line-height: 25px;
  1347. }
  1348. .dialysis-print-order .print-table tr td {
  1349. padding: 1px 1px;
  1350. /*line-height: 25px;*/
  1351. }
  1352. .es-img {
  1353. height: 30px;
  1354. }
  1355. .advice-name {
  1356. text-align: left;
  1357. }
  1358. .advice-children {
  1359. display: flex;
  1360. }
  1361. .title-box-pro {
  1362. border: 0 #fff;
  1363. line-height: 25px;
  1364. height: 25px;
  1365. text-align: left;
  1366. padding-left: 10px !important;
  1367. }
  1368. .title-box-pro-tr {
  1369. border: 0 #fff;
  1370. }
  1371. .text-align-left {
  1372. text-align: left !important;
  1373. padding-left: 10px !important;
  1374. font-size: 14px !important;
  1375. line-height: 25px;
  1376. }
  1377. .print-table-tr-new td {
  1378. line-height: 20px !important;
  1379. }
  1380. .border-top-solid {
  1381. border: solid 1px #000;
  1382. }
  1383. .print-template-two tr {
  1384. line-height: 30px;
  1385. }
  1386. .table-box1 {
  1387. border: 1px solid #000;
  1388. width: 100%;
  1389. line-height: 30px;
  1390. font-size: 14px;
  1391. border-collapse: collapse;
  1392. }
  1393. .table-box1 tr {
  1394. border-bottom: 1px solid #000;
  1395. }
  1396. </style>
  1397. <style lang="scss">
  1398. .newContainer {
  1399. .dialysisPage::-webkit-scrollbar {
  1400. height: 15px;
  1401. }
  1402. .el-date-editor {
  1403. .el-input__inner {
  1404. padding-right: 0px;
  1405. }
  1406. }
  1407. .el-table td,
  1408. .el-table th {
  1409. text-align: center;
  1410. }
  1411. }
  1412. .newContainer::-webkit-scrollbar {
  1413. height: 15px !important;
  1414. }
  1415. </style>