新增患者使用溯源

prod
anthonywj 2 years ago
parent da9c4229e3
commit 64476a29ce

@ -4,8 +4,8 @@ VUE_APP_TITLE = UDI管理系统
# 生产环境配置
ENV = 'production'
# VUE_APP_BASE_API = 'http://116.204.71.86:9150/UDI_WMS_MC/'
# VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_WMS_MC/'
VUE_APP_BASE_API = 'http://192.168.0.55:9150/UDI_WMS_MC/'
VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_WMS_MC/'
# VUE_APP_BASE_API = 'http://192.168.0.55:9150/UDI_WMS_MC/'
# 应用访问路径 例如使用前缀 /admin/
VUE_APP_CONTEXT_PATH = '/UDI_WMS_NEW/'

@ -1,4 +1,4 @@
import axios from "../../utils/request";
import axios from "@/utils/request";
export function getDeviceMAOrderList(params) {
return axios({

@ -1,4 +1,4 @@
import axios from "../../utils/request";
import axios from "@/utils/request";
export function getDeviceReceiveOrderList(params) {
return axios({

@ -0,0 +1,9 @@
import axios from "@/utils/request";
export function filterSickTrace(query) {
return axios({
url: "/spms/inv/sick/order/trace",
method: "get",
params: query
});
}

@ -199,15 +199,15 @@ import {
updateExportStatus,
uploadOrder,
orderDetail,
} from "../../api/inout/order";
} from "../../../api/inout/order";
import draggable from "vuedraggable";
import {saveAs} from "file-saver";
import codeDetail from "../inout/IOFinishCode";
import store from "../../store";
import {getBussinessType} from "../../api/basic/bussinessType";
import codeDetail from "../../inout/IOFinishCode";
import store from "../../../store";
import {getBussinessType} from "../../../api/basic/bussinessType";
import {filterOrderTrace} from "@/api/inventory/invCodeTrace";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import A from "../../plugins/KeyScaner"
import A from "../../../plugins/KeyScaner"
const formJson = {
site_id: "",

@ -0,0 +1,421 @@
<template>
<div>
<el-card class="el-card">
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini" @submit.native.prevent>
<el-form-item class="query-form-item" label-width="100px">
<el-input
v-model="filterQuery.sickAd"
placeholder="请输入病人住院号"
clearable
style="width: 500px"
@keypress.enter.native="enterKey($event)"
></el-input>
</el-form-item>
<el-form-item>
<el-button-group>
<el-button type="primary" icon="search" @click="getList"
>查询
</el-button>
</el-button-group>
</el-form-item>
</el-form>
<el-table
v-loading="loading"
:data="list"
style="width: 100%"
border
@row-click="getOrderDetail"
highlight-current-row
@selection-change="handleSelectionChange"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="扫码单据类型" prop="billTypeName">
</el-table-column>
<el-table-column
label="订单号"
prop="billNo"
show-overflow-tooltip="true"
></el-table-column>
<el-table-column label="来源" prop="fromType">
<template slot-scope="scope">
<span>{{ fromTypeMap[scope.row.fromType] }}</span>
</template>
</el-table-column>
<el-table-column label="所在仓库" prop="invName" width="250">
</el-table-column>
<el-table-column
label="创建时间"
prop="actDate"
width="150"
show-overflow-tooltip="true"
>
<template slot-scope="scope">
<i class="el-icon-time"></i>
<span>{{ scope.row.createTime }}</span>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:limit.sync="filterQuery.limit"
:page.sync="filterQuery.page"
@pagination="handleCurrentChange"
></pagination>
</el-card>
<el-card class="el-card">
<el-table
v-loading="loading"
border
:data="detailList"
style="width: 100%"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="UDI码"
prop="code"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="产品通用名"
prop="productName"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="包装规格"
prop="ggxh"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
width="100"
label="批次号"
prop="batchNo"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="生产日期"
prop="productDate"
width="100"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="失效日期"
prop="expireDate"
width="100"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="生产企业"
prop="manufactory"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="注册/备案凭证号"
prop="zczbhhzbapzbh"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native.stop="intentDetail(scope.row)"
>流向详情
</el-button
>
</template>
</el-table-column>
</el-table>
</el-card>
<el-dialog
title="UDI码流向"
:visible.sync="udiCodeTraceVisible"
width="80%"
v-if="udiCodeTraceVisible"
>
<udiCodeTrace
:udiCode="udiCode"
:diloadTrue="false"
v-on:closeDetailDialog="closeDetailDialog"
></udiCodeTrace>
</el-dialog>
</div>
</template>
<script>
import draggable from "vuedraggable";
import udiCodeTrace from "./invUdiTraceOrder"
import {filterSickTrace} from "@/api/inventory/invSickTrace";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import {getCodeList} from "@/api/inout/code";
export default {
name: "sickerUdiTraceOrder",
data() {
return {
query: {
code: null,
batchNo: null,
productIdFk: null,
customerId: null,
page: 1,
limit: 20,
supId: null,
},
sitcomScan: false,
checkStatus: {
1: "校验异常",
0: "未校验",
2: "正常",
},
fromOptions: [],
erpCheckStatus: {
1: "校验异常",
0: "未校验",
2: "校验成功",
},
fromTypeMap: {
"1": "UDIMS平台",
"2": "网页新增",
"3": "pda即时校验",
"4": "pda未校验",
"5": "pc端扫码精灵",
"6": "缺量补录单据",
"7": "UDI供应商平台",
"8": "平衡补录单据",
"10": "手动补单"
},
//
list: [],
detailList: [],
filterQuery: {
sickAd: null,
page: 1,
limit: 20,
},
detailQuery: {
orderId: "",
},
deleteData: {
id: "",
},
idQuery: {
id: "",
},
curIndex: "",
adListNoDataText: "无数据",
codeDetailVisible: false,
udiCodeTraceVisible: false,
udiCode: null,
total: 0,
loading: false,
index: null,
formName: null,
orderId: "",
formMap: {
add: "新增",
edit: "编辑",
},
exportQuery: {
orderId: "",
exportStatus: "",
},
uploadQuery: {
orderId: "",
},
multipleSelection: [],
dialogTableVisible: false,
formLoading: false,
formVisible: false,
deleteLoading: false,
addDialogVisible: false,
};
},
components: {
draggable,
udiCodeTrace,
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
code: null,
batchNo: null,
productIdFk: null,
customerId: null,
page: 1,
limit: 20,
supId: null,
};
this.actDateRange = [];
this.getList();
},
enterKey(event) {
this.onSubmit();
},
onSubmit() {
this.getList();
},
handleSizeChange(val) {
this.filterQuery.limit = val;
this.getList();
},
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
handleSelectionChange(val) {
this.multipleSelection = val;
},
findMethod(query) {
this.fromOptions = [];
let cQuery = {
key: query,
};
getBasicUnitMaintains(cQuery)
.then((response) => {
this.loading = false;
this.fromOptions = response.data.page.list || [];
})
.catch(() => {
this.loading = false;
});
},
//
getList() {
this.loading = true;
if (!this.$isBlank(this.filterQuery.sickAd)) {
let code = this.filterQuery.sickAd;
this.filterQuery.sickAd = code.replace("\r", "")
}
filterSickTrace(this.filterQuery)
.then((response) => {
if (response.code == 20000) {
this.loading = false;
this.list = response.data.list || [];
this.detailList = [];
this.total = response.data.total || 0;
} else {
this.loading = false;
this.list = [];
this.detailList = [];
this.total = 0;
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
//
getOrderDetail(row) {
this.loading = true;
this.detailQuery = {
orderId: row.billNo,
showType: 1,
};
this.refresgOrderDetail();
},
refresgOrderDetail() {
getCodeList(this.detailQuery)
.then((response) => {
this.loading = false;
this.detailList = response.data.list || [];
})
.catch(() => {
this.loading = false;
this.detailList = [];
});
},
intentDetail(row) {
this.udiCode = row.code;
this.udiCodeTraceVisible = true;
this.idQuery.id = row.id;
},
closeDetailDialog(val) {
this.codeDetailVisible = false;
this.udiCodeTraceVisible = false;
},
cancelDialog() {
this.addDialogVisible = false;
},
importOrder(row) {
this.orderId = row.id;
this.addDialogVisible = true;
},
},
filters: {
statusFilterType(status) {
const statusMap = {
false: "success",
true: "danger",
};
return statusMap[status];
},
},
mounted() {
},
created() {
let query = this.$route.query;
this.query = Object.assign(this.query, query);
this.query.limit = parseInt(this.query.limit);
},
};
</script>
<style scoped>
#inputer {
width: 100%;
min-height: 30px;
background-color: white;
border: #d0d0d0;
border-style: solid;
border-width: 0.1px;
color: #4a4a4a;
}
#inputer:focus {
width: 100%;
min-height: 30px;
background-color: white;
border: #0080FF;
border-style: solid;
border-width: 0.1px;
color: #4a4a4a;
}
.el-table .warning-row {
background: #ffb5b5;
}
.el-table .success-row {
background: #ffffff;
}
</style>
Loading…
Cancel
Save