|
|
|
@ -768,77 +768,92 @@
|
|
|
|
|
font-weight: bold;">
|
|
|
|
|
<div style="width: 96%;margin: 0 auto">
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="流通计量层级标识:" prop="distributeLevelDi" label-width="160px">
|
|
|
|
|
<el-select v-model="editQuery.distributeLevelDi" size="small" style="width: 90%"
|
|
|
|
|
@change="distributeLevelDiChange"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择流通计量层级标识">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in detailList"
|
|
|
|
|
:key="item.nameCode"
|
|
|
|
|
:value="item.nameCode"
|
|
|
|
|
:label="item.nameCode">
|
|
|
|
|
<span style="float: left">{{ item.nameCode }}</span>
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.packLevel }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="使用计量层级标识:" prop="useLevelDi" label-width="160px">
|
|
|
|
|
<el-select v-model="editQuery.useLevelDi" size="small" style="width: 90%"
|
|
|
|
|
@change="useLevelDiChange"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择流通计量层级标识">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in detailList"
|
|
|
|
|
:key="item.nameCode"
|
|
|
|
|
:value="item.nameCode"
|
|
|
|
|
:label="item.nameCode">
|
|
|
|
|
<span style="float: left">{{ item.nameCode }}</span>
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.packLevel }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="流通计量层级单位:" prop="distributeLevelUnit" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入流通计量层级单位"
|
|
|
|
|
disabled
|
|
|
|
|
v-model="editQuery.distributeLevelUnit"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="使用计量层级标识:" prop="useLevelUnit" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入使用计量层级标识"
|
|
|
|
|
disabled
|
|
|
|
|
v-model.trim="editQuery.useLevelUnit"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="流通时含计量单元数量:" prop="distributeLevelCount" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入流通时包含计量单元的数量"
|
|
|
|
|
v-model.trim="editQuery.distributeLevelCount"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="使用时含计量单元数量:" prop="useLeverCount" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入使用时包含计量单元的数量"
|
|
|
|
|
v-model.trim="editQuery.useLeverCount"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="流通计量层级标识:" prop="distributeLevelDi" label-width="160px">
|
|
|
|
|
<el-select v-model="editQuery.distributeLevelDi" size="small" style="width: 90%"
|
|
|
|
|
@change="distributeLevelDiChange"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择流通计量层级标识">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in detailList"
|
|
|
|
|
:key="item.nameCode"
|
|
|
|
|
:value="item.nameCode"
|
|
|
|
|
:label="item.nameCode">
|
|
|
|
|
<span style="float: left">{{ item.nameCode }}</span>
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.packLevel }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="使用计量层级标识:" prop="useLevelDi" label-width="160px">
|
|
|
|
|
<el-select v-model="editQuery.useLevelDi" size="small" style="width: 90%"
|
|
|
|
|
@change="useLevelDiChange"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择流通计量层级标识">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in detailList"
|
|
|
|
|
:key="item.nameCode"
|
|
|
|
|
:value="item.nameCode"
|
|
|
|
|
:label="item.nameCode">
|
|
|
|
|
<span style="float: left">{{ item.nameCode }}</span>
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.packLevel }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="流通计量层级单位:" prop="distributeLevelUnit" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入流通计量层级单位"
|
|
|
|
|
disabled
|
|
|
|
|
v-model="editQuery.distributeLevelUnit"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="使用计量层级标识:" prop="useLevelUnit" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入使用计量层级标识"
|
|
|
|
|
disabled
|
|
|
|
|
v-model.trim="editQuery.useLevelUnit"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="流通时含计量单元数量:" prop="distributeLevelCount" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入流通时包含计量单元的数量"
|
|
|
|
|
v-model.trim="editQuery.distributeLevelCount"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="使用时含计量单元数量:" prop="useLeverCount" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入使用时包含计量单元的数量"
|
|
|
|
|
v-model.trim="editQuery.useLeverCount"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-row>
|
|
|
|
|
</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': {
|
|
|
|
|