expiryDateQuery.vue 18KB

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