|
@ -53,7 +53,7 @@ export default {
|
|
|
trackId: this.$route.query.trackId,
|
|
|
drugId: this.$route.query.drugId,
|
|
|
outDetailId: this.$route.query.outDetailId || '',
|
|
|
type: this.$route.query.type, // 1: '补货' 2:'入库
|
|
|
type: this.$route.query.type, // 1: '补货' 2:'入库 3: 更改商品
|
|
|
drug: {},
|
|
|
inventoryList: []
|
|
|
}
|
|
@ -111,25 +111,32 @@ export default {
|
|
|
inventoryIds: this.trackId
|
|
|
}
|
|
|
medicineAbinetApi.drugTraceabilityCodeDetail(params).then(res => {
|
|
|
// console.log(res,"Res");
|
|
|
// return
|
|
|
|
|
|
const data = res.obj
|
|
|
this.drug = data.drug
|
|
|
|
|
|
this.inventoryList = data.inventoryList.map(el => {
|
|
|
let obj = {
|
|
|
...el,
|
|
|
arr: []
|
|
|
...el
|
|
|
}
|
|
|
console.log(this.stock, 'this.stock')
|
|
|
// *1 是为了字符串转数字
|
|
|
var maxNum = (this.stock * 1 > el.cargoCapacity * 1 ? el.cargoCapacity : this.stock) * 1
|
|
|
|
|
|
var len = obj.codeList.length
|
|
|
if (obj.codeList.length < maxNum) {
|
|
|
for (let i = 0; i < maxNum - len; i++) {
|
|
|
if (this.type == 3) {
|
|
|
// 如果是更改药品
|
|
|
obj.codeList = []
|
|
|
for (let i = 0; i < maxNum; i++) {
|
|
|
obj.codeList.unshift({ code: '' })
|
|
|
}
|
|
|
} else {
|
|
|
var len = obj.codeList.length
|
|
|
|
|
|
if (obj.codeList.length < maxNum) {
|
|
|
for (let i = 0; i < maxNum - len; i++) {
|
|
|
obj.codeList.unshift({ code: '' })
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
return obj
|
|
@ -140,7 +147,7 @@ export default {
|
|
|
if (this.allNum == this.fillNum) {
|
|
|
if (this.type == 1) {
|
|
|
this.batchAddInventory()
|
|
|
} else {
|
|
|
} else{
|
|
|
this.updateMediicinecabineInventory()
|
|
|
}
|
|
|
} else {
|
|
@ -153,8 +160,24 @@ export default {
|
|
|
this.batchAddInventory()
|
|
|
})
|
|
|
.catch(() => {})
|
|
|
} else {
|
|
|
this.updateMediicinecabineInventory
|
|
|
} else if (this.type == 2) {
|
|
|
this.$dialog
|
|
|
.confirm({
|
|
|
message: '未录入所有追溯码,是否完成补货?请确保顺序靠后的位次为空,药品放在前置位。'
|
|
|
})
|
|
|
.then(() => {
|
|
|
this.updateMediicinecabineInventory()
|
|
|
})
|
|
|
.catch(() => {})
|
|
|
} else if (this.type == 3) {
|
|
|
this.$dialog
|
|
|
.confirm({
|
|
|
message: '未录入所有追溯码,是否完成更改商品?请确保顺序靠后的位次为空,药品放在前置位。'
|
|
|
})
|
|
|
.then(() => {
|
|
|
this.updateMediicinecabineInventory()
|
|
|
})
|
|
|
.catch(() => {})
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@ -199,18 +222,24 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
updateMediicinecabineInventory() {
|
|
|
// 入库
|
|
|
// 入库 更改商品
|
|
|
const codeList = []
|
|
|
let qty = 0
|
|
|
|
|
|
this.inventoryList[0].codeList.forEach((el, index) => {
|
|
|
codeList.push({
|
|
|
code: el.code,
|
|
|
sort: this.inventoryList[0].codeList.length - index
|
|
|
})
|
|
|
if (el.code != '') {
|
|
|
qty++
|
|
|
codeList.push({
|
|
|
code: el.code,
|
|
|
sort: this.inventoryList[0].codeList.length - index
|
|
|
})
|
|
|
}
|
|
|
})
|
|
|
|
|
|
let p = {
|
|
|
id: this.trackId,
|
|
|
drugId: this.drugId,
|
|
|
qty: this.stock,
|
|
|
qty: qty,
|
|
|
userId: this.user.id,
|
|
|
codeStr: JSON.stringify(codeList)
|
|
|
}
|