Merge remote-tracking branch 'origin/dev_drug' into dev_drug

dev_unify
yewj 3 months ago
commit e069930a00

@ -76,3 +76,12 @@ export function checkTempCode(query) {
});
}
export function excelExport(params) {
return axios({
url: "/udiwms/inout/code/filterList/excelExport",
method: "get",
responseType: 'blob',
params: params
});
}

@ -534,23 +534,28 @@
@close="closeSelectDrugLevelVisible"
>
<el-form :model="filterQueryDrugLevel" class="query-form" label-width="100px">
<el-form :rules="formRulesSelectedDrug" :model="filterQueryDrugLevel" class="query-form" label-width="100px" ref="formSelectedDrug">
<el-row>
<el-col :span="6">
<el-col :span="4">
<el-form-item label="层级标识:">
<el-input v-model="filterQueryDrugLevel.nameCode" placeholder="请输入层级标识" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="通用名:">
<el-input v-model="filterQueryDrugLevel.cpmctymc" placeholder="请输入通用名" clearable></el-input>
<el-col :span="4">
<el-form-item label="药品通用名:" prop="cpmctymc">
<el-input v-model="filterQueryDrugLevel.cpmctymc" placeholder="请输入药品通用名" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-col :span="4">
<el-form-item label="批准文号:">
<el-input v-model="filterQueryDrugLevel.approvalNum" placeholder="请输入批准文号" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item label="生产厂家:">
<el-input v-model="filterQueryDrugLevel.manufacturer" placeholder="请输入生产厂家" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<div style=" float: right;
text-align: right;
@ -754,6 +759,11 @@ export default {
// {required: true, message: '', trigger: 'blur'}
// ],
},
formRulesSelectedDrug: {
cpmctymc: [
{ required: true, message: '请输入药品通用名', trigger: 'blur' }
],
},
detailList: [
//
{
@ -1013,33 +1023,43 @@ export default {
row.isUpDisabled = true
row.rowDisabled = false
},
selectDrugLevel(){
//
// this.filterQueryDrugLevel.approvalNum = this.newProductData.zczbhhzbapzbh
getDrugLevelList(this.filterQueryDrugLevel).then((response) => {
if (response.code == 20000) {
this.selectDrugLevelList = response.data.list || []
this.filterQueryDrugLevel.total = response.data.total || 0
this.selectDrugLevelVisible = true
}
}).catch(() => {
})
selectDrugLevel() {
this.selectDrugLevelVisible = true
setTimeout(() => {
this.$refs['formSelectedDrug'].validate((valid) => {
if (valid) {
this.filterQueryDrugLevel.uuid = this.newProductData.uuid
this.filterQueryDrugLevel.ybbm = this.newProductData.ybbm
//
// this.filterQueryDrugLevel.approvalNum = this.newProductData.zczbhhzbapzbh
getDrugLevelList(this.filterQueryDrugLevel).then((response) => {
if (response.code == 20000) {
this.selectDrugLevelList = response.data.list || []
this.filterQueryDrugLevel.total = response.data.total || 0
}
}).catch(() => {
})
}
})
}, 500)
},
selectDrugLevelItem(row){
var drug = {
"nameCode":row.nameCode,
"uuid":this.newProductData.uuid,
"ybbm":this.newProductData.ybbm,
}
this.filterQueryDrugLevel.uuid = this.newProductData.uuid
this.filterQueryDrugLevel.ybbm = this.newProductData.ybbm
this.filterQueryDrugLevel.nameCodeRow = row.nameCode
// console.log('drug',drug)
updateLevelDrugAli(drug).then((response) => {
updateLevelDrugAli(this.filterQueryDrugLevel).then((response) => {
if (response.code == 20000) {
// this.selectedIndex = this.detailList.length - 1
// this.isSave = false
this.selectDrugLevelVisible = false
var filterQueryDrugLevelNew = this.filterQueryDrugLevel
this.getDiLevel()
this.getDetailList()
this.getThirdSysDetail()
this.filterQueryDrugLevel = filterQueryDrugLevelNew
}
}).catch(() => {
})

@ -457,6 +457,10 @@ export default {
getLocalJoinByUser(query)
.then((response) => {
this.busTypeOptions = response.data.list || [];
if (this.busTypeOptions.length == 1 && this.orderFormData.action == null) {
this.orderFormData.action = this.busTypeOptions[0].action;
this.actionChange(this.orderFormData.action )
}
})
.catch(() => {
});

@ -62,7 +62,7 @@
</el-col>
<el-col :span="11">
<el-form-item label="发票价格:" prop="price">
<el-form-item label="发票金额:" prop="price">
<el-input
v-model="inputQuery.price"
auto-complete="off"
@ -502,7 +502,7 @@ export default {
let mount = 0;
for (var i = 0; i < this.invoiceRow.length; i++) {
// mount += this.invoiceRow[i].amount
mount += this.invoiceRow[i].price
mount += this.invoiceRow[i].amount
}
if (mount != this.inputQuery.price) {
this.$confirm("价格不匹配,是否确定提交?", "提示", {

@ -5,9 +5,22 @@
style="margin-bottom: -15px">
<el-button-group
style="display: flex; margin: 0px 0 15px 75%; height: 35px">
<el-button size="mini" type="primary" @click="triggerFileUpload2"
>
同步阳采单据
</el-button>
<!-- 隐藏的文件输入元素 -->
<input type="file" ref="fileInput2" accept=".xlsx,.xls" style="display: none;" @change="handleFileUpload2" />
<el-button size="mini" type="primary" @click="triggerFileUpload"
v-if="(curAction.checkWebNew !== 2 || viewType !== 1) && orderFormData.billNo">
同步阳采追溯码
</el-button>
<!-- 隐藏的文件输入元素 -->
<input type="file" ref="fileInput" accept=".xlsx,.xls" style="display: none;" @change="handleFileUpload" />
<el-button size="mini" type="primary" @click.native="selectOrder()"
v-if="curAction.checkWebNew != 2 || viewType !=1"
>选入阿里单据
>同步码上放心单据
</el-button>
<el-button
size="mini"
@ -242,7 +255,7 @@
<el-dialog
title="选入阿里单据"
title="选入码上放心单据"
:visible.sync="selectOrderVisible"
append-to-body width="80%"
:close-on-click-modal="false"
@ -336,7 +349,8 @@ export default {
fromInvCode: null,
remark: null,
fromType: 2,
errMsg: null
errMsg: null,
orderEntity: { }
},
errView: 0,
@ -419,6 +433,95 @@ export default {
codesPanel, codeDetailPanel, bizDetailPanel, editCodeDialog,selectMsfxOrderDialog
},
methods: {
triggerFileUpload() {
this.$refs.fileInput.click();
},
triggerFileUpload2() {
this.$refs.fileInput2.click();
},
handleFileUpload(event) {
const file = event.target.files[0];
const billNo = this.orderFormData.billNo; // UUID
const uploadUrl = process.env.VUE_APP_BASE_API + '/udiwms/inout/order/yc/fileUpload'; // URL
if (this.$isBlank(this.orderFormData.billNo)){
this.$message.error("单据编号不可以为空!");
return
}
if (file) {
const formData = new FormData();
formData.append('billNo', billNo);
formData.append('file', file);
fetch(uploadUrl, {
method: 'POST',
body: formData,
})
.then(response => {
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
return response.json(); // JSON
})
.then(data => {
//
if (data.code === 20000) {
this.$message.success("上传成功!")
}else {
this.$message.error(data.message);
}
})
.catch(error => {
//
console.error('File upload failed:', error);
//
});
} else {
//
console.error('No file selected for upload!');
}
},
handleFileUpload2(event) {
const file = event.target.files[0];
const billNo = this.orderFormData.billNo; // UUID
const uploadUrl = process.env.VUE_APP_BASE_API + '/udiwms/inout/order/yc/orderFileUpload'; // URL
// if (this.$isBlank(this.orderFormData.billNo)){
// this.$message.error("!");
// return
// }
if (file) {
const formData = new FormData()
this.orderFormData.orderEntity = JSON.parse(JSON.stringify(this.orderFormData));
formData.append('billNoJson', JSON.stringify(this.orderFormData));
formData.append('file', file);
fetch(uploadUrl, {
method: 'POST',
body: formData
})
.then(response => {
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`)
}
return response.json() // JSON
})
.then(data => {
//
if (data.code === 20000) {
console.log(data.data)
this.$message.success("上传成功!")
}else {
this.$message.error(data.message);
}
})
.catch(error => {
//
console.error('File upload failed:', error);
//
});
} else {
//
console.error('No file selected for upload!');
}
},
//url
selectAuthMenuByMenuKeys() {
selectAuthMenuByMenuKeys(this.helpMenuKeys).then((res) => {
@ -479,6 +582,10 @@ export default {
getLocalJoinByUser(query)
.then((response) => {
this.busTypeOptions = response.data.list || [];
if (this.busTypeOptions.length == 1 && this.orderFormData.action == null) {
this.orderFormData.action = this.busTypeOptions[0].action;
this.actionChange(this.orderFormData.action )
}
})
.catch(() => {
});

@ -798,6 +798,10 @@
>查询
</el-button
>
<el-button type="primary" @click="handleExportView"
icon="el-icon-download"
>导出
</el-button>
</el-button-group>
</el-form-item>
</el-row>
@ -977,6 +981,61 @@
v-on:childByValue="parentByFn"
></accept-order>
</el-dialog>
<el-dialog
:title=this.exportTitle
:visible.sync="handleExportViewVisible"
append-to-body width="45%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="handleExportViewVisible"
@close="cancelDialog">
<el-form
:model="editQuery"
ref="editQuery"
label-width="100px"
style="margin-top: 20px"
>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="20" class="el-col">
<el-form-item class="query-form-item" label="订单编号:">
<el-input
v-model="editQuery.ycBillNo"
placeholder="请输入订单编号"
clearable
>
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="20" class="el-col">
<el-form-item class="query-form-item" label="交易明细编号:">
<el-input
v-model="editQuery.detailNo"
placeholder="请输入交易明细编号"
clearable
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div style="text-align: right;margin-right: 12%;margin-top: 30px">
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消
</el-button>
<el-button type="primary" size="small" icon="search" @click="handleExport"
>导出
</el-button>
</div>
</el-dialog>
</div>
</template>
@ -991,7 +1050,7 @@ import {isBlank} from "@/utils/strUtil";
import {selectSysParamByKey} from "@/api/param/systemParamConfig";
import {getResultDetailList} from "@/api/inout/orderDetailResult";
import {getCodeDetailList} from "@/api/inout/orderDetailCode";
import {getCodeList} from "@/api/inout/code";
import {getCodeList,excelExport} from "@/api/inout/code";
import {
inspectionOrderPDFFromStatemenTemplateFile,
inspectionOrderPDFFromTemplateFile, orderPDFFromStatemenTemplateFile,
@ -1048,6 +1107,11 @@ export default {
1: "未验收",
5: "已验收",
},
editQuery: {
billNo:null,
ycBillNo:null,
detailNo:null
},
checkStatus: {
1: "草稿",
@ -1104,6 +1168,8 @@ export default {
status: 10,
},
dialogTableVisible: false,
exportTitle: "单据追溯码导出",
handleExportViewVisible: false,
formLoading: false,
dialogVisible: false,
formData: formJson,
@ -1175,6 +1241,47 @@ export default {
},
components: {AcceptOrder, DialogCheck, ElImageViewer},
methods: {
cancelDialog(){
this.editQuery = {
billNo:null,
ycBillNo:null,
detailNo:null
}
this.handleExportViewVisible = false
},
handleExport(){
if (isBlank(this.currentRow.billNo)) {
this.$message.error("请先选择需要导出的单据!")
return;
}
this.editQuery.billNo = this.currentRow.billNo
if (isBlank(this.editQuery.ycBillNo)) {
this.$message.error("请先输入需要导出的订单编号!")
return;
}
if (isBlank(this.editQuery.detailNo)) {
this.$message.error("请先输入需要导出的交易明细编号!")
return;
}
excelExport(this.editQuery).then(res => {
let blob = new Blob([res], {type: "application/vnd.ms-excel"});
let url = window.URL.createObjectURL(blob); // urlblob
let a = document.createElement("a");
let decodedFileName = "UDI_"+this.currentRow.billNo+"_追溯码导出"; //
// const contentDisposition = res.headers['content-disposition'];
// if (contentDisposition) {
// const fileName = contentDisposition.split('filename=')[1];
// decodedFileName = decodeURI(fileName);
// }
a.download = decodedFileName;
a.href = url;
a.click();
this.$message.success("成功")
this.cancelDialog()
})
},
onReset() {
this.$router.push({
path: "",
@ -1626,6 +1733,14 @@ export default {
this.resultQuery.page = 1;
this.getResultDetailList();
},
handleExportView() {
if (isBlank(this.currentRow.billNo)) {
this.$message.error("请先选择需要导出的单据!")
return;
}
this.handleExportViewVisible = true;
this.exportTitle = "单据 "+this.currentRow.billNo + " 追溯码导出"
},
getResultDetailList() {
if (isBlank(this.currentRow.billNo)) {
this.$message.error("请先选择需要查询的单据!")

@ -115,7 +115,7 @@
prop="manufacturer"
show-overflow-tooltip
></el-table-column>
<el-table-column label="操作" width="140" fixed="right">
<el-table-column label="操作" width="200" fixed="right">
<template slot-scope="scope">
<el-button
@ -154,14 +154,14 @@
>绑定产品
</el-button
>
<el-button
type="text"
size="small"
v-if="scope.row.supId==null"
@click.native.stop="handleUnitClick(scope.row)"
>绑定供应商
</el-button
>
<!--<el-button-->
<!-- type="text"-->
<!-- size="small"-->
<!-- v-if="scope.row.supId==null"-->
<!-- @click.native.stop="handleUnitClick(scope.row)"-->
<!--&gt;绑定供应商-->
<!--</el-button-->
<!--&gt;-->
<el-button
type="text"

@ -45,20 +45,31 @@
<!-- </el-row>-->
<el-row>
<el-col :span="6">
<el-col :span="8">
<el-form-item label="单据时间:">
<el-date-picker
:picker-options="pickerOptions"
v-model="actDateRange"
type="daterange"
format="yyyy 年 MM 月 dd 日"
style="width: 300px"
style="width: 90%"
value-format="yyyy-MM-dd"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="6" >
<el-form-item label="订单编号:">
<el-input v-model="orderQuery.billCode"
style="transform: translateX (-500px)"
clearable="true"
placeholder="订单编号"></el-input>
</el-form-item>
</el-col>
</el-row>
@ -194,6 +205,7 @@ export default {
orderQuery: {
beginDate:null,
ensDate:null,
billCode:null,
page: 1,
limit: 100
},

@ -408,7 +408,7 @@ export default {
this.inputQuery.list = this.invoiceRow;
let mount = 0;
for (var i = 0; i < this.invoiceRow.length; i++) {
mount += this.invoiceRow[i].price
mount += this.invoiceRow[i].amount
}
if (mount != this.inputQuery.price) {
this.$confirm("价格不匹配,是否确定提交?", "提示", {

@ -696,23 +696,30 @@
@close="closeSelectDrugLevelVisible"
>
<el-form :model="filterQueryDrugLevel" class="query-form" label-width="100px">
<el-form :rules="formRulesSelectedDrug" :model="filterQueryDrugLevel" class="query-form" label-width="100px"
ref="formSelectedDrug"
>
<el-row>
<el-col :span="6">
<el-col :span="4">
<el-form-item label="层级标识:">
<el-input v-model="filterQueryDrugLevel.nameCode" placeholder="请输入层级标识" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="通用名:">
<el-input v-model="filterQueryDrugLevel.cpmctymc" placeholder="请输入通用名" clearable></el-input>
<el-col :span="4">
<el-form-item label="药品通用名:" prop="cpmctymc">
<el-input v-model="filterQueryDrugLevel.cpmctymc" placeholder="请输入药品通用名" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-col :span="4">
<el-form-item label="批准文号:">
<el-input v-model="filterQueryDrugLevel.approvalNum" placeholder="请输入批准文号" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item label="生产厂家:">
<el-input v-model="filterQueryDrugLevel.manufacturer" placeholder="请输入生产厂家" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<div style=" float: right;
text-align: right;
@ -774,7 +781,7 @@ import {
updatetDrug,
delDrugLevel,
updateLevelDrug, calculateDistCount, calculateUseCount,
getDrugLevelList,getDrugLevelListBycode,updateLevelDrugAli
getDrugLevelList, getDrugLevelListBycode, updateLevelDrugAli
} from '@/api/basic/product/drugUdiinfos'
import { isBlank } from '@/utils/strUtil'
@ -906,8 +913,13 @@ export default {
{ required: true, message: '请选择允许采集的最大层级', trigger: 'blur' }
],
detailSort: [
{required: true, message: '请选择明细分类', trigger: 'blur'}
],
{ required: true, message: '请选择明细分类', trigger: 'blur' }
]
},
formRulesSelectedDrug: {
cpmctymc: [
{ required: true, message: '请输入药品通用名', trigger: 'blur' }
]
},
detailList: [
//
@ -941,9 +953,9 @@ export default {
page: 1,
limit: 20,
total: 0,
approvalNum: "",
approvalNum: ''
},
isSpecial:false
isSpecial: false
}
},
@ -1108,14 +1120,14 @@ export default {
this.$message.error('层级标识不能为空')
return
}
if (isBlank(row.bhxjsl) ) {
if (isBlank(row.bhxjsl)) {
row.bhxjsl = 0
}
if (isNaN(row.packLevel)) {
row.packLevel = 0
}
if(this.newProductData.detailSort > 9 && row.packLevel == '0' ){
if (this.newProductData.detailSort > 9 && row.packLevel == '0') {
this.$message.error('包装级别必须大于0')
return
@ -1175,39 +1187,49 @@ export default {
this.selectDrugLevel()
},
selectDrugLevel() {
//
this.filterQueryDrugLevel.approvalNum = this.newProductData.zczbhhzbapzbh
getDrugLevelList(this.filterQueryDrugLevel).then((response) => {
if (response.code == 20000) {
this.selectDrugLevelList = response.data.list || []
this.filterQueryDrugLevel.total = response.data.total || 0
this.selectDrugLevelVisible = true
}
}).catch(() => {
})
this.selectDrugLevelVisible = true
setTimeout(() => {
this.$refs['formSelectedDrug'].validate((valid) => {
if (valid) {
this.filterQueryDrugLevel.uuid = this.newProductData.uuid
this.filterQueryDrugLevel.ybbm = this.newProductData.ybbm
//
// this.filterQueryDrugLevel.approvalNum = this.newProductData.zczbhhzbapzbh
getDrugLevelList(this.filterQueryDrugLevel).then((response) => {
if (response.code == 20000) {
this.selectDrugLevelList = response.data.list || []
this.filterQueryDrugLevel.total = response.data.total || 0
}
}).catch(() => {
})
}
})
}, 500)
},
selectDrugLevelItem(row){
var drug = {
"nameCode":row.nameCode,
"uuid":this.newProductData.uuid,
"ybbm":this.newProductData.ybbm,
}
selectDrugLevelItem(row) {
this.filterQueryDrugLevel.uuid = this.newProductData.uuid
this.filterQueryDrugLevel.ybbm = this.newProductData.ybbm
this.filterQueryDrugLevel.nameCodeRow = row.nameCode
// console.log('drug',drug)
updateLevelDrugAli(drug).then((response) => {
updateLevelDrugAli(this.filterQueryDrugLevel).then((response) => {
if (response.code == 20000) {
// this.selectedIndex = this.detailList.length - 1
// this.isSave = false
this.selectDrugLevelVisible = false
var filterQueryDrugLevelNew = this.filterQueryDrugLevel
this.getDiLevel()
this.getDetailList()
this.getThirdSysDetail()
this.filterQueryDrugLevel = filterQueryDrugLevelNew
}
}).catch(() => {
})
}
,
addDrugLevel() {
this.detailList.push({
nameCode: '',
@ -1281,8 +1303,8 @@ export default {
}
},
//
checkIsSpecial(){
if (this.detailList.length > 0){
checkIsSpecial() {
if (this.detailList.length > 0) {
this.detailList.forEach(item => {
if (item.nameCode.startsWith('89')) {
this.isSpecial = true
@ -1431,13 +1453,13 @@ export default {
},
//
handleInput(index, value,type){
const intValue = parseInt(value, 10);
handleInput(index, value, type) {
const intValue = parseInt(value, 10)
//
if (type == 1){
this.$set(this.detailList[index], 'packLevel', intValue);
}else {
this.$set(this.detailList[index], 'bhxjsl', intValue);
if (type == 1) {
this.$set(this.detailList[index], 'packLevel', intValue)
} else {
this.$set(this.detailList[index], 'bhxjsl', intValue)
}
}

Loading…
Cancel
Save