expiryDateDrugQuery.vue 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. <template>
  2. <div class="main-contain">
  3. <div class="app-container " style="padding-left:0px;margin:0px;" v-loading="loading"
  4. element-loading-text="拼命加载中">
  5. <div style="justify-content: space-between;margin: 0px 0 12px 0;display: flex;align-items: center;">
  6. <div>
  7. <span style="font-size:14px;color:#606266">有效期:</span>
  8. <el-select v-model="expiry_type" style="width:200px;margin-right:10px;" placeholder="请选择"
  9. filterable
  10. @change="changeExpriyList">
  11. <el-option
  12. v-for="item in expriyList"
  13. :key="item.id"
  14. :label="item.name"
  15. :value="item.id">
  16. </el-option>
  17. </el-select>
  18. <span style="font-size:14px;color:#606266">仓库名称:</span>
  19. <el-select v-model="storehouse_id" style="width:200px;margin-right:10px;" placeholder="请选择"
  20. filterable
  21. @change="changeStorehouseName">
  22. <el-option
  23. v-for="item in houseList"
  24. :key="item.id"
  25. :label="item.storehouse_name"
  26. :value="item.id">
  27. </el-option>
  28. </el-select>
  29. <el-input v-model="keyword" style="width:200px" placeholder="请输入药品名称或生产厂商" ></el-input>
  30. <el-button type="primary" icon="el-icon-search" @click="seach">搜索</el-button>
  31. </div>
  32. <div>
  33. <el-button type="primary" @click="toPrint">打印</el-button>
  34. <el-button type="primary" @click="exportList">导出</el-button>
  35. </div>
  36. </div>
  37. <el-table
  38. :row-style="{ color: '#303133' }"
  39. :header-cell-style="{
  40. backgroundColor: 'rgb(245, 247, 250)',
  41. color: '#606266'
  42. }"
  43. :data="tableList"
  44. :class="signAndWeighBoxPatients"
  45. border
  46. >
  47. <el-table-column label="药品类型" align="center">
  48. <template slot-scope="scope">
  49. {{getDrugTypeName(scope.row.XtBaseDrug.drug_type)}}
  50. </template>
  51. </el-table-column>
  52. <el-table-column label="药品名称" align="center">
  53. <template slot-scope="scope">
  54. {{scope.row.XtBaseDrug.drug_name}}
  55. </template>
  56. </el-table-column>
  57. <el-table-column label="规格&单位" align="center">
  58. <template slot-scope="scope">
  59. {{scope.row.XtBaseDrug.dose}}{{scope.row.XtBaseDrug.dose_unit}}*{{scope.row.XtBaseDrug.min_number}}{{scope.row.XtBaseDrug.min_unit}}/{{scope.row.XtBaseDrug.max_unit}}
  60. </template>
  61. </el-table-column>
  62. <el-table-column label="国家编码" align="center">
  63. <template slot-scope="scope">
  64. {{scope.row.XtBaseDrug.medical_insurance_number}}
  65. </template>
  66. </el-table-column>
  67. <el-table-column label="生产厂商" align="center">
  68. <template slot-scope="scope">
  69. {{getManufacturName(scope.row.manufacturer)}}
  70. </template>
  71. </el-table-column>
  72. <el-table-column label="进货价" align="center">
  73. <template slot-scope="scope">
  74. {{scope.row.price}}
  75. </template>
  76. </el-table-column>
  77. <el-table-column label="库存" align="center">
  78. <template slot-scope="scope">
  79. <span v-if="scope.row.stock_max_number > 0"> {{scope.row.stock_max_number}}{{scope.row.XtBaseDrug.max_unit}}</span>
  80. <span v-if="scope.row.stock_min_number > 0">{{scope.row.stock_min_number}}{{scope.row.XtBaseDrug.min_unit}}</span>
  81. </template>
  82. </el-table-column>
  83. <el-table-column label="批号" align="center">
  84. <template slot-scope="scope">
  85. {{scope.row.batch_number}}
  86. </template>
  87. </el-table-column>
  88. <el-table-column label="有效期" align="center">
  89. <template slot-scope="scope">
  90. {{getTime(scope.row.expiry_date)}}
  91. </template>
  92. </el-table-column>
  93. <el-table-column label="剩余天数" align="center">
  94. <template slot-scope="scope">
  95. <span style="color: red;" v-if="getDaysBetween(getTime(scope.row.expiry_date),getTime(nowtime))<=30">
  96. {{getDaysBetween(getTime(scope.row.expiry_date),getTime(nowtime))}}
  97. </span>
  98. <span v-if="getDaysBetween(getTime(scope.row.expiry_date),getTime(nowtime))>30">
  99. {{getDaysBetween(getTime(scope.row.expiry_date),getTime(nowtime))}}
  100. </span>
  101. </template>
  102. </el-table-column>
  103. </el-table>
  104. <el-pagination
  105. @size-change="handleSizeChange"
  106. @current-change="handleCurrentChange"
  107. :page-sizes="[10, 50, 100,200,500,1000]"
  108. :page-size="10"
  109. background
  110. align="right"
  111. style="margin-top:20px;"
  112. layout="total, sizes, prev, pager, next, jumper"
  113. :total="total"
  114. >
  115. </el-pagination>
  116. </div>
  117. </div>
  118. </template>
  119. <script>
  120. import { getStorehouseList,getDrugExpiryDateQuery } from "@/api/drug/drug"
  121. import {
  122. getStockDrugCount
  123. } from "@/api/stock";
  124. import { uParseTime } from '@/utils/tools'
  125. import moment from 'moment';
  126. export default {
  127. data(){
  128. return{
  129. tableList:[],
  130. goodList:[
  131. {id:1,name:"全部耗材"},
  132. {id:2,name:"库存预警"},
  133. ],
  134. houseList:[],
  135. storehouse_id:0,
  136. good_type:1,
  137. multipleSelection: [],
  138. signAndWeighBoxPatients: "sign-and-weigh-box-patients",
  139. manufacturerList:[],
  140. limit:10,
  141. page:1,
  142. total:0,
  143. limitone:10,
  144. pageone:1,
  145. totalone:0,
  146. keyword:"",
  147. goodTypeList:[],
  148. start_time:"",
  149. end_time:"",
  150. countList:[],
  151. outCountList:[],
  152. autoCountList:[],
  153. cancelCountList:[],
  154. org_id:this.$store.getters.xt_user.org_id,
  155. dialogVisible:false,
  156. start_first_time:"",
  157. end_first_time:"",
  158. tableData:[],
  159. good_id:0,
  160. patientList:[],
  161. good_name:"",
  162. specification_name:"",
  163. expiry_type:0,
  164. expriyList:[
  165. {id:0,name:"全部"},
  166. {id:1,name:"已过期"},
  167. {id:2,name:"30天内过期"},
  168. {id:3,name:"90天内过期"},
  169. {id:4,name:"180天内过期"},
  170. {id:5,name:"1年内过期"},
  171. ],
  172. nowtime:0,
  173. start_time:"",
  174. drugTypeList:[],
  175. loading:false,
  176. }
  177. },
  178. methods:{
  179. changeStorehouseName(){
  180. this.getlist()
  181. },
  182. changeGoodName(){
  183. },
  184. getStorehouseList(){
  185. getStorehouseList().then(response=>{
  186. if(response.data.state == 1){
  187. var houseList = response.data.data.list
  188. var obj = {id:0,storehouse_name:"全部"}
  189. this.houseList.push(obj)
  190. for(let i=0;i<houseList.length;i++){
  191. this.houseList.push(houseList[i])
  192. }
  193. this.manufacturerList = response.data.data.manufacturerList
  194. this.goodTypeList = response.data.data.goodTypeList
  195. this.patientList = response.data.data.patientList
  196. }
  197. })
  198. },
  199. getlist(){
  200. this.loading = true
  201. var params = {
  202. storehouse_id:this.storehouse_id,
  203. expiry_type:this.expiry_type,
  204. keyword:this.keyword,
  205. page:this.page,
  206. limit:this.limit,
  207. start_time:this.start_time,
  208. }
  209. getDrugExpiryDateQuery(params).then(response=>{
  210. if(response.data.state == 1){
  211. this.loading = false
  212. var list = response.data.data.list
  213. this.tableList = list
  214. var manufacturerList = response.data.data.manufacturerList
  215. this.manufacturerList = manufacturerList
  216. this.total = response.data.data.total
  217. this.nowtime = response.data.data.nowtime
  218. this.drugTypeList = response.data.data.drugTypeList
  219. }
  220. })
  221. },
  222. getManufacturName(id){
  223. var manufacturer_name = ""
  224. for(let i=0;i<this.manufacturerList.length;i++){
  225. if(id == this.manufacturerList[i].id){
  226. manufacturer_name = this.manufacturerList[i].manufacturer_name
  227. }
  228. }
  229. return manufacturer_name
  230. },
  231. handleSizeChange(val) {
  232. this.limit = val;
  233. this.getlist()
  234. },
  235. handleCurrentChange(val) {
  236. this.page = val;
  237. this.getlist()
  238. },
  239. handleSizeChangeOne(val) {
  240. this.limitone = val;
  241. this.toDialogClick(this.good_id,this.good_name,this.specification_name)
  242. },
  243. handleCurrentChangeOne(val) {
  244. this.pageone = val;
  245. this.toDialogClick(this.good_id,this.good_name,this.specification_name)
  246. },
  247. seach(){
  248. this.getlist()
  249. },
  250. getDrugTypeName(id){
  251. var name = ""
  252. for(let i=0;i<this.drugTypeList.length;i++){
  253. if(id == this.drugTypeList[i].value){
  254. name = this.drugTypeList[i].name
  255. }
  256. }
  257. return name
  258. },
  259. getHouseName(id){
  260. var storehouse_name = ""
  261. for(let i=0;i<this.houseList.length;i++){
  262. if(id == this.houseList[i].id){
  263. storehouse_name = this.houseList[i].storehouse_name
  264. }
  265. }
  266. return storehouse_name
  267. },
  268. getWareInfoCount(val,storehouse_id){
  269. var count = 0
  270. if(val.length > 0){
  271. for(let i=0;i<val.length;i++){
  272. if(val[i].storehouse_id == storehouse_id){
  273. count +=val[i].warehousing_count
  274. }
  275. }
  276. }
  277. if(count > 0){
  278. return count
  279. }else{
  280. return ""
  281. }
  282. },
  283. getStockDrugCount(){
  284. var params ={
  285. keywords: this.keywords,
  286. start_time:this.start_time,
  287. end_time:this.end_time,
  288. }
  289. getStockDrugCount(params).then(response=>{
  290. if(response.data.state == 1){
  291. var outlist = response.data.data.outList
  292. this.outCountList = outlist
  293. var autoCount = response.data.data.autoCount
  294. this.autoCountList = autoCount
  295. var totalCount = response.data.data.totalCount
  296. this.cancelCountList = totalCount
  297. }
  298. })
  299. },
  300. getWareInfoCountOne(val,storehouse_id){
  301. var count = 0
  302. if(val.length > 0){
  303. for(let i=0;i<val.length;i++){
  304. if(val[i].storehouse_id == storehouse_id){
  305. count +=val[i].stock_count
  306. }
  307. }
  308. }
  309. if(count > 0){
  310. return count
  311. }else{
  312. return ""
  313. }
  314. },
  315. getOutCount(id){
  316. var count = 0
  317. for(let i=0;i<this.outCountList.length;i++){
  318. if(id == this.outCountList[i].good_id){
  319. count = this.outCountList[i].count
  320. }
  321. }
  322. return count
  323. },
  324. getAutoCount(id){
  325. var count= 0
  326. for(let i=0;i<this.autoCountList.length;i++){
  327. if(id == this.autoCountList[i].good_id){
  328. count = this.autoCountList[i].count
  329. }
  330. }
  331. return count
  332. },
  333. getCancelCount(id){
  334. var count = 0
  335. for(let i=0;i<this.cancelCountList.length;i++){
  336. if(id == this.cancelCountList[i].good_id){
  337. count = this.cancelCountList[i].count
  338. }
  339. }
  340. return count
  341. },
  342. getCancelCountInfo(cancel_stock_info,storehouse_id){
  343. var count = 0
  344. if(cancel_stock_info.length >0){
  345. for(let i=0;i<cancel_stock_info.length;i++){
  346. if(storehouse_id == cancel_stock_info[i].storehouse_id){
  347. count += cancel_stock_info[i].count
  348. }
  349. }
  350. }
  351. return count
  352. },
  353. getWareOutInfoCount(warehouse_out_info,storehouse_id){
  354. var count = 0
  355. if(warehouse_out_info.length > 0){
  356. for(let i=0;i<warehouse_out_info.length;i++){
  357. if(storehouse_id == warehouse_out_info[i].storehouse_id){
  358. count +=warehouse_out_info[i].count
  359. }
  360. }
  361. }
  362. return count
  363. },
  364. getInCount(id){
  365. var count= 0
  366. for(let i=0;i<this.countList.length;i++){
  367. if(id == this.countList[i].good_id){
  368. count = this.countList[i].count
  369. }
  370. }
  371. return count
  372. },
  373. getOutCount(id){
  374. var count = 0
  375. for(let i=0;i<this.outCountList.length;i++){
  376. if(id == this.outCountList[i].good_id){
  377. count = this.outCountList[i].count
  378. }
  379. }
  380. return count
  381. },
  382. getAutoCount(id){
  383. var count= 0
  384. for(let i=0;i<this.autoCountList.length;i++){
  385. if(id == this.autoCountList[i].good_id){
  386. count = this.autoCountList[i].count
  387. }
  388. }
  389. return count
  390. },
  391. getCancelCount(id){
  392. var count = 0
  393. for(let i=0;i<this.cancelCountList.length;i++){
  394. if(id == this.cancelCountList[i].good_id){
  395. count = this.cancelCountList[i].count
  396. }
  397. }
  398. return count
  399. },
  400. getStockCount(id){
  401. var stock_count = 0
  402. for(let i=0;i<this.countList.length;i++){
  403. if(id == this.countList[i].good_id){
  404. stock_count = this.countList[i].stock_count
  405. }
  406. }
  407. return stock_count
  408. },
  409. getWareInfo(arr){
  410. var total = 0
  411. if(arr.length > 0){
  412. for(let i=0;i<arr.length;i++){
  413. total += parseInt(arr[i].warehousing_count)
  414. }
  415. }else{
  416. total = ""
  417. }
  418. return total
  419. },
  420. getOverplus(arr){
  421. var total = 0
  422. if(arr.length > 0){
  423. for(let i=0;i<arr.length;i++){
  424. total += arr[i].stock_count
  425. }
  426. }else{
  427. total = ""
  428. }
  429. return total
  430. },
  431. getCancelInfo(arr){
  432. var total = 0
  433. if(arr.length > 0){
  434. for(let i=0;i<arr.length;i++){
  435. total += arr[i].count
  436. }
  437. }else{
  438. total = ""
  439. }
  440. return total
  441. },
  442. getOverFlushInfo(arr){
  443. var total = 0
  444. if(arr.length >0){
  445. for(let i=0;i<arr.length;i++){
  446. total += arr[i].stock_count
  447. }
  448. }
  449. return total
  450. },
  451. startFirstTimeChange(){
  452. },
  453. endEndTimeChange(){
  454. },
  455. getTime(val) {
  456. if(val < 0){
  457. return ""
  458. }
  459. if(val == ""){
  460. return ""
  461. }else {
  462. return uParseTime(val, '{y}-{m}-{d}')
  463. }
  464. },
  465. getName(id){
  466. var name = ""
  467. for(let i=0;i<this.patientList.length;i++){
  468. if(id == this.patientList[i].id){
  469. name = this.patientList[i].name
  470. }
  471. }
  472. return name
  473. },
  474. getDaysBetween(dateString1, dateString2) {
  475. let startDate = Date.parse(dateString1);
  476. let endDate = Date.parse(dateString2);
  477. return (startDate - endDate ) / (1 * 24 * 60 * 60 * 1000);
  478. },
  479. changeExpriyList(val){
  480. this.limit = 10
  481. this.page = 1
  482. if(val ==0){
  483. this.start_time = ""
  484. this.getlist()
  485. }
  486. //已过期
  487. if(val == 1){
  488. this.getlist()
  489. }
  490. //30天内过期
  491. if(val == 2){
  492. var time = this.addDate(this.getTime(this.nowtime),30)
  493. this.start_time = time
  494. this.getlist()
  495. }
  496. //90天内过期
  497. if(val == 3){
  498. var time = this.addDate(this.getTime(this.nowtime),90)
  499. this.start_time = time
  500. this.getlist()
  501. }
  502. //180天内过期
  503. if(val == 4){
  504. var time = this.addDate(this.getTime(this.nowtime),180)
  505. this.start_time = time
  506. this.getlist()
  507. }
  508. //1年以后
  509. if(val == 5){
  510. var time = this.addDate(this.getTime(this.nowtime),365)
  511. this.start_time = time
  512. this.getlist()
  513. }
  514. },
  515. addDate(date, days) {
  516. var date = new Date(date);
  517. date.setDate(date.getDate() + days);
  518. var year = date.getFullYear();
  519. var month = date.getMonth() + 1;
  520. var day = date.getDate();
  521. var mm = "'" + month + "'";
  522. var dd = "'" + day + "'";
  523. if(mm.length == 3) {
  524. month = "0" + month;
  525. }
  526. if(dd.length == 3) {
  527. day = "0" + day;
  528. }
  529. var time = year + "-" + month + "-" + day
  530. return time;
  531. },
  532. open(){
  533. this.houseList = []
  534. this.getStorehouseList()
  535. this.getlist()
  536. },
  537. toPrint(){
  538. this.$router.push({path:"/drugs/expiry/date/query/print?start_time="+this.start_time+"&end_time="+this.end_time+"&page="+this.page+"&limit="+this.limit+"&keyword="+this.keyword+"&storehouse_id="+this.storehouse_id+"&expiry_type="+this.expiry_type})
  539. },
  540. exportList(){
  541. for(let i=0;i<this.tableList.length;i++){
  542. this.tableList[i].index = i+1
  543. this.tableList[i].good_type_name = this.getDrugTypeName(this.tableList[i].XtBaseDrug.drug_type)
  544. this.tableList[i].drug_name = this.tableList[i].XtBaseDrug.drug_name
  545. this.tableList[i].specification_name = this.tableList[i].XtBaseDrug.dose + this.tableList[i].XtBaseDrug.dose_unit +"*"+this.tableList[i].XtBaseDrug.min_number+this.tableList[i].XtBaseDrug.min_unit+"/"+this.tableList[i].XtBaseDrug.max_unit
  546. this.tableList[i].manufacturer_name = this.getManufacturName(this.tableList[i].manufacturer)
  547. this.tableList[i].expiry = this.getTime(this.tableList[i].expiry_date)
  548. this.tableList[i].stock_count = this.tableList[i].stock_max_number + this.tableList[i].XtBaseDrug.max_unit + this.tableList[i].stock_min_number + this.tableList[i].XtBaseDrug.min_unit
  549. this.tableList[i].flush_date = this.getDaysBetween(this.getTime(this.tableList[i].expiry_date),this.getTime(this.nowtime))
  550. }
  551. import('@/vendor/Export2Excel').then(excel => {
  552. const tHeader = ['序号','药品类型','药品名称','规格&单位','生产厂商','进货价','库存','批号','有效期','剩余天数']
  553. const filterVal = ['index','good_type_name', 'drug_name','specification_name','manufacturer_name','price','stock_count','batch_number','expiry','flush_date']
  554. const data = this.formatJson(filterVal,this.tableList)
  555. excel.export_json_to_excel({
  556. header: tHeader,
  557. data,
  558. filename: '药品有效期查询表'
  559. })
  560. })
  561. },
  562. formatJson(filterVal, jsonData) {
  563. return jsonData.map(v => filterVal.map(j => v[j]))
  564. },
  565. },
  566. }
  567. </script>