feat: 多码融合

20240912_adapter
chenhc 5 months ago
parent 3df6fea79a
commit bd123945b5

@ -234,4 +234,11 @@ export function getYbDrugDetail(query) {
});
}
export function getCodeRelDetail(query) {
return axios({
url: "/spms/udchs/codeRe/list",
method: "post",
data: query
});
}

@ -1149,7 +1149,7 @@ import {
removeDiRl,
removeRl,
thirdSysDetail,
updatetSingleUdiInfo, updatetUdiInfos
updatetSingleUdiInfo, updatetUdiInfos,getCodeRelDetail
} from "@/api/basic/product/udiRelevance";
import {isBlank} from "@/utils/strUtil";
import {filterByUuid, levelByUuid} from "@/api/basic/product/udiInfo";
@ -1251,6 +1251,7 @@ export default {
measname: null,
manufactory: null,
ybbm: null,
sptm: null,
cpms: null,
productsType: 2,
//
@ -1745,6 +1746,20 @@ export default {
this.selectedIndex = null
this.getDetailList()
this.getDiLevel();
//
if (!this.$isNotBlank(this.editQuery.sptm) && !this.$isNotBlank(this.editQuery.ybbm)) {
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;
}
}
}).catch(() => {
})
}
} else {
this.isSave = true
this.$message.error(res.message)

Loading…
Cancel
Save