123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586 |
- <template>
- <div class="main-contain">
- <div class="app-container " style="padding-left:0px;margin:0px;" v-loading="loading"
- element-loading-text="拼命加载中">
- <div style="justify-content: space-between;margin: 0px 0 12px 0;display: flex;align-items: center;">
- <div>
- <span style="font-size:14px;color:#606266">有效期:</span>
- <el-select v-model="expiry_type" style="width:200px;margin-right:10px;" placeholder="请选择"
- filterable
- @change="changeExpriyList">
- <el-option
- v-for="item in expriyList"
- :key="item.id"
- :label="item.name"
- :value="item.id">
- </el-option>
- </el-select>
- <span style="font-size:14px;color:#606266">仓库名称:</span>
- <el-select v-model="storehouse_id" style="width:200px;margin-right:10px;" placeholder="请选择"
- filterable
- @change="changeStorehouseName">
- <el-option
- v-for="item in houseList"
- :key="item.id"
- :label="item.storehouse_name"
- :value="item.id">
- </el-option>
- </el-select>
- <el-input v-model="keyword" style="width:200px" placeholder="请输入药品名称或生产厂商" ></el-input>
- <el-button type="primary" icon="el-icon-search" @click="seach">搜索</el-button>
- </div>
- <div>
- <el-button type="primary" @click="toPrint">打印</el-button>
- <el-button type="primary" @click="exportList">导出</el-button>
- </div>
- </div>
- <el-table
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266'
- }"
- :data="tableList"
- :class="signAndWeighBoxPatients"
- border
- >
- <el-table-column label="药品类型" align="center">
- <template slot-scope="scope">
- {{getDrugTypeName(scope.row.XtBaseDrug.drug_type)}}
- </template>
- </el-table-column>
- <el-table-column label="药品名称" align="center">
- <template slot-scope="scope">
- {{scope.row.XtBaseDrug.drug_name}}
- </template>
- </el-table-column>
- <el-table-column label="规格&单位" align="center">
- <template slot-scope="scope">
- {{scope.row.XtBaseDrug.dose}}{{scope.row.XtBaseDrug.dose_unit}}*{{scope.row.XtBaseDrug.min_number}}{{scope.row.XtBaseDrug.min_unit}}/{{scope.row.XtBaseDrug.max_unit}}
- </template>
- </el-table-column>
- <el-table-column label="国家编码" align="center">
- <template slot-scope="scope">
- {{scope.row.XtBaseDrug.medical_insurance_number}}
- </template>
- </el-table-column>
- <el-table-column label="生产厂商" align="center">
- <template slot-scope="scope">
- {{getManufacturName(scope.row.manufacturer)}}
- </template>
- </el-table-column>
- <el-table-column label="进货价" align="center">
- <template slot-scope="scope">
- {{scope.row.price}}
- </template>
- </el-table-column>
- <el-table-column label="库存" align="center">
- <template slot-scope="scope">
- <span v-if="scope.row.stock_max_number > 0"> {{scope.row.stock_max_number}}{{scope.row.XtBaseDrug.max_unit}}</span>
- <span v-if="scope.row.stock_min_number > 0">{{scope.row.stock_min_number}}{{scope.row.XtBaseDrug.min_unit}}</span>
- </template>
- </el-table-column>
-
- <el-table-column label="批号" align="center">
- <template slot-scope="scope">
- {{scope.row.batch_number}}
- </template>
- </el-table-column>
-
- <el-table-column label="有效期" align="center">
- <template slot-scope="scope">
- {{getTime(scope.row.expiry_date)}}
- </template>
- </el-table-column>
-
- <el-table-column label="剩余天数" align="center">
- <template slot-scope="scope">
- <span style="color: red;" v-if="getDaysBetween(getTime(scope.row.expiry_date),getTime(nowtime))<=30">
- {{getDaysBetween(getTime(scope.row.expiry_date),getTime(nowtime))}}
- </span>
- <span v-if="getDaysBetween(getTime(scope.row.expiry_date),getTime(nowtime))>30">
- {{getDaysBetween(getTime(scope.row.expiry_date),getTime(nowtime))}}
- </span>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :page-sizes="[10, 50, 100,200,500,1000]"
- :page-size="10"
- background
- align="right"
- style="margin-top:20px;"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
- </div>
-
-
-
-
-
- </div>
- </template>
- <script>
- import { getStorehouseList,getDrugExpiryDateQuery } from "@/api/drug/drug"
- import {
- getStockDrugCount
- } from "@/api/stock";
- import { uParseTime } from '@/utils/tools'
- import moment from 'moment';
- export default {
-
- data(){
- return{
- tableList:[],
- goodList:[
- {id:1,name:"全部耗材"},
- {id:2,name:"库存预警"},
- ],
- houseList:[],
- storehouse_id:0,
- good_type:1,
- multipleSelection: [],
- signAndWeighBoxPatients: "sign-and-weigh-box-patients",
- manufacturerList:[],
- limit:10,
- page:1,
- total:0,
- limitone:10,
- pageone:1,
- totalone:0,
- keyword:"",
- goodTypeList:[],
- start_time:"",
- end_time:"",
- countList:[],
- outCountList:[],
- autoCountList:[],
- cancelCountList:[],
- org_id:this.$store.getters.xt_user.org_id,
- dialogVisible:false,
- start_first_time:"",
- end_first_time:"",
- tableData:[],
- good_id:0,
- patientList:[],
- good_name:"",
- specification_name:"",
- expiry_type:0,
- expriyList:[
- {id:0,name:"全部"},
- {id:1,name:"已过期"},
- {id:2,name:"30天内过期"},
- {id:3,name:"90天内过期"},
- {id:4,name:"180天内过期"},
- {id:5,name:"1年内过期"},
- ],
- nowtime:0,
- start_time:"",
- drugTypeList:[],
- loading:false,
- }
-
- },
- methods:{
- changeStorehouseName(){
- this.getlist()
- },
- changeGoodName(){
-
- },
- getStorehouseList(){
- getStorehouseList().then(response=>{
- if(response.data.state == 1){
- var houseList = response.data.data.list
- var obj = {id:0,storehouse_name:"全部"}
- this.houseList.push(obj)
- for(let i=0;i<houseList.length;i++){
- this.houseList.push(houseList[i])
- }
- this.manufacturerList = response.data.data.manufacturerList
- this.goodTypeList = response.data.data.goodTypeList
- this.patientList = response.data.data.patientList
- }
- })
- },
- getlist(){
- this.loading = true
- var params = {
- storehouse_id:this.storehouse_id,
- expiry_type:this.expiry_type,
- keyword:this.keyword,
- page:this.page,
- limit:this.limit,
- start_time:this.start_time,
- }
- getDrugExpiryDateQuery(params).then(response=>{
- if(response.data.state == 1){
- this.loading = false
- var list = response.data.data.list
- this.tableList = list
- var manufacturerList = response.data.data.manufacturerList
- this.manufacturerList = manufacturerList
- this.total = response.data.data.total
- this.nowtime = response.data.data.nowtime
- this.drugTypeList = response.data.data.drugTypeList
- }
- })
- },
- getManufacturName(id){
- var manufacturer_name = ""
- for(let i=0;i<this.manufacturerList.length;i++){
- if(id == this.manufacturerList[i].id){
- manufacturer_name = this.manufacturerList[i].manufacturer_name
- }
- }
- return manufacturer_name
- },
- handleSizeChange(val) {
- this.limit = val;
- this.getlist()
- },
- handleCurrentChange(val) {
- this.page = val;
- this.getlist()
- },
- handleSizeChangeOne(val) {
- this.limitone = val;
- this.toDialogClick(this.good_id,this.good_name,this.specification_name)
- },
- handleCurrentChangeOne(val) {
- this.pageone = val;
- this.toDialogClick(this.good_id,this.good_name,this.specification_name)
- },
- seach(){
- this.getlist()
- },
- getDrugTypeName(id){
- var name = ""
- for(let i=0;i<this.drugTypeList.length;i++){
- if(id == this.drugTypeList[i].value){
- name = this.drugTypeList[i].name
- }
- }
- return name
- },
- getHouseName(id){
- var storehouse_name = ""
- for(let i=0;i<this.houseList.length;i++){
- if(id == this.houseList[i].id){
- storehouse_name = this.houseList[i].storehouse_name
- }
- }
- return storehouse_name
- },
- getWareInfoCount(val,storehouse_id){
- var count = 0
- if(val.length > 0){
- for(let i=0;i<val.length;i++){
- if(val[i].storehouse_id == storehouse_id){
- count +=val[i].warehousing_count
- }
- }
- }
- if(count > 0){
- return count
- }else{
- return ""
- }
- },
- getStockDrugCount(){
- var params ={
- keywords: this.keywords,
- start_time:this.start_time,
- end_time:this.end_time,
- }
- getStockDrugCount(params).then(response=>{
- if(response.data.state == 1){
- var outlist = response.data.data.outList
- this.outCountList = outlist
- var autoCount = response.data.data.autoCount
- this.autoCountList = autoCount
- var totalCount = response.data.data.totalCount
- this.cancelCountList = totalCount
- }
- })
- },
- getWareInfoCountOne(val,storehouse_id){
- var count = 0
- if(val.length > 0){
- for(let i=0;i<val.length;i++){
- if(val[i].storehouse_id == storehouse_id){
- count +=val[i].stock_count
- }
- }
- }
- if(count > 0){
- return count
- }else{
- return ""
- }
- },
- getOutCount(id){
- var count = 0
- for(let i=0;i<this.outCountList.length;i++){
- if(id == this.outCountList[i].good_id){
- count = this.outCountList[i].count
- }
- }
- return count
- },
- getAutoCount(id){
- var count= 0
- for(let i=0;i<this.autoCountList.length;i++){
- if(id == this.autoCountList[i].good_id){
- count = this.autoCountList[i].count
- }
- }
- return count
- },
- getCancelCount(id){
- var count = 0
- for(let i=0;i<this.cancelCountList.length;i++){
- if(id == this.cancelCountList[i].good_id){
- count = this.cancelCountList[i].count
- }
- }
- return count
- },
- getCancelCountInfo(cancel_stock_info,storehouse_id){
- var count = 0
- if(cancel_stock_info.length >0){
- for(let i=0;i<cancel_stock_info.length;i++){
- if(storehouse_id == cancel_stock_info[i].storehouse_id){
- count += cancel_stock_info[i].count
- }
- }
- }
- return count
- },
- getWareOutInfoCount(warehouse_out_info,storehouse_id){
- var count = 0
- if(warehouse_out_info.length > 0){
- for(let i=0;i<warehouse_out_info.length;i++){
- if(storehouse_id == warehouse_out_info[i].storehouse_id){
- count +=warehouse_out_info[i].count
- }
- }
- }
- return count
- },
- getInCount(id){
- var count= 0
- for(let i=0;i<this.countList.length;i++){
- if(id == this.countList[i].good_id){
- count = this.countList[i].count
- }
- }
- return count
- },
- getOutCount(id){
- var count = 0
- for(let i=0;i<this.outCountList.length;i++){
- if(id == this.outCountList[i].good_id){
- count = this.outCountList[i].count
- }
- }
- return count
- },
- getAutoCount(id){
- var count= 0
- for(let i=0;i<this.autoCountList.length;i++){
- if(id == this.autoCountList[i].good_id){
- count = this.autoCountList[i].count
- }
- }
- return count
- },
- getCancelCount(id){
- var count = 0
- for(let i=0;i<this.cancelCountList.length;i++){
- if(id == this.cancelCountList[i].good_id){
- count = this.cancelCountList[i].count
- }
- }
- return count
- },
- getStockCount(id){
- var stock_count = 0
- for(let i=0;i<this.countList.length;i++){
- if(id == this.countList[i].good_id){
- stock_count = this.countList[i].stock_count
- }
- }
- return stock_count
- },
- getWareInfo(arr){
- var total = 0
- if(arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total += parseInt(arr[i].warehousing_count)
- }
- }else{
- total = ""
- }
- return total
- },
- getOverplus(arr){
- var total = 0
- if(arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total += arr[i].stock_count
- }
- }else{
- total = ""
- }
- return total
- },
- getCancelInfo(arr){
- var total = 0
- if(arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total += arr[i].count
- }
- }else{
- total = ""
- }
- return total
- },
- getOverFlushInfo(arr){
- var total = 0
- if(arr.length >0){
- for(let i=0;i<arr.length;i++){
- total += arr[i].stock_count
- }
- }
- return total
- },
- startFirstTimeChange(){
-
- },
- endEndTimeChange(){
-
- },
- getTime(val) {
- if(val < 0){
- return ""
- }
- if(val == ""){
- return ""
- }else {
- return uParseTime(val, '{y}-{m}-{d}')
- }
- },
- getName(id){
- var name = ""
- for(let i=0;i<this.patientList.length;i++){
- if(id == this.patientList[i].id){
- name = this.patientList[i].name
- }
- }
- return name
- },
- getDaysBetween(dateString1, dateString2) {
- let startDate = Date.parse(dateString1);
- let endDate = Date.parse(dateString2);
- return (startDate - endDate ) / (1 * 24 * 60 * 60 * 1000);
- },
- changeExpriyList(val){
- this.limit = 10
- this.page = 1
- if(val ==0){
- this.start_time = ""
- this.getlist()
- }
- //已过期
- if(val == 1){
- this.getlist()
- }
- //30天内过期
- if(val == 2){
- var time = this.addDate(this.getTime(this.nowtime),30)
- this.start_time = time
- this.getlist()
- }
- //90天内过期
- if(val == 3){
- var time = this.addDate(this.getTime(this.nowtime),90)
- this.start_time = time
- this.getlist()
- }
- //180天内过期
- if(val == 4){
- var time = this.addDate(this.getTime(this.nowtime),180)
- this.start_time = time
- this.getlist()
- }
- //1年以后
- if(val == 5){
- var time = this.addDate(this.getTime(this.nowtime),365)
- this.start_time = time
- this.getlist()
- }
-
- },
- addDate(date, days) {
- var date = new Date(date);
- date.setDate(date.getDate() + days);
- var year = date.getFullYear();
- var month = date.getMonth() + 1;
- var day = date.getDate();
- var mm = "'" + month + "'";
- var dd = "'" + day + "'";
- if(mm.length == 3) {
- month = "0" + month;
- }
- if(dd.length == 3) {
- day = "0" + day;
- }
- var time = year + "-" + month + "-" + day
- return time;
- },
- open(){
- this.houseList = []
- this.getStorehouseList()
- this.getlist()
- },
- toPrint(){
- 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})
- },
- exportList(){
- for(let i=0;i<this.tableList.length;i++){
- this.tableList[i].index = i+1
- this.tableList[i].good_type_name = this.getDrugTypeName(this.tableList[i].XtBaseDrug.drug_type)
- this.tableList[i].drug_name = this.tableList[i].XtBaseDrug.drug_name
- 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
- this.tableList[i].manufacturer_name = this.getManufacturName(this.tableList[i].manufacturer)
- this.tableList[i].expiry = this.getTime(this.tableList[i].expiry_date)
- 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
- this.tableList[i].flush_date = this.getDaysBetween(this.getTime(this.tableList[i].expiry_date),this.getTime(this.nowtime))
- }
- import('@/vendor/Export2Excel').then(excel => {
-
- const tHeader = ['序号','药品类型','药品名称','规格&单位','生产厂商','进货价','库存','批号','有效期','剩余天数']
- const filterVal = ['index','good_type_name', 'drug_name','specification_name','manufacturer_name','price','stock_count','batch_number','expiry','flush_date']
-
- const data = this.formatJson(filterVal,this.tableList)
-
- excel.export_json_to_excel({
- header: tHeader,
- data,
- filename: '药品有效期查询表'
- })
- })
- },
- formatJson(filterVal, jsonData) {
- return jsonData.map(v => filterVal.map(j => v[j]))
- },
- },
- }
- </script>
-
|