|
|
|
@ -1318,12 +1318,12 @@ export default {
|
|
|
|
|
this.editQuery.distributeLevelUnit = matchingItem.packUnit;
|
|
|
|
|
this.editQuery.distributeLevel = matchingItem.packLevel
|
|
|
|
|
}
|
|
|
|
|
calculateDistCount(matchingItem).then((res) => {
|
|
|
|
|
this.editQuery = {
|
|
|
|
|
...this.editQuery,
|
|
|
|
|
distributeLevelCount: res.data.distributeLevelCount,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
// calculateDistCount(matchingItem).then((res) => {
|
|
|
|
|
// this.editQuery = {
|
|
|
|
|
// ...this.editQuery,
|
|
|
|
|
// distributeLevelCount: res.data.distributeLevelCount,
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
},
|
|
|
|
|
useLevelDiChange(val) {
|
|
|
|
|
const matchingItem = this.detailList.find(item => item.nameCode == val);
|
|
|
|
@ -1331,12 +1331,12 @@ export default {
|
|
|
|
|
this.editQuery.useLevelUnit = matchingItem.packUnit;
|
|
|
|
|
this.editQuery.useLevel = matchingItem.packLevel;
|
|
|
|
|
}
|
|
|
|
|
calculateUseCount(matchingItem).then((res) => {
|
|
|
|
|
this.editQuery = {
|
|
|
|
|
...this.editQuery,
|
|
|
|
|
useLeverCount: res.data.useLeverCount,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
// calculateUseCount(matchingItem).then((res) => {
|
|
|
|
|
// this.editQuery = {
|
|
|
|
|
// ...this.editQuery,
|
|
|
|
|
// useLeverCount: res.data.useLeverCount,
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
},
|
|
|
|
|
classifyChange() {
|
|
|
|
|
this.classifyChange(this.editQuery.flbm)
|
|
|
|
@ -1751,11 +1751,12 @@ export default {
|
|
|
|
|
|
|
|
|
|
//如果都为空 进行补充
|
|
|
|
|
if (!this.$isNotBlank(this.editQuery.sptm) && !this.$isNotBlank(this.editQuery.ybbm)) {
|
|
|
|
|
getCodeRelDetail({drugcode:row.nameCode}).then((response) => {
|
|
|
|
|
getCodeRelDetail({drugCode:row.nameCode}).then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
if (this.response.data != null && this.response.data.length > 0) {
|
|
|
|
|
this.editQuery.sptm = this.response.data[0].sptm;
|
|
|
|
|
this.editQuery.ybbm = this.response.data[0].ybbm;
|
|
|
|
|
if (response.data != null && response.data.length > 0) {
|
|
|
|
|
this.editQuery.sptm = response.data[0].sptm;
|
|
|
|
|
this.editQuery.ybbm = response.data[0].ybbm;
|
|
|
|
|
this.getYbHcData()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|