|
@ -20,16 +20,12 @@
|
|
|
<div class="box">
|
|
|
<div class="mb10">
|
|
|
<span>药品追溯码(</span>
|
|
|
<span class="c-17b3ec">{{ info.qty }}</span>
|
|
|
<span>/{{ info.cargoCapacity }})</span>
|
|
|
<span class="c-17b3ec">{{ codeList.length }}</span>
|
|
|
<span>/{{ info.qty }})</span>
|
|
|
</div>
|
|
|
<div class="drug-item">
|
|
|
<span class="c-999">1位最外:</span>
|
|
|
<span>9431924004563435393</span>
|
|
|
</div>
|
|
|
<div class="drug-item">
|
|
|
<span class="c-999">2位最外:</span>
|
|
|
<span>9431924004563435393</span>
|
|
|
<div class="drug-item" v-for="(item, index) in codeList" :key="index">
|
|
|
<span class="c-999">{{ getLabel(index, codeList.length) }}</span>
|
|
|
<span>{{ item.code }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="bot-banner ptb10">
|
|
@ -65,7 +61,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 修改容量 -->
|
|
|
<SetStockDialog v-model="setStockShow" :data="info" @onConfirm="updateMediicinecabineInventoryInfoById" :bussiness="bussiness" />
|
|
|
<SetStockDialog v-model="setStockShow" :data="info" :codeList="codeList" @onConfirm="updateMediicinecabineInventoryInfoById" :bussiness="bussiness" />
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
@ -86,7 +82,8 @@ export default {
|
|
|
drugId: '',
|
|
|
drugName: '',
|
|
|
drugPrice: '',
|
|
|
from: this.$route.query.from
|
|
|
from: this.$route.query.from,
|
|
|
codeList: []
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@ -113,12 +110,10 @@ export default {
|
|
|
inventoryIds: trackId
|
|
|
}
|
|
|
medicineAbinetApi.drugTraceabilityCodeDetail(params).then(res => {
|
|
|
// const data = res.obj
|
|
|
// this.drug = data.drug
|
|
|
// this.inventoryList = data.inventoryList.map(el => {
|
|
|
const data = res.obj
|
|
|
// const inventoryList = data.inventoryList.map(el => {
|
|
|
// let obj = {
|
|
|
// ...el,
|
|
|
// arr: []
|
|
|
// ...el
|
|
|
// }
|
|
|
// var maxNum = el.cargoCapacity * 1 > this.stock * 1 ? this.stock * 1 : el.cargoCapacity * 1
|
|
|
// var len = obj.codeList.length
|
|
@ -130,6 +125,9 @@ export default {
|
|
|
|
|
|
// return obj
|
|
|
// })
|
|
|
if (data.inventoryList.length > 0) {
|
|
|
this.codeList = data.inventoryList[0].codeList
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
selectMediicinecabineInventoryById() {
|
|
@ -140,7 +138,7 @@ export default {
|
|
|
medicineAbinetApi
|
|
|
.selectMediicinecabineInventoryById(p)
|
|
|
.then(res => {
|
|
|
console.log(res,"REs");
|
|
|
console.log(res, 'REs')
|
|
|
const obj = res.obj
|
|
|
this.$toast.clear()
|
|
|
this.info = obj
|
|
@ -175,7 +173,15 @@ export default {
|
|
|
} else if (this.bussiness == 1) {
|
|
|
p.cargoCapacity = data
|
|
|
} else if (this.bussiness == 2) {
|
|
|
p.qty = data
|
|
|
p.qty = data.stock
|
|
|
const codeList = []
|
|
|
data.codeList.forEach((el, index) => {
|
|
|
codeList.push({
|
|
|
code: el.code,
|
|
|
sort: data.codeList.length - index
|
|
|
})
|
|
|
})
|
|
|
p.codeStr = JSON.stringify(codeList)
|
|
|
}
|
|
|
medicineAbinetApi
|
|
|
.updateMediicinecabineInventoryInfoById(p)
|
|
@ -204,11 +210,19 @@ export default {
|
|
|
|
|
|
updateMediicinecabineInventory(data) {
|
|
|
this.$loading('保存中..')
|
|
|
const codeList = []
|
|
|
data.codeList.forEach((el,index)=>{
|
|
|
codeList.push({
|
|
|
code: el.code,
|
|
|
sort: data.codeList - index
|
|
|
})
|
|
|
})
|
|
|
let p = {
|
|
|
id: this.id,
|
|
|
drugId: this.drugId,
|
|
|
qty: data,
|
|
|
userId: this.user.id
|
|
|
qty: data.stock,
|
|
|
userId: this.user.id,
|
|
|
codeStr: JSON.stringify(codeList)
|
|
|
}
|
|
|
|
|
|
medicineAbinetApi
|
|
@ -233,12 +247,22 @@ export default {
|
|
|
.catch(err => {
|
|
|
console.error(err)
|
|
|
})
|
|
|
},
|
|
|
getLabel(index, len) {
|
|
|
if (index == 0) {
|
|
|
return `${len - index}位最里:`
|
|
|
} else if (index == len - 1) {
|
|
|
return '1位最外:'
|
|
|
} else {
|
|
|
return `第${len - index}位次:`
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
.replenishment-start-product-detail {
|
|
|
padding-bottom: 70px;
|
|
|
.van-image {
|
|
|
width: 100px;
|
|
|
height: 100px;
|