1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270 |
- <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-date-picker
- size="small"
- v-model="start_time"
- prefix-icon="el-icon-date"
- :editable="false"
- style="width: 150px;"
- type="date"
- placeholder="选择日期时间"
- align="right"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- @change="startTimeChange"
- :picker-options="pickerOptions"
- :clearable="false"
- ></el-date-picker>
- <span>-</span>
- <el-date-picker
- size="small"
- v-model="end_time"
- prefix-icon="el-icon-date"
- :editable="false"
- style="width: 150px;"
- type="date"
- placeholder="选择日期时间"
- align="right"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- @change="endTimeChange"
- :picker-options="pickerOptions"
- :clearable="false"
- ></el-date-picker>
- <span style="font-size:14px;color:#606266">药品类型:</span>
- <el-select v-model="good_type" style="width:200px;margin-right:10px;" placeholder="请选择"
- filterable
- @change="changeGoodTypeName">
- <el-option
- v-for="item in drugTypeList"
- :key="item.value"
- :label="item.name"
- :value="item.value">
- </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.drug_type)}}
- </template>
- </el-table-column>
- <el-table-column label="药品名称" align="center">
- <template slot-scope="scope">
- {{scope.row.drug_name}}
- </template>
- </el-table-column>
- <el-table-column label="规格&单位" align="center">
- <template slot-scope="scope">
- {{scope.row.dose}}{{scope.row.dose_unit}}*{{scope.row.min_number}}{{scope.row.min_unit}}/{{scope.row.max_unit}}
- </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">
- {{getDearName(scope.row.dealer)}}
- </template>
- </el-table-column>
- <el-table-column label="期初结余" align="center">
-
- <el-table-column prop="drugIn" label="数量" width="100" align="center">
-
- </el-table-column>
-
- <el-table-column prop="drugInMoney" label="进货金额" width="100" align="center">
-
- </el-table-column>
- <el-table-column prop="drugSaleMoney" label="销售金额" width="100" align="center">
-
- </el-table-column>
-
- </el-table-column>
- <el-table-column label="本期增加" align="center">
-
- <el-table-column prop="drugAdd" label="数量" width="100" align="center">
-
- </el-table-column>
-
- <el-table-column prop="drugAddPrice" label="进货金额" width="100" align="center">
-
- </el-table-column>
- <el-table-column prop="drugAddSalePrice" label="销售金额" width="100" align="center">
- </el-table-column>
-
- </el-table-column>
-
- <el-table-column label="本期减少" align="center">
- <el-table-column prop="drugOut" label="数量" width="100" align="center">
- </el-table-column>
- <el-table-column prop="drugOutPrice" label="进货金额" width="100" align="center">
- </el-table-column>
- <el-table-column prop="drugOutSalePrice" label="销售金额" width="100" align="center">
- </el-table-column>
- </el-table-column>
-
- <el-table-column label="期末结余" align="center">
- <el-table-column prop="overDrug" label="数量" width="100" align="center">
- </el-table-column>
- <el-table-column prop="overDrugPrice" label="进货金额" width="100" align="center">
- </el-table-column>
- <el-table-column prop="oveDrugSaleMoney" label="销售金额" width="100" align="center">
- </el-table-column>
- </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,getPurchaseDrugQuery } from "@/api/drug/drug"
- const moment = require('moment')
- import { uParseTime } from '@/utils/tools'
- export default {
-
- data(){
- return{
- tableList:[],
- goodList:[
- {id:1,name:"全部药品"},
- {id:2,name:"库存预警"},
- ],
- houseList:[],
- storehouse_id:0,
- good_type:0,
- multipleSelection: [],
- signAndWeighBoxPatients: "sign-and-weigh-box-patients",
- manufacturerList:[],
- limit:10,
- page:1,
- total:0,
- keyword:"",
- drugTypeList:[],
- 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:"",
- loading:false,
- pickerOptions:{ //禁用当前日期之前的日期
- disabledDate(v) {
- return v.getTime() < 1667232000000
- },
- },
- dealerList:[]
- }
-
- },
- methods:{
- changeStorehouseName(){
-
- },
- changeGoodTypeName(){
- this.drugTypeList = []
- this.getlist()
- },
- 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.patientList = response.data.data.patientList
-
- this.dealerList = response.data.data.dealerList
- }
- })
- },
- getlist(){
- this.loading = true
- var params = {
- good_type:this.good_type,
- keyword:this.keyword,
- page:this.page,
- limit:this.limit,
- start_time:this.start_time,
- end_time:this.end_time,
- }
- getPurchaseDrugQuery(params).then(response=>{
- if(response.data.state == 1){
- this.loading = false
- var list = response.data.data.list
- for (let i = 0; i < list.length; i++) {
-
- //期初结余入库
- if(list[i].DrugWarehouseInfoStart!=null && list[i].DrugWarehouseInfoStart.length > 0){
- for(let j=0;j<list[i].DrugWarehouseInfoStart.length;j++){
- if(list[i].max_unit == list[i].DrugWarehouseInfoStart[j].max_unit){
- list[i].DrugWarehouseInfoStart[j].count =list[i].min_number * list[i].DrugWarehouseInfoStart[j].count
- }
- }
- }
-
- //期初结余出库
- if(list[i].DrugWarehouseOutInfoStart!=null && list[i].DrugWarehouseOutInfoStart.length>0){
- for(let j=0;j<list[i].DrugWarehouseOutInfoStart.length;j++){
- if(list[i].max_unit == list[i].DrugWarehouseOutInfoStart[j].max_unit){
- list[i].DrugWarehouseOutInfoStart[j].count = list[i].DrugWarehouseOutInfoStart[j].count*list[i].min_number
- }
- }
- }
-
- //期初结余退库
- if(list[i].WareStartStockCancelInfo!=null && list[i].WareStartStockCancelInfo.length>0){
- for(let j=0;j<list[i].WareStartStockCancelInfo.length;j++){
- if(list[i].max_unit == list[i].WareStartStockCancelInfo[j].max_unit){
- list[i].WareStartStockCancelInfo[j].count = list[i].WareStartStockCancelInfo[j].count*list[i].min_number
- }
- }
- }
-
-
- //期末结余入库
- if(list[i].DrugWarehouseInfoEnd!=null && list[i].DrugWarehouseInfoEnd.length > 0){
- for(let j=0;j<list[i].DrugWarehouseInfoEnd.length;j++){
- if(list[i].max_unit == list[i].DrugWarehouseInfoEnd[j].max_unit){
- list[i].DrugWarehouseInfoEnd[j].count = list[i].min_number * list[i].DrugWarehouseInfoEnd[j].count
- }
- }
- }
-
- //期末结余出库
- if(list[i].DrugWarehouseOutInfoEnd!=null && list[i].DrugWarehouseOutInfoEnd.length>0){
- for(let j=0;j<list[i].DrugWarehouseOutInfoEnd.length;j++){
- if(list[i].max_unit == list[i].DrugWarehouseOutInfoEnd[j].max_unit){
- list[i].DrugWarehouseOutInfoEnd[j].count = list[i].DrugWarehouseOutInfoEnd[j].count*list[i].min_number
- }
- }
- }
-
- //期末结余退库
- if(list[i].WareEndStockCancelInfo!=null && list[i].WareEndStockCancelInfo.length>0){
- for(let j=0;j<list[i].WareEndStockCancelInfo.length;j++){
- if(list[i].max_unit == list[i].WareEndStockCancelInfo[j].max_unit){
- list[i].WareEndStockCancelInfo[j].count = list[i].WareEndStockCancelInfo[j].count*list[i].min_number
- }
- }
- }
-
- //期中增加
- if(list[i].DrugWarehouseInfoStartEnd!=null && list[i].DrugWarehouseInfoStartEnd.length > 0){
- for(let j=0;j<list[i].DrugWarehouseInfoStartEnd.length;j++){
- if(list[i].max_unit == list[i].DrugWarehouseInfoStartEnd[j].max_unit){
- list[i].DrugWarehouseInfoStartEnd[j].count =list[i].min_number * list[i].DrugWarehouseInfoStartEnd[j].count
- }
- }
- }
-
- //期中减少
- if(list[i].DrugWarehouseOutInfoStartEnd!=null && list[i].DrugWarehouseOutInfoStartEnd.length > 0){
- for(let j=0;j<list[i].DrugWarehouseOutInfoStartEnd.length;j++){
- if(list[i].max_unit == list[i].DrugWarehouseOutInfoStartEnd[j].max_unit){
- list[i].DrugWarehouseOutInfoStartEnd[j].count =list[i].min_number * list[i].DrugWarehouseOutInfoStartEnd[j].count
- }
- }
- }
-
- //期中退库
- if(list[i].WareStartEndStockCancelInfo!=null && list[i].WareStartEndStockCancelInfo.length > 0){
- for(let j=0;j<list[i].WareStartEndStockCancelInfo.length;j++){
- if(list[i].max_unit == list[i].WareStartEndStockCancelInfo[j].max_unit){
- list[i].WareStartEndStockCancelInfo[j].count =list[i].min_number * list[i].WareStartEndStockCancelInfo[j].count
- }
- }
- }
-
-
-
- //期初盘盈
- if(list[i].WareStartStockInventoryProfit!=null && list[i].WareStartStockInventoryProfit.length > 0){
- for(let j=0;j<list[i].WareStartStockInventoryProfit.length;j++){
- if(list[i].max_unit == list[i].WareStartStockInventoryProfit[j].max_unit){
- list[i].WareStartStockInventoryProfit[j].count = list[i].WareStartStockInventoryProfit[j].count * list[i].min_number
- }
- }
- }
-
- //期初盘亏
- if(list[i].WareStartStockInventoryLosses!=null && list[i].WareStartStockInventoryLosses.length > 0){
- for(let j=0;j<list[i].WareStartStockInventoryLosses.length;j++){
- if(list[i].max_unit == list[i].WareStartStockInventoryLosses[j].max_unit){
- list[i].WareStartStockInventoryLosses.count = list[i].WareStartStockInventoryLosses[j].count * list[i].min_number
- }
- }
- }
-
-
-
- //期中盘盈
- if(list[i].WareStartEndStockInventoryProfit!=null && list[i].WareStartEndStockInventoryProfit.length > 0){
- for(let j=0;j<list[i].WareStartEndStockInventoryProfit.length;j++){
- if(list[i].max_unit == list[i].WareStartEndStockInventoryProfit[j].max_unit){
- list[i].WareStartEndStockInventoryProfit[j].count = list[i].WareStartEndStockInventoryProfit[j].count * list[i].min_number
- }
- }
- }
-
- //期中盘亏
- if(list[i].WareStartEndStockInventoryLosses!=null && list[i].WareStartEndStockInventoryLosses.length > 0){
- for(let j=0;j<list[i].WareStartEndStockInventoryLosses.length;j++){
- if(list[i].max_unit == list[i].WareStartEndStockInventoryLosses[j].max_unit){
- list[i].WareStartEndStockInventoryLosses[j].count = list[i].WareStartEndStockInventoryLosses[j].count * list[i].min_number
- }
- }
- }
- //期末盘盈
- if(list[i].WareEndStockInventoryProfit!=null && list[i].WareEndStockInventoryProfit.length >0){
- for(let j=0;j<list[i].WareEndStockInventoryProfit.length;j++){
- if(list[i].max_unit == list[i].WareEndStockInventoryProfit[j].max_unit){
- list[i].WareEndStockInventoryProfit[j].count = list[i].WareEndStockInventoryProfit[j].count * list[i].min_number
- }
- }
- }
- //期末盘亏
- if(list[i].WareEndStockInventoryLosses!=null && list[i].WareEndStockInventoryLosses.length > 0){
- for(let j=0;j<list[i].WareEndStockInventoryLosses.length;j++){
- if(list[i].max_unit == list[i].WareEndStockInventoryLosses[j].max_unit){
- list[i].WareEndStockInventoryLosses[j].count = list[i].WareEndStockInventoryLosses[j].count * list[i].min_number
- }
- }
- }
- }
-
- console.log("list23323223322332232323322323wode",list)
- for(let i=0;i<list.length;i++){
- list[i].last_price_in = 0
- list[i].drugIn = this.getDrugWarehouseInfoOne(list[i].DrugWarehouseInfoStart,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].DrugWarehouseOutInfoStart,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].WareStartStockCancelInfo)
- list[i].drugInMoney = this.getDrugInMoneyOne(list[i].DrugWarehouseInfoStart,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].DrugWarehouseOutInfoStart,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].WareStartStockCancelInfo)
- list[i].drugSaleMoney = this.getSaleMoneyOne(list[i].DrugWarehouseInfoStart,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].DrugWarehouseOutInfoStart,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].WareStartStockCancelInfo)
-
- list[i].drugAdd = this.drugAddInfo(list[i].DrugWarehouseInfoStartEnd,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].WareStartEndStockInventoryProfit)
- list[i].drugAddPrice = this.getdrugAddPrice(list[i].DrugWarehouseInfoStartEnd,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].WareStartEndStockInventoryProfit)
- list[i].drugAddSalePrice = this.drugAddSalePrice(list[i].DrugWarehouseInfoStartEnd,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].WareStartEndStockInventoryProfit)
-
- list[i].drugOut= this.getDrugOut(list[i].DrugWarehouseOutInfoStartEnd,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].WareStartEndStockInventoryLosses,list[i].WareStartEndStockCancelInfo)
- list[i].drugOutPrice = this.getDrugOutPrice(list[i].DrugWarehouseOutInfoStartEnd,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].WareStartEndStockInventoryLosses,list[i].WareStartEndStockCancelInfo)
- list[i].drugOutSalePrice = this.getDrugOutSaleprice(list[i].DrugWarehouseOutInfoStartEnd,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].WareStartEndStockInventoryLosses,list[i].WareStartEndStockCancelInfo)
-
- list[i].overDrug = this.getDrugWarehouseInfo(list[i].DrugWarehouseInfoEnd,list[i].DrugWarehouseOutInfoEnd,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].WareEndStockCancelInfo)
- list[i].overDrugPrice = this.getDrugInMoney(list[i].DrugWarehouseInfoEnd,list[i].DrugWarehouseOutInfoEnd,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].WareEndStockCancelInfo)
- list[i].oveDrugSaleMoney = this.getSaleMoney(list[i].DrugWarehouseInfoEnd,list[i].DrugWarehouseOutInfoEnd,list[i].min_number,list[i].min_unit,list[i].max_unit,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].WareEndStockCancelInfo)
- }
- this.tableList = list;
- this.total = response.data.data.total
- this.manufacturerList = response.data.data.manufacturerList
- var drugTypeList = response.data.data.drugTypeList
- var obj = {value:0,name:"全部"}
- this.drugTypeList.push(obj)
- for(let i=0;i<drugTypeList.length;i++){
- this.drugTypeList.push(drugTypeList[i])
- }
-
- }
- })
- },
- 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.drugTypeList = []
- this.limit = val;
- this.getlist()
- },
- handleCurrentChange(val) {
- this.page = val;
- this.drugTypeList = []
- this.getlist()
- },
- seach(){
- this.drugTypeList = []
- this.houseList= []
- this.getlist()
- },
- getDrugTypeName(id){
- var type_name = ""
- for(let i=0;i<this.drugTypeList.length;i++){
- if(id == this.drugTypeList[i].value){
- type_name = this.drugTypeList[i].name
- }
- }
- return type_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
- },
- 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
- },
- endTimeChange(){
- this.drugTypeList = []
- this.getlist()
- },
- startTimeChange(){
- this.drugTypeList = []
- this.getlist()
- },
- getDrugWarehouseInfoOne(arr,min_number,min_unit,max_unit,arr2,arr3,arr4,arr5){
- var total = 0
- var totalOne =0
- var totalTwo = 0
- var totalthree= 0
- var totalfour = 0
- var totalfive = 0
- var max_str = "";
- var min_str = "";
- if(arr!=null && arr.length > 0){
- for(let i=0;i<arr.length;i++){
- totalOne += arr[i].count
- }
- }
- if(arr2!=null && arr2.length > 0){
- for(let i=0;i<arr2.length;i++){
- totalTwo += arr2[i].count
- }
- }
- if(arr3!=null && arr3.length > 0){
- for(let i=0;i<arr3.length;i++){
- totalthree += arr3[i].count
- }
- }
- if(arr4!=null && arr4.length > 0){
- for(let i=0;i<arr4.length;i++){
- totalfour += arr4[i].count
- }
- }
-
- if(arr5!=null && arr5.length > 0){
- for(let i=0;i<arr5.length;i++){
- totalfive += arr5[i].count
- }
- }
- // console.log("totalONE223323232323232",totalOne)
- // console.log("totalTwo2oo2o32o3o32o23",totalTwo)
- // console.log("totalfive",totalfive)
- // console.log("00-------------------------")
- total = totalOne - totalTwo + totalthree - totalfour + totalfive
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- console.log("max_str",max_str)
- console.log("min_str",min_str)
- if(max_str == "" && min_str == ""){
- return "0"
- }else{
- return max_str + min_str
- }
-
-
- },
- getDrugWarehouseInfo(arr,arr4,min_number,min_unit,max_unit,arr2,arr3,arr5){
- var total = 0
- var total_one= 0
- var total_two = 0
- var total_three = 0
- var total_four = 0
- var total_five = 0
- var max_str = "";
- var min_str = "";
- if(arr!=null && arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total_one += arr[i].count
- }
- }
- if(arr4!=null && arr4.length > 0){
- for(let i=0;i<arr4.length;i++){
- total_four += arr4[i].count
- }
- }
- if(arr2!=null && arr2.length > 0){
- for(let i=0;i<arr2.length;i++){
- total_two+= arr2[i].count
- }
- }
- if(arr3!=null && arr3.length >0){
- for(let i=0;i<arr3.length;i++){
- total_three +=arr3[i].count
- }
- }
-
- if(arr5!=null && arr5.length >0){
- for(let i=0;i<arr5.length;i++){
- total_five +=arr5[i].count
- }
- }
-
- total = total_one - total_four +total_two - total_three + total_five
- if(total < 0){
- total = 0
- }
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- if(max_str == "" && min_str == ""){
- return "0"
- }else{
- return max_str + min_str;
- }
-
- },
- getDrugWarehouseInfoStart(arr,min_number,min_unit,max_unit,outArr){
- var total = 0
- var add_total = 0
- var out_total = 0
- var max_str = "";
- var min_str = "";
- if(arr!=null &&arr.length > 0){
- for(let i=0;i<arr.length;i++){
- add_total += arr[i].warehousing_count
- }
- }
- if(outArr.length > 0){
- for(let i=0;i<outArr.length;i++){
- out_total+= outArr[i].count
- }
- }
- total = add_total - out_total
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- return max_str + min_str;
-
- },
- getDrugWarehouseInfoMoneyStart(arr,min_number,min_unit,max_unit,last_price,outArr){
- var total = 0
- var min_str = 0
- var max_str = 0
- var addTotal = 0
- var outTotal = 0
- var total_price = 0
- if(arr.length > 0){
- for(let i=0;i<arr.length;i++){
- addTotal += arr[i].warehousing_count
- }
- }
- if(outArr.length > 0){
- for(let i=0;i<outArr.length;i++){
- outTotal += outArr[i].count
- }
- }
-
- total = addTotal - outTotal
- if (total < min_number) {
- min_str = total
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number);
- }
- if (total % min_number != 0) {
- min_str = (total % min_number);
- }
- }
-
- total_price = (max_str * last_price + min_str*(last_price/min_number)).toFixed(2)
-
- return total_price
- },
- getDrugWarehouseInfoMoney(arr,min_number,min_unit,max_unit,last_price){
- var total = 0
- var min_str = 0
- var max_str = 0
- var total_price = 0
- if(arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total += arr[i].stock_max_number + arr[i].stock_min_number
- }
- }
- if (total < min_number) {
- min_str = total
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number);
- }
- if (total % min_number != 0) {
- min_str = (total % min_number);
- }
- }
-
- total_price = (max_str * last_price + min_str*(last_price/min_number)).toFixed(2)
-
- return total_price
- },
- getDrugWarehouseInfoStockAdd(arr,min_number,min_unit,max_unit){
-
- var total = 0
- var max_str = "";
- var min_str = "";
- if(arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total += arr[i].warehousing_count
- }
- }
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- return max_str + min_str;
- },
- getDrugWarehouseInfoaddMoney(arr,min_number,min_unit,max_unit,last_price){
- var total = 0
- var min_str = 0
- var max_str = 0
- var total_price = 0
- if(arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total += arr[i].warehousing_count
- }
- }
- if (total < min_number) {
- min_str = total
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number);
- }
- if (total % min_number != 0) {
- min_str = (total % min_number);
- }
- }
-
- total_price = (max_str * last_price + min_str*(last_price/min_number)).toFixed(2)
- return total_price
- },
- getDrugInMoneyOne(arr,min_number,min_unit,max_unit,arr2,arr3,arr4,arr5){
-
- var totalOne = 0
- var totalTwo =0
- var total_three = 0
- var total_four = 0
- var totalFive = 0
- var total_price = 0
- if(arr!=null&&arr.length > 0){
- for(let i=0;i<arr.length;i++){
- totalOne += (arr[i].count/min_number*arr[i].price) + arr[i].count*(arr[i].price%min_number)
- }
- }
-
- if(arr2!=null&&arr2.length > 0){
- for(let i=0;i<arr2.length;i++){
- totalTwo += ((arr2[i].count/min_number) * arr2[i].price) + ((arr2[i].count%min_number)*(arr2[i].price/min_number))
- }
- }
-
-
- if(arr3!=null&&arr3.length > 0){
- for(let i=0;i<arr3.length;i++){
- total_three+=arr3[i].count* arr3[i].xt_drug_warehouse_info.retail_price
- }
- }
-
- if(arr4!=null&&arr4.length > 0){
- for(let i=0;i<arr4.length;i++){
- total_four+=arr4[i].count * arr4[i].xt_drug_warehouse_info.retail_price
- }
- }
-
- if(arr5!=null&&arr5.length > 0){
- for(let i=0;i<arr5.length;i++){
- totalFive += ((arr5[i].count/min_number) * arr5[i].price) + ((arr5[i].count%min_number)*(arr5[i].price/min_number))
- }
- }
-
- total_price =(totalOne - totalTwo + total_three - total_four + totalFive).toFixed(2)
- console.log("totalONE232332323323223322323wi",totalOne)
- console.log("totalTwo99999999999999988888888",totalTwo)
- console.log("total_three99999999999999988888888",total_three)
- console.log("total_four99999999999999988888888",total_four)
- console.log("totalFive99999999999999988888888",totalFive)
- console.log("-------------------------------------------")
- if(total_price >0){
- return total_price
- }else{
- return "0.00"
- }
-
- },
- getDrugInMoney(arr,arr4,min_number,min_unit,max_unit,arr2,arr3,arr5){
-
- var total_price = 0
- var total_one_price = 0
- var total_two_price = 0
- var total_four_price =0
- var total_three_price = 0
- var total_five_price = 0
- if(arr!=null&&arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total_one_price += arr[i].count * (arr[i].price/min_number) + arr[i].count * (arr[i].price%min_number)
- }
- }
-
- if(arr4!=null && arr4.length > 0){
- for(let i=0;i<arr4.length;i++){
- // total_four_price +=arr4[i].count * arr4[i].xt_drug_warehouse_info.price/min_number
- total_four_price+= ((arr4[i].count/min_number) * arr4[i].price) + ((arr4[i].count%min_number)*(arr4[i].price/min_number))
- }
- }
-
- if(arr2!=null && arr2.length > 0){
- for(let i=0;i<arr2.length;i++){
- total_two_price += arr2[i].count * arr2[i].xt_drug_warehouse_info.price/min_number
- }
- }
-
- if(arr3!=null && arr3.length > 0){
- for(let i=0;i<arr3.length;i++){
- total_three_price += arr3[i].count * arr3[i].xt_drug_warehouse_info.price/min_number
- }
- }
-
- if(arr5!=null && arr5.length > 0){
- for(let i=0;i<arr5.length;i++){
- total_five_price += arr5[i].count * arr5[i].xt_drug_warehouse_info.price/min_number
- }
- }
-
- total_price = total_one_price - total_four_price + total_two_price - total_three_price + total_five_price
- if(total_price > 0){
- return total_price.toFixed(2)
- }else{
- return "0.00"
- }
- },
- getSaleMoney(arr,arr4,min_number,min_unit,max_unit,arr2,arr3,arr5){
-
- var total_price = 0
- var total_price_one = 0
- var total_price_two = 0
- var total_price_four = 0
- var total_price_three =0
- var total_price_five = 0
- if(arr!=null&&arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total_price_one += arr[i].count * arr[i].xt_drug_warehouse_info.retail_price
- }
- }
- if(arr4!=null && arr4.length>0){
- for(let i=0;i<arr4.length > 0;i++){
- total_price_four += arr4[i].count * arr4[i].xt_drug_warehouse_info.retail_price
- }
- }
- if(arr2!=null && arr2.length > 0){
- for(let i=0;i<arr2.length;i++){
- total_price_two += arr2[i].count * arr2[i].xt_drug_warehouse_info.retail_price
- }
-
- }
-
- if(arr3!=null && arr3.length > 0){
- for(let i=0;i<arr3.length;i++){
- total_price_three += arr3[i].count * arr3[i].xt_drug_warehouse_info.retail_price
- }
-
- }
-
- if(arr5!=null && arr5.length > 0){
- for(let i=0;i<arr5.length;i++){
- total_price_five += arr5[i].count * arr5[i].xt_drug_warehouse_info.retail_price
- }
-
- }
-
- total_price = total_price_one - total_price_four + total_price_two - total_price_three + total_price_five
- if(total_price >0){
- return total_price.toFixed(2)
- }else{
- return "0.00"
- }
-
- },
- getSaleMoneyOne(arr,min_number,min_unit,max_unit,arr2,arr3,arr4,arr5){
- var totalOne = 0
- var totalTwo =0
- var total_price = 0
- var total_three= 0
- var total_four = 0
- var total_five = 0
- if(arr!=null&&arr.length > 0){
- for(let i=0;i<arr.length;i++){
- totalOne += arr[i].count*arr[i].xt_drug_warehouse_info.retail_price
- }
- }
-
- if(arr2!=null&&arr2.length > 0){
- for(let i=0;i<arr2.length;i++){
- totalTwo += arr2[i].count * arr2[i].xt_drug_warehouse_info.retail_price
- }
- }
-
- if(arr3!=null&&arr3.length > 0){
- for(let i=0;i<arr3.length;i++){
- total_three+=arr3[i].count* arr3[i].xt_drug_warehouse_info.retail_price
- }
- }
-
- if(arr4!=null&&arr4.length > 0){
- for(let i=0;i<arr4.length;i++){
- total_four+=arr4[i].count * arr4[i].xt_drug_warehouse_info.retail_price
- }
- }
-
- if(arr5!=null&&arr5.length > 0){
- for(let i=0;i<arr5.length;i++){
- total_five+=arr5[i].count * arr5[i].xt_drug_warehouse_info.retail_price
- }
- }
- // console.log("total_one",totalOne)
- // console.log("totalTwo",totalTwo)
- // console.log("total_three",total_three)
- // console.log("total_four",total_four)
-
- // console.log("total_pricewode",(totalOne - totalTwo+total_three - total_four).toFixed(2))
- total_price =(totalOne - totalTwo+total_three - total_four + total_five).toFixed(2)
- if(total_price > 0){
- return total_price
- }else{
- return "0.00"
- }
-
- },
- getDrugWarehouseOutInfo(arr,min_number,min_unit,max_unit){
- var total = 0
- var max_str = "";
- var min_str = "";
- if(arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total += arr[i].count
- }
- }
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- return max_str + min_str;
- },
- getDrugWarehouseOutMoney(arr,min_number,min_unit,max_unit,last_price){
- var total = 0
- var min_str = 0
- var max_str = 0
- var total_price = 0
- if(arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total += arr[i].count
- }
- }
- if (total < min_number) {
- min_str = total
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number);
- }
- if (total % min_number != 0) {
- min_str = (total % min_number);
- }
- total_price = (max_str * last_price + min_str*(last_price/min_number)).toFixed(2)
- return total_price
- }
- },
- open(){
- // this.start_time = moment().year(2022).month(10).date(1).format('YYYY-MM-DD')
- this.start_time = moment().startOf('month').format('YYYY-MM-DD')
- this.end_time = moment(new Date()).add('year',0).format("YYYY-MM-DD")
- this.houseList= []
- this.drugTypeList = []
- this.getStorehouseList()
- this.getlist()
- },
-
- drugAddInfo(arr,min_number,min_unit,max_unit,arr2){
- var total = 0
- var totalone = 0
- var totaltwo = 0
- var max_str = "";
- var min_str = "";
- if(arr!=null && arr.length > 0){
- for(let i=0;i<arr.length;i++){
- totalone += arr[i].count
- }
- }
- if(arr2!=null && arr2.length >0){
- for(let i=0;i<arr2.length;i++){
- totaltwo += arr2[i].count
- }
- }
- total = totalone + totaltwo
-
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- if(max_str == "" && min_str == ""){
- return "0"
- }else{
- return max_str + min_str
- }
-
- },
- getdrugAddPrice(arr,min_number,min_unit,max_unit,arr2){
- var total = 0
- var totalone =0
- var totaltwo = 0
- var total_price = 0
-
- if(arr!=null&&arr.length > 0){
- for(let i=0;i<arr.length;i++){
- totalone += arr[i].count * arr[i].xt_drug_warehouse_info.price/min_number
- }
- }
-
- if(arr2!=null && arr2.length > 0){
- for(let i=0;i<arr2.length;i++){
- totaltwo +=arr2[i].count * arr2[i].xt_drug_warehouse_info.price/min_number
- }
- }
- total = totalone + totaltwo
- total_price =total.toFixed(2)
- return total_price
- },
- drugAddSalePrice(arr,min_number,min_unit,max_unit,arr2){
- var total = 0
- var total_one = 0
- var total_two = 0
- var total_price = 0
- if(arr!=null&&arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total_one += arr[i].count * arr[i].xt_drug_warehouse_info.retail_price
- }
- }
-
- if(arr2!=null&&arr2.length > 0){
- for(let i=0;i<arr2.length;i++){
- total_two +=arr2[i].count * arr2[i].xt_drug_warehouse_info.retail_price
- }
- }
-
- total = total_one + total_two
-
- total_price = total.toFixed(2)
- return total_price
- },
- getDrugOut(arr,min_number,min_unit,max_unit,arr2,arr3){
- var total = 0
- var totalone = 0
- var totaltwo = 0
- var totalthree = 0
- var min_str = ""
- var max_str = ""
- if(arr!=null&&arr.length > 0){
- for(let i=0;i<arr.length;i++){
- totalone +=arr[i].count
- }
- }
- if(arr2!=null && arr2.length>0){
- for(let i=0;i<arr2.length;i++){
- totaltwo +=arr2[i].count
- }
- }
- if(arr3!=null && arr3.length>0){
- for(let i=0;i<arr3.length;i++){
- totalthree +=arr3[i].count
- }
- }
- total = totalone + totaltwo - totalthree
- if (total < min_number) {
- min_str = total + min_unit;
- }
- if (total == 0) {
- min_str = "";
- max_str = "";
- }
- if (total >= min_number) {
- if (parseInt(total / min_number) != 0) {
- max_str = parseInt(total / min_number) + max_unit;
- }
- if (total % min_number != 0) {
- min_str = (total % min_number) + min_unit;
- }
- }
- if(max_str == "" && min_str == ""){
- return "0"
- }else{
- return max_str + min_str;
- }
-
- },
- getDrugOutPrice(arr,min_number,min_unit,max_unit,arr2,arr3){
-
- var total_price = 0
- var total_one_price =0
- var total_two_price = 0
- var total_three_price = 0
- var total = 0
- var total_two = 0
- var total_three = 0
- if(arr!=null&&arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total_one_price += arr[i].count * (arr[i].xt_drug_warehouse_info.price/min_number)
- total += arr[i].count
- }
- }
- if(arr2!=null && arr2.length>0){
- for(let i=0;i<arr2.length;i++){
- total_two_price +=arr2[i].count * arr2[i].xt_drug_warehouse_info.price/min_number
- total_two +=arr2[i].count
- }
- }
-
- if(arr3!=null && arr3.length>0){
- for(let i=0;i<arr3.length;i++){
- total_three_price +=arr3[i].count * arr3[i].xt_drug_warehouse_info.price/min_number
- total_three +=arr3[i].count
- }
- }
-
- total_price = total_one_price + total_two_price - total_three_price
- if(total_price > 0){
- return total_price.toFixed(2)
- }else{
- return "0.00"
- }
-
- },
- getDrugOutSaleprice(arr,min_number,min_unit,max_unit,arr3,arr4){
- var total_price = 0
- var total_price_one = 0
- var total_price_two = 0
- var total_price_three = 0
- if(arr!=null&&arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total_price_one += arr[i].count * arr[i].xt_drug_warehouse_info.retail_price
- }
- }
-
- if(arr3!=null && arr3.length >0){
- for(let i=0;i<arr3.length;i++){
- total_price_two +=arr3[i].count * arr3[i].xt_drug_warehouse_info.retail_price
- }
- }
-
- if(arr4!=null && arr4.length >0){
- for(let i=0;i<arr4.length;i++){
- total_price_three +=arr4[i].count * arr4[i].xt_drug_warehouse_info.retail_price
- }
- }
-
- total_price = total_price_one + total_price_two - total_price_three
-
- if(total_price > 0){
- return total_price.toFixed(2)
- }else{
- return "0.00"
- }
-
- },
- toPrint(){
- this.$router.push({path:"/drugs/purchase/query/print?start_time="+this.start_time+"&end_time="+this.end_time+"&page="+this.page+"&limit="+this.limit+"&keyword="+this.keyword+"&good_type="+this.good_type})
- },
- exportList: function() {
- for(let i=0;i<this.tableList.length;i++){
- this.tableList[i].index = i+1
- this.tableList[i].query_date = this.start_time+"~"+this.end_time
- this.tableList[i].good_type = this.getDrugTypeName(this.tableList[i].drug_type)
- this.tableList[i].manufacturer_name = this.getManufacturName(this.tableList[i].manufacturer)
- this.tableList[i].dealer_name = this.getDearName(this.tableList[i].dealer)
- this.tableList[i].specification_name = this.tableList[i].dose + this.tableList[i].dose_unit +"*"+this.tableList[i].min_number + this.tableList[i].min_unit+"/"+this.tableList[i].max_unit
-
- }
- import('@/vendor/Export2Excel').then(excel => {
- const multiHeader = [['序号', '查询日期',' 药品类型','药品名称','规格&单位','生产产商','经销商', '期初结余' , '', '', '本期增加', '', '', '本期减少' , '', '', '期末结余' , '', '']]
- const header = ['', '','','','','','', '数量', '进货金额', '销售金额', '数量', '进货金额', '销售金额', '数量', '进货金额', '销售金额', '数量', '进货金额', '销售金额']
- const merges = ['A1:A2', 'B1:B2','C1:C2','D1:D2','E1:E2','F1:F2','G1:G2','H1:J1', 'K1:M1', 'N1:P1', 'Q1:S1']
- const filterVal = ['index', 'query_date', 'good_type','drug_name','specification_name','manufacturer_name','dealer_name','drugIn','drugInMoney','drugSaleMoney','drugAdd','drugAddPrice','drugAddSalePrice','drugOut','drugOutPrice','drugOutSalePrice','overDrug','overDrugPrice','oveDrugSaleMoney']
-
- const data = this.formatJson(filterVal, this.tableList)
-
- const filename = '药品进销存查询'
-
-
- excel.export_json_to_excel({
- multiHeader,
- header,
- merges,
- data,
- filename
- })
- })
- },
- formatJson(filterVal, jsonData) {
- return jsonData.map(v => filterVal.map(j => v[j]));
- },
- getDearName(id){
- var dear_name = ""
- for(let i=0;i<this.dealerList.length;i++){
- if(id == this.dealerList[i].id){
- dear_name = this.dealerList[i].dealer_name
- }
- }
- return dear_name
- },
- }
- }
- </script>
-
|