|
|
|
@ -838,7 +838,22 @@
|
|
|
|
|
</div>
|
|
|
|
|
</el-collapse-item>
|
|
|
|
|
</el-collapse>
|
|
|
|
|
|
|
|
|
|
<div style="text-align: center; margin-top: 12px">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
size="small"
|
|
|
|
|
icon="search"
|
|
|
|
|
@click="onAddSubmit(false)"
|
|
|
|
|
:loading="onAddLoading"
|
|
|
|
|
>提交
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
size="small"
|
|
|
|
|
icon="search"
|
|
|
|
|
@click="cancelSubmit"
|
|
|
|
|
>取消
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
@ -920,7 +935,7 @@ import {
|
|
|
|
|
removeDiRl,
|
|
|
|
|
removeRl,
|
|
|
|
|
thirdSysDetail,
|
|
|
|
|
updatetSingleUdiInfo
|
|
|
|
|
updatetSingleUdiInfo, updatetUdiInfos
|
|
|
|
|
} from "@/api/basic/product/udiRelevance";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import {filterByUuid} from "@/api/basic/product/udiInfo";
|
|
|
|
@ -934,7 +949,7 @@ import {getHslbs} from "@/api/thrsys/thrHsfl";
|
|
|
|
|
import {filterClassify} from "@/api/purchase/classifyCode"
|
|
|
|
|
import selectmedicalSuppliesDialog from "./selectmedicalSuppliesDialog"
|
|
|
|
|
import {
|
|
|
|
|
calculateDistCount,calculateUseCount
|
|
|
|
|
calculateDistCount, calculateUseCount
|
|
|
|
|
} from '@/api/basic/product/drugUdiinfos'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -999,6 +1014,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
classifyList: [],
|
|
|
|
|
addLoading: false,
|
|
|
|
|
onAddLoading: false,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -1031,18 +1047,26 @@ export default {
|
|
|
|
|
const matchingItem = this.detailList.find(item => item.nameCode == val);
|
|
|
|
|
if (matchingItem) {
|
|
|
|
|
this.editQuery.distributeLevelUnit = matchingItem.packUnit;
|
|
|
|
|
this.editQuery.distributeLevel = matchingItem.packLevel
|
|
|
|
|
}
|
|
|
|
|
calculateDistCount(matchingItem).then((res) => {
|
|
|
|
|
this.editQuery.distributeLevelCount = res.data.distributeLevelCount
|
|
|
|
|
this.editQuery = {
|
|
|
|
|
...this.editQuery,
|
|
|
|
|
distributeLevelCount: res.data.distributeLevelCount,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
useLevelDiChange(val) {
|
|
|
|
|
const matchingItem = this.detailList.find(item => item.nameCode == val);
|
|
|
|
|
if (matchingItem) {
|
|
|
|
|
this.editQuery.useLevelUnit = matchingItem.packUnit;
|
|
|
|
|
this.editQuery.useLevel = matchingItem.packLevel;
|
|
|
|
|
}
|
|
|
|
|
calculateUseCount(matchingItem).then((res) => {
|
|
|
|
|
this.editQuery.useLeverCount = res.data.useLeverCount
|
|
|
|
|
this.editQuery = {
|
|
|
|
|
...this.editQuery,
|
|
|
|
|
useLeverCount: res.data.useLeverCount,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
classifyChange() {
|
|
|
|
@ -1185,6 +1209,7 @@ export default {
|
|
|
|
|
this.cancelDialog();
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
removeErp(row) {
|
|
|
|
|
this.$confirm("此操作将解除该绑定产品信息, 是否继续?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
@ -1352,7 +1377,27 @@ export default {
|
|
|
|
|
getData(data) {
|
|
|
|
|
this.tollProjectDialogVisible = false
|
|
|
|
|
this.editQuery.payFeeCode = data.medCatalogCode
|
|
|
|
|
},
|
|
|
|
|
onAddSubmit(relSubmit) {
|
|
|
|
|
this.editQuery.relSubmit = relSubmit;
|
|
|
|
|
this.onAddLoading = true
|
|
|
|
|
updatetUdiInfos(this.editQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.onAddLoading = false
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$emit("closePre", true);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.onAddLoading = false
|
|
|
|
|
this.$emit("closePre", true);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
cancelSubmit() {
|
|
|
|
|
this.$emit("closePre", true);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
directives: {
|
|
|
|
|
'debounce-input': {
|
|
|
|
|