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

drugCancelDetailPrint.vue 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs='crumbs'></bread-crumb>
  5. <el-button :loading="loading" size="small" icon="el-icon-printer" @click="printThisPage" type="primary">打印
  6. </el-button>
  7. </div>
  8. <div class="app-container ">
  9. <div id="dialysis-print-box">
  10. <div class="dialysis-print-order">
  11. <div class="order-yy-name">{{orgname}}</div>
  12. <div class="order-title">退库单</div>
  13. <div style="float: left;margin-bottom: 10px;">{{getDateOne()}}</div>
  14. <div style="float: right;margin-bottom: 10px;">{{getDateTwo()}}</div>
  15. <table class="print-table" border="1">
  16. <tbody>
  17. <tr>
  18. <td style="line-height: 50px" width="50">序号</td>
  19. <td style="line-height: 50px" width="250">药品名称</td>
  20. <td style="line-height: 50px" width="250">规格型号</td>
  21. <td style="line-height: 50px" width="50">单位</td>
  22. <td style="line-height: 50px" width="80">数量</td>
  23. <td style="line-height: 50px" width="80">单位</td>
  24. <td style="line-height:50px" width="80">单价</td>
  25. <td style="line-height:50px" width="80">总价</td>
  26. <td style="line-height: 50px" width="80">备 注</td>
  27. </tr>
  28. <tr v-for="(item,index) in cancelStockDate" :key="item.id">
  29. <td style="line-height: 50px">&nbsp;
  30. {{index+1}}
  31. </td>
  32. <td style="line-height: 50px">
  33. <span>{{item.drug_name}}</span>
  34. </td>
  35. <td style="line-height: 50px">
  36. <span>{{item.dose}}{{item.dose_unit}}*{{item.min_number}}{{item.min_unit}}/{{item.max_unit}}</span>
  37. </td>
  38. <td style="line-height: 50px">
  39. <span>{{item.unit}}</span>
  40. </td>
  41. <td style="line-height: 50px">
  42. {{item.count}}
  43. </td>
  44. <td style="line-height: 50px">
  45. {{item.unit}}
  46. </td>
  47. <td style="line-height:50px">
  48. {{item.price}}
  49. </td>
  50. <td style="line-height:50px">
  51. {{(item.price * item.count).toFixed(2)}}
  52. </td>
  53. <td style="line-height: 50px">
  54. {{item.remark}}
  55. </td>
  56. </tr>
  57. </tbody>
  58. </table>
  59. <table class="print-table" border="1" >
  60. <tbody>
  61. <tr>
  62. <td style="line-height: 50px" width="50">合计</td>
  63. <td style="line-height: 50px" width="250"></td>
  64. <td style="line-height: 50px" width="250"></td>
  65. <td style="line-height: 50px" width="50"></td>
  66. <td style="line-height: 50px" width="80"></td>
  67. <td style="line-height: 50px" width="80"></td>
  68. <td style="line-height:50px" width="80">{{getTotal().toFixed(2)}}</td>
  69. <td style="line-height: 50px" width="80"></td>
  70. </tr>
  71. </tbody>
  72. </table>
  73. <div style="display:flex;margin-top:20px;float:right;">
  74. <div style="width:50px;">审批:</div><div style="width:100px;"></div>
  75. <div style="width:80px;">药材主任:</div><div style="width:100px;"></div>
  76. <div style="width:50px;">会计:</div><div style="width:100px;"></div>
  77. <div style="width:50px;">审核:</div><div style="width:100px;"></div>
  78. <div style="width:70px;">制单人:</div><div style="width:100px;"></div>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. </div>
  84. </template>
  85. <script>
  86. import { getPrintStockGood } from '@/api/stock'
  87. import { getDataConfig } from '@/utils/data'
  88. import { jsGetAge, uParseTime } from '@/utils/tools'
  89. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  90. import print from 'print-js'
  91. import { getDrugCancelDetail} from "@/api/drug/drug_stock"
  92. export default {
  93. name: 'dialysisPrintOrder',
  94. components: {
  95. BreadCrumb
  96. },
  97. data() {
  98. return {
  99. crumbs: [
  100. { path: false, name: '出入库明细' },
  101. { path: false, name: '打印单' }
  102. ],
  103. loading: false,
  104. orgname: '',
  105. totalPrice: 0,
  106. stockDatas: [],
  107. goodUnit: [],
  108. start_time: this.$route.query.start_time,
  109. end_time: this.$route.query.end_time,
  110. order_type:this.$route.query.order_type,
  111. manufacturer_id:this.$route.query.manufacturer_id,
  112. keyword:this.$route.query.keyword,
  113. limit:this.$route.query.limit,
  114. page:this.$route.query.page,
  115. cancelStockDate:[],
  116. }
  117. },
  118. methods: {
  119. getDateOne(){
  120. return "出库日期: "+this.start_time +"~"+this.end_time
  121. },
  122. getDateTwo(){
  123. var ptime = Math.round(new Date().getTime() / 1000)
  124. return "打印单日期:"+uParseTime(ptime, '{y}-{m}-{d}')
  125. },
  126. getTime(value, temp) {
  127. if (value == 0) {
  128. return ''
  129. }
  130. if (value != undefined) {
  131. return uParseTime(value, temp)
  132. }
  133. return ''
  134. },
  135. printThisPage() {
  136. var ptime = Math.round(new Date().getTime() / 1000)
  137. this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}')
  138. const style = '@media print {.dialysis-print-order{width:960px;margin:0 auto}.dialysis-print-order .order-yy-name{margin:auto;text-align:center;font-size:20px;letter-spacing:5px}.dialysis-print-order .order-title{margin:auto;font-weight:600;text-align:center;font-size:22px;padding:10px 20px 20px 20px}.dialysis-print-order .table-box{width:100%;line-height:23px;font-size:14px}.dialysis-print-order .print-table{width:100%;text-align:center;border-collapse:collapse;line-height:25px;font-size:14px}.dialysis-print-order .print-table-no{width:100%;text-align:center;border-collapse:collapse;font-size:14px}.dialysis-print-order .under-line{border-bottom:1px solid #999;width:95%;text-align:center;margin-left:2px}.dialysis-print-order .title-box{text-align:center;font-size:16px;border:1px solid #666}.dialysis-print-order .radio-lebel-box{font-weight:400;cursor:pointer}.dialysis-print-order .radio-no{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.dialysis-print-order .radio-inner{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.dialysis-print-order .radio-fang{display:inline-block;position:relative;border:1px solid #000;box-sizing:border-box;width:14px;height:14px;background-color:#fff;z-index:1;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.dialysis-print-order .is-checked-radio::after{content:"√";font-size:15px}}.dialysis-print-order .print-table-no tr td { padding: 8px 5px; line-height: 25px; }.es-img{height: 20px; }.advice-name{text-align: left;}.advice-children{display:flex;} .dialysis-print-order .print-table tr td{padding: 0px 0px;} .print-template-two tr {line-height: 30px;} .title-box-pro{border: 0 #fff;line-height: 40px;height: 40px;text-align: left;padding-left: 10px !important;} .text-align-left{text-align: left !important;padding-left:10px !important;font-size: 14px !important;line-height: 25px;}'
  139. printJS({
  140. printable: 'dialysis-print-box',
  141. type: 'html',
  142. style: style,
  143. scanStyles: false
  144. })
  145. },
  146. getUnit(id){
  147. var name = ""
  148. for(let i=0;i<this.goodUnit.length;i++){
  149. if(this.goodUnit[i].id == id){
  150. name = this.goodUnit[i].name
  151. }
  152. }
  153. return name
  154. },
  155. getlist(){
  156. var params = {
  157. start_time:this.start_time,
  158. end_time:this.end_time,
  159. order_type:this.order_type,
  160. manufacturer_id:this.manufacturer_id,
  161. keyword:this.searchKey,
  162. limit:this.limit,
  163. page:this.page,
  164. }
  165. getDrugCancelDetail(params).then(response=>{
  166. if(response.data.state == 1){
  167. var drugInOrder = response.data.data.order
  168. console.log("drug3434444",drugInOrder)
  169. this.cancelStockDate = drugInOrder
  170. var orderPrint = response.data.data.orderPrint
  171. for(let i=0;i<orderPrint.length;i++){
  172. orderPrint[i].child = []
  173. for(let j=0;j<drugInOrder.length;j++){
  174. if(orderPrint[i].drug_id == drugInOrder[j].drug_id){
  175. orderPrint[i].child.push(drugInOrder[j])
  176. }
  177. }
  178. }
  179. console.log("orderPrint",orderPrint)
  180. }
  181. })
  182. },
  183. getTotal(){
  184. var total = 0
  185. for(let i=0;i<this.cancelStockDate.length;i++){
  186. total += this.cancelStockDate[i].price*this.cancelStockDate[i].count
  187. }
  188. return total
  189. }
  190. },
  191. created() {
  192. var xtuser = this.$store.getters.xt_user
  193. this.orgname = xtuser.org.org_name
  194. this.getlist()
  195. }
  196. }
  197. </script>
  198. <style>
  199. .dialysis-print-order {
  200. width: 960px;
  201. margin: 0 auto
  202. }
  203. .dialysis-print-order .order-yy-name {
  204. margin: auto;
  205. text-align: center;
  206. font-size: 20px;
  207. letter-spacing: 5px;
  208. }
  209. .dialysis-print-order .order-title {
  210. margin: auto;
  211. font-weight: 600;
  212. text-align: center;
  213. font-size: 22px;
  214. padding: 10px 20px 20px 20px;
  215. }
  216. .dialysis-print-order .table-box {
  217. width: 100%;
  218. line-height: 23px;
  219. font-size: 14px;
  220. }
  221. .dialysis-print-order .print-table {
  222. width: 100%;
  223. text-align: center;
  224. border-collapse: collapse;
  225. line-height: 40px;
  226. font-size: 14px;
  227. }
  228. .dialysis-print-order .print-table-no {
  229. width: 100%;
  230. text-align: center;
  231. border-collapse: collapse;
  232. font-size: 14px;
  233. }
  234. .dialysis-print-order .under-line {
  235. border-bottom: 1px solid #999;
  236. width: 95%;
  237. text-align: center;
  238. margin-left: 2px;
  239. }
  240. .dialysis-print-order .title-box {
  241. text-align: center;
  242. font-size: 16px;
  243. }
  244. .dialysis-print-order .radio-lebel-box {
  245. font-weight: 400;
  246. cursor: pointer;
  247. }
  248. .dialysis-print-order .radio-no {
  249. opacity: 0;
  250. outline: none;
  251. position: absolute;
  252. margin: 0;
  253. width: 0;
  254. height: 0;
  255. z-index: -1;
  256. }
  257. .dialysis-print-order .radio-inner {
  258. white-space: nowrap;
  259. cursor: pointer;
  260. outline: none;
  261. display: inline-block;
  262. line-height: 1;
  263. position: relative;
  264. vertical-align: middle;
  265. }
  266. .dialysis-print-order .radio-fang {
  267. display: inline-block;
  268. position: relative;
  269. border: 1px solid #000;
  270. box-sizing: border-box;
  271. width: 14px;
  272. height: 14px;
  273. background-color: #fff;
  274. z-index: 1;
  275. transition: border-color .25s cubic-bezier(.71, -.46, .29, 1.46), background-color .25s cubic-bezier(.71, -.46, .29, 1.46);
  276. }
  277. .dialysis-print-order .is-checked-radio::after {
  278. content: "√";
  279. font-size: 15px;
  280. }
  281. .dialysis-print-order .print-table-no tr td {
  282. padding: 8px 5px;
  283. line-height: 25px;
  284. }
  285. .dialysis-print-order .print-table tr td {
  286. padding: 1px 1px;
  287. /*line-height: 25px;*/
  288. }
  289. .es-img {
  290. height: 25px;
  291. }
  292. .advice-name {
  293. text-align: left;
  294. }
  295. .advice-children {
  296. display: flex;
  297. }
  298. .title-box-pro {
  299. border: 0 #fff;
  300. line-height: 25px;
  301. height: 25px;
  302. text-align: left;
  303. padding-left: 10px !important;
  304. }
  305. .title-box-pro-tr {
  306. border: 0 #fff;
  307. }
  308. .text-align-left {
  309. text-align: left !important;
  310. padding-left: 10px !important;
  311. font-size: 14px !important;
  312. line-height: 25px;
  313. }
  314. .print-table-tr-new td {
  315. line-height: 20px !important;
  316. }
  317. .border-top-solid {
  318. border: solid 1px #000;
  319. }
  320. .print-template-two tr {
  321. line-height: 30px;
  322. }
  323. </style>