123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb :crumbs="crumbs"></bread-crumb>
- </div>
- <div class="app-container ">
- <div class="cell clearfix">
- 耗材名称:{{getGoodName(this.$route.query.id)}}
- 库存: {{this.$route.query.overCount}}{{packing_unit}}
- 规格:{{getSpecName(this.$route.query.id)}}
- 厂家:{{this.$route.query.manufacturer}}
- </div>
- <div class="cell clearfix">
- <span>日期查询:</span>
- <el-date-picker
- size="small"
- v-model="start_time"
- prefix-icon="el-icon-date"
- :editable="false"
- style="width: 196px;"
- type="date"
- placeholder="选择日期时间"
- align="right"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- @change="startTimeChange"
- ></el-date-picker>-
- <el-date-picker
- size="small"
- v-model="end_time"
- prefix-icon="el-icon-date"
- :editable="false"
- style="width: 196px;margin-right:10px;"
- type="date"
- placeholder="选择日期时间"
- align="right"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- @change="endTimeChange"
- ></el-date-picker>
-
- <span>出入库方式:</span>
- <el-select v-model="stock_type" style="width:160px;margin-right:10px;" placeholder="请选择" @change="changeDrug">
- <el-option
- v-for="(item,index) in stockType"
- :key="index"
- :label="item.name"
- :value="item.id">
- </el-option>
- </el-select>
-
- <span>
- <el-button type="primary" size="small" @click="toExprot">导出</el-button>
-
- <el-button type="primary" size="small" @click="toTongBu">同步</el-button>
- </span>
-
- </div>
-
- <el-table
- :data="tableList"
- border
- style="width: 100%">
- <el-table-column prop="date" label="序号" width="180" align="center">
- <template slot-scope="scope">
- {{scope.$index + 1}}
- </template>
- </el-table-column>
- <el-table-column prop="drug_type" label="出入库方式" width="180" align="center">
- <template slot-scope="scope">
- <span v-if="scope.row.consumable_type == 1">手动入库</span>
- <span v-if="scope.row.consumable_type == 2">手动出库</span>
- <span v-if="scope.row.consumable_type == 3">自动出库</span>
- <span v-if="scope.row.consumable_type == 4">手动退库</span>
- <span v-if="scope.row.consumable_type == 7">自动退库</span>
- <span v-if="scope.row.consumable_type == 10">盘盈</span>
- <span v-if="scope.row.consumable_type == 11">盘亏</span>
- <span v-if="scope.row.consumable_type == 12">调拨出库</span>
- <span v-if="scope.row.consumable_type == 13">调拨入库</span>
- <span v-if="scope.row.consumable_type == 15">结算出库</span>
- </template>
- </el-table-column>
- <el-table-column prop="drug_name" label="出/入库单据编码" align="center">
- <template slot-scope="scope">
- <span v-if="scope.row.consumable_type == 1">{{scope.row.warehousing_order}}</span>
- <span v-if="scope.row.consumable_type == 2">{{scope.row.warehouse_out_order_number}}</span>
- <span v-if="scope.row.consumable_type == 3">{{scope.row.warehouse_out_order_number}}</span>
- <span v-if="scope.row.consumable_type == 4 || scope.row.consumable_type == 7">{{scope.row.cancel_order_number}}</span>
- <span v-if="scope.row.consumable_type == 10">{{scope.row.warehouse_out_order_number}}</span>
- <span v-if="scope.row.consumable_type == 11">{{scope.row.warehouse_out_order_number}}</span>
- <span v-if="scope.row.consumable_type == 12">{{scope.row.warehouse_out_order_number}}</span>
- <span v-if="scope.row.consumable_type == 13">{{scope.row.warehousing_order}}</span>
- <span v-if="scope.row.consumable_type == 15">{{scope.row.warehouse_out_order_number}}</span>
- </template>
- </el-table-column>
- <el-table-column prop="drug_name" label="出库日期" align="center">
- <template slot-scope="scope">
- {{getTime(scope.row.ctime)}}
- </template>
- </el-table-column>
-
- <el-table-column prop="drug_name" label="操作日期" align="center">
- <template slot-scope="scope">
- {{getTime(scope.row.operate_time)}}
- </template>
- </el-table-column>
- <el-table-column prop="drug_name" label="仓库名称" align="center">
- <template slot-scope="scope">
- <span>{{getHouseName(scope.row.storehouse_id)}}</span>
- </template>
- </el-table-column>
- <el-table-column prop="drug_name" label="数量" align="center">
- <template slot-scope="scope">
- <span>{{scope.row.count}}{{packing_unit}}</span>
- </template>
- </el-table-column>
-
-
- <!-- <el-table-column label="批次" align="center">
- <template slot-scope="scope">
- <span>{{scope.row.number}}</span>
- </template>
- </el-table-column> -->
-
-
- <el-table-column prop="drug_name" label="单价" align="center">
- <template slot-scope="scope">
- <span v-if="scope.row.price >0">{{scope.row.price}}</span>
- <span v-if="scope.row.price == 0">{{good.packing_price}}</span>
- </template>
- </el-table-column>
- <el-table-column prop="drug_name" label="有效期" align="center">
- <template slot-scope="scope" >
- <span>{{getTime(scope.row.expire_date,"{y}-{h}-{d}")}}</span>
- </template>
- </el-table-column>
- <!-- <el-table-column prop="drug_name" label="批准文号" align="center">
- <template slot-scope="scope" >
- <span>{{scope.row.license_number}}</span>
- </template>
- </el-table-column> -->
- <el-table-column prop="drug_name" label="生产商" align="center">
- <template slot-scope="scope">
- <span > {{getManufacturer(scope.row.manufacturer)}}</span>
- </template>
- </el-table-column>
- <el-table-column prop="drug_name" label="使用人" align="center">
- <template slot-scope="scope">
- <span > {{getPatientName(scope.row.patient_id)}}</span>
- </template>
- </el-table-column>
- <el-table-column prop="drug_name" label="剩余库存" align="center">
- <template slot-scope="scope">
- <span > {{scope.row.over_count}}</span>
- </template>
- </el-table-column>
- <el-table-column prop="remark" label="备注" align="center">
- <template slot-scope="scope">
- <span > {{scope.row.remark}}</span>
- </template>
- </el-table-column>
- </el-table>
-
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :page-sizes="[10, 50, 100,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 { uParseTime } from '@/utils/tools'
- import BreadCrumb from '@/xt_pages/components/bread-crumb'
- import {getStockDrugCount,getStockFlow,getStockFlowOrderList} from "@/api/stock"
- export default {
- name: 'stockIn',
- created() {
- var nowDate = new Date();
- var nowYear = nowDate.getFullYear();
- var nowMonth = nowDate.getMonth() + 1;
- var nowDay = nowDate.getDate();
- this.end_time =
- nowYear +
- "-" +
- (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
- "-" +
- (nowDay < 10 ? "0" + nowDay : nowDay);
- nowDate.setMonth(nowDate.getMonth() - 1);
- nowYear = nowDate.getFullYear();
- nowMonth = nowDate.getMonth() + 1;
- nowDay = nowDate.getDate();
- this.start_time =
- nowYear +
- "-" +
- (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
- "-" +
- (nowDay < 10 ? "0" + nowDay : nowDay);
-
- this.getStockFlow()
- this.packing_unit = this.$route.query.packing_unit
- },
- components: {
- BreadCrumb
- },
- data() {
- return {
- crumbs: [
- { path: false, name: '库存管理' },
- { path: '/stock/drugs/stock/query', name: '药品库存查询' },
- { path:'/drugstock/in/drugstockflow',name:'库存流水'}
- ],
- keywords: '',
- total: 0,
- multipleSelection: [],
- signAndWeighBoxPatients: 'sign-and-weigh-box-patients',
- start_time: '',
- end_time: '',
- page: 1,
- limit: 10,
- goodType: [],
- goodInfo: [],
- tempArr: [],
- sameRowArr: [],
- WarehouseInfo: {
- loading: false,
- warehouseInfoDate: []
- },
- tableData:[],
- drug_category:0,
- stock_type:0,
- drugCategory:[
- {id:0,name:"全部"}
- ],
- drugTypeList:[],
- tableList:[],
- manufacturerList:[],
- stockType:[
- {id:0,name:"全部"},
- {id:1,name:"手动入库"},
- {id:2,name:"手动出库"},
- {id:3,name:"自动出库"},
- {id:4,name:"手动退库"},
- {id:7,name:"自动退库"},
- {id:10,name:"盘盈"},
- {id:11,name:"盘亏"},
- {id:12,name:"调拨出库"},
- {id:13,name:"调拨入库"},
- {id:15,name:"结算出库"},
- ],
- countList:[],
- outCountList:[],
- autoCountList:[],
- keywords:"",
- obj:{},
- packing_unit:"",
- cancelCountList:[],
- good:{},
- houseList:[],
- patientList:[]
- }
- },
- methods:{
- handleSizeChange(val) {
- this.limit = val
- this.getStockFlow()
- },
- handleCurrentChange(val) {
- this.page = val
- this.getStockFlow()
- },
-
- startTimeChange: function(val) {
- this.tableList = []
- var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
-
- if (time > 0) {
- this.$message.error("开始时间不能大于结束时间");
- this.start_time = "";
- } else {
-
- this.getStockFlow()
-
- }
- },
- endTimeChange: function(val) {
- this.tableList = []
- var time = this.getTimestamp(val) - this.getTimestamp(this.start_time);
- if (time < 0) {
- this.$message.error("结束时间不能小于开始时间");
- this.end_time = "";
- } else {
- this.getStockFlow()
- }
- },
- getManufacturer(id){
- var name = ""
- for(let i=0;i<this.manufacturerList.length;i++){
- if(id == this.manufacturerList[i].id){
- name = this.manufacturerList[i].manufacturer_name
- }
- }
- return name
- },
- getTime(val) {
- if(val < 0){
- return ""
- }
- if(val == ""){
- return ""
- }else {
- return uParseTime(val, '{y}-{m}-{d}')
- }
- },
- //入库详情
- // getlist(){
- // var params= {
- // limit:this.limit,
- // page:this.page,
- // id:this.$route.query.id,
- // start_time:this.start_time,
- // end_time:this.end_time,
- // is_sys:this.stockType
- // }
- // getStockInList(params).then(response=>{
- // if(response.data.state == 1){
- // var list = response.data.data.list
- // for(let i=0;i<list.length;i++){
- // list[i].stock_way = 4
- // this.tableList.push(list[i])
- // }
- // var total = response.data.data.total
- // this.total = total
- // // console.log("入库数据",this.tableList)
- // var manufacturerList = response.data.data.manufacturerList
- // this.manufacturerList = manufacturerList
- // }
- // })
- // },
- // getStockOutList(){
- // var params= {
- // limit:this.limit,
- // page:this.page,
- // id:this.$route.query.id,
- // start_time:this.start_time,
- // end_time:this.end_time,
- // is_sys:this.stock_type
- // }
- // getStockOutList(params).then(response=>{
- // if(response.data.state == 1){
- // var outList = response.data.data.outList
- // console.log("outList990-0000990",outList)
- // for(let i=0;i<outList.length;i++){
- // if(outList[i].is_sys == 0){
- // outList[i].stock_way = 3
- // }
- // if(outList[i].is_sys == 1){
- // outList[i].stock_way = 2
- // }
- // this.tableList.push(outList[i])
- // }
- // console.log("hhhhhhhhhh",this.tableList)
- // var total = response.data.data.total
- // this.total = total
- // }
- // })
- // },
- 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 count = response.data.data.count
-
- this.countList = count
- 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
- }
- })
- },
- getInCount(id){
- var count= ""
- 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 = ""
- 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= ""
- 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
- },
- getTimestamp(time) {
- // 把时间日期转成时间戳
- return new Date(time).getTime() / 1000;
- },
- changeDrug(val){
- this.tableList= []
- this.stock_type = val
- this.getStockFlow()
- },
- 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
- },
-
- getStockFlow(){
- var params= {
- limit:this.limit,
- page:this.page,
- good_id:this.$route.query.id,
- start_time:this.start_time,
- end_time:this.end_time,
- is_sys:this.stock_type
- }
-
- getStockFlow(params).then(response=>{
- if(response.data.state == 1){
- var list = response.data.data.list
- var total = response.data.data.total
- this.tableList = list
- this.total = total
- this.good = response.data.data.good
- var manufacturerList = response.data.data.manufacturerList
- this.manufacturerList = manufacturerList
- this.houseList = response.data.data.houseList
- this.patientList = response.data.data.patients
-
-
- }
- })
- },
- 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
- },
- getGoodName(id){
-
- var good_name = ""
- if(id == this.good.id){
- good_name = this.good.good_name
- }
- return good_name
- },
- getSpecName(id){
- var specification_name = ""
- if(id == this.good.id){
- specification_name = this.good.specification_name
- }
- return specification_name
- },
- getPatientName(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
- },
- toExprot(){
- import('@/vendor/Export2Excel').then(excel => {
-
- console.log("tableList",this.tableList)
-
- if(this.tableList!=null && this.tableList.length>0){
- for(let i=0;i<this.tableList.length;i++){
- this.tableList[i].index = i+1
- if(this.tableList[i].consumable_type == 1){
- this.tableList[i].consumable_type_name = "手动入库"
- }
- if(this.tableList[i].consumable_type == 2){
- this.tableList[i].consumable_type_name = "手动出库"
- }
- if(this.tableList[i].consumable_type == 3){
- this.tableList[i].consumable_type_name = "自动出库"
- }
- if(this.tableList[i].consumable_type == 4){
- this.tableList[i].consumable_type_name = "手动退库"
- }
- if(this.tableList[i].consumable_type == 7){
- this.tableList[i].consumable_type_name = "自动退库"
- }
- if(this.tableList[i].consumable_type == 10){
- this.tableList[i].consumable_type_name = "盘盈"
- }
- if(this.tableList[i].consumable_type == 11){
- this.tableList[i].consumable_type_name = "盘亏"
- }
- if(this.tableList[i].consumable_type == 12){
- this.tableList[i].consumable_type_name = "调拨出库"
- }
- if(this.tableList[i].consumable_type == 13){
- this.tableList[i].consumable_type_name = "调拨入库"
- }
- if(this.tableList[i].consumable_type == 15){
- this.tableList[i].consumable_type_name = "结算出库"
- }
-
- if(this.tableList[i].consumable_type == 1){
- this.tableList[i].order_number = this.tableList[i].warehousing_order
- }
- if(this.tableList[i].consumable_type == 2){
- this.tableList[i].order_number = this.tableList[i].warehouse_out_order_number
- }
- if(this.tableList[i].consumable_type == 3){
- this.tableList[i].order_number = this.tableList[i].warehouse_out_order_number
- }
- if(this.tableList[i].consumable_type == 5){
- this.tableList[i].order_number = this.tableList[i].warehouse_out_order_number
- }
- if(this.tableList[i].consumable_type == 12){
- this.tableList[i].order_number = this.tableList[i].warehouse_out_order_number
- }
- if(this.tableList[i].consumable_type == 15){
- this.tableList[i].order_number = this.tableList[i].warehouse_out_order_number
- }
- if(this.tableList[i].consumable_type == 4 || this.tableList[i].consumable_type == 7){
- this.tableList[i].order_number = this.tableList[i].cancel_order_number
- }
- if(this.tableList[i].consumable_type == 7){
- this.tableList[i].order_number = this.tableList[i].cancel_order_number
- }
-
- if(this.tableList[i].consumable_type == 11|| this.tableList[i].consumable_type == 13 ||this.tableList[i].consumable_type == 10 ){
- this.tableList[i].warehousing_order = this.tableList[i].warehousing_order
- }
-
-
- this.tableList[i].record_time = this.getTime(this.tableList[i].ctime)
-
- this.tableList[i].storehouse_name = this.getHouseName(this.tableList[i].storehouse_id)
-
- this.tableList[i].coutn_unit = (this.tableList[i].count.toString()) +this.packing_unit
-
- if(this.tableList[i].price>0){
- this.tableList[i].total_price = this.tableList[i].price
- }
- if(this.tableList[i].price == 0){
- this.tableList[i].total_price = this.tableList[i].packing_price
- }
-
- this.tableList[i].expire_date_name = this.getTime(this.tableList[i].expire_date,"{y}-{h}-{d}")
- this.tableList[i].manufacturer_name = this.getManufacturer( this.tableList[i].manufacturer)
- this.tableList[i].patient_name = this.getPatientName(this.tableList[i].patient_id)
-
- }
- }
-
-
- const multiHeader =['序号','出入库方式','出入库单据编码','操作日期','仓库名称','数量','单价','有效期','生产商','使用人','剩余库存']
-
- const filterVal = ['index', 'consumable_type_name', 'order_number', 'record_time', 'storehouse_name', 'coutn_unit', 'total_price', 'expire_date_name','manufacturer_name','patient_name','over_count']
-
-
- const data = this.formatJson(filterVal, this.tableList)
- console.log("datawoowow",data)
-
- excel.export_json_to_excel({
- header: multiHeader,
- data,
- filename: '耗材流水'
- })
- })
- },
- formatJson(filterVal, jsonData) {
- return jsonData.map(v => filterVal.map(j => v[j]))
- },
- toTongBu(){
- var params = {
- good_id:this.$route.query.id,
- }
- getStockFlowOrderList(params).then(response=>{
-
- })
- }
-
- }
- }
- </script>
- <style rel="stylesheet/css" lang="scss" scoped>
- .information {
- border: 1px #dcdfe6 solid;
- padding: 30px 20px 30px 20px;
-
- .border {
- border-bottom: 1px #dcdfe6 solid;
- margin: 0px 0 20px 0;
- }
-
- }
-
- .title {
- background: #409eff;
- height: 44px;
- line-height: 44px;
- padding: 0 0 0 10px;
- color: #fff;
- margin: 0 0 10px 0;
- }
-
- .edit_separater {
- border-top: 1px solid rgb(233, 233, 233);
- margin-top: 15px;
- margin-bottom: 15px;
- }
- </style>
-
- <style>
- .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
- font-size: 12px;
- }
-
- .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
- background: #6fb5fa;
- }
-
- .count {
- color: #bd2c00;
- }
-
- .el-table td,
- .el-table th.is-leaf,
- .el-table--border,
- .el-table--group {
- border-color: #d0d3da;
- }
-
- .el-table--border::after,
- .el-table--group::after,
- .el-table::before {
- background-color: #d0d3da;
- }
- </style>
|