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

drugCancelDetailPrint.vue 12KB

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