临床出库选择患者信息问题,设备打印问题

zyy_db
anthonywj 1 year ago
parent 59f5475cfb
commit 97b1c992e0

@ -37,10 +37,10 @@ ENV = 'production'
# VUE_APP_BASE_API = 'http://127.0.0.1:9150/UDI_WMS_MC/'
# 长泰医院
# VUE_APP_BASE_API = 'http://192.168.6.189:9150/UDI_WMS_MC/'
VUE_APP_BASE_API = 'http://192.168.6.189:9150/UDI_WMS_MC/'
# 三明大田医院
VUE_APP_BASE_API = 'http://172.20.124.4:9150/UDI_WMS_MC/'
# VUE_APP_BASE_API = 'http://172.20.124.4:9150/UDI_WMS_MC/'
# VUE_APP_BASE_API = 'http://192.168.0.207:9150/UDI_WMS_MC/'

@ -9,6 +9,15 @@ export function page(query) {
});
}
export function filterNoPage(query) {
return axios({
url: "/udiwms/basic/sk/sicker/filter/noPage",
method: "get",
params: query
});
}
export function downloadSick(query) {
return axios({
url: "/udiwms/basic/sk/sicker/download",

@ -77,3 +77,14 @@ export function genDeviceQR(deviceCode) {
)
}
export function printDevLabel(query) {
return axios({
url: "/udiwms/inv/deptDevice/printOrder",
method: "post",
data: query,
headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'},
responseType: 'arraybuffer', //一定要设置响应类型否则页面会是空白pdf
});
}

File diff suppressed because it is too large Load Diff

@ -146,7 +146,7 @@ export default {
updatePrecribe() {
this.updatePrecribeLoading = true;
downloadPrescribe({sickCode: this.sickerInfo.code}).then(res => {
downloadPrescribe({sickCode: this.sickerInfo.code,adNum:this.sickerInfo.adNum}).then(res => {
this.updatePrecribeLoading = false
if (res.code != 20000) {
this.$message.error(res.message)

@ -20,10 +20,10 @@
style="width: 100%"
clearable>
<el-option
v-for="item in deviceStatus"
:key="item.key"
:label="item.desc"
:value="item.key">
v-for="item in deviceStatus"
:key="item.key"
:label="item.desc"
:value="item.key">
</el-option>
</el-select>
</el-form-item>
@ -34,9 +34,9 @@
<el-button-group>
<el-button icon="el-icon-view" type="primary" @click="showSearch = !showSearch">显示/隐藏搜索栏</el-button>
<el-button
type="primary"
icon="el-icon-refresh"
@click="onReset"
type="primary"
icon="el-icon-refresh"
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="search"
@ -59,7 +59,7 @@
</el-table-column>
<el-table-column label="巡检锁定" width="120">
<template scope="scope">
<el-tag :type="scope.row.checkLock?'primark':'info'">{{ scope.row.checkLock ? '是' : '否'}}</el-tag>
<el-tag :type="scope.row.checkLock?'primark':'info'">{{ scope.row.checkLock ? '是' : '否' }}</el-tag>
</template>
</el-table-column>
<el-table-column label="数量" width="120" prop="count"/>
@ -82,11 +82,11 @@
<!-- </el-table-column>-->
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="query.page"
:limit.sync="query.limit"
@pagination="getList"
v-show="total>0"
:total="total"
:page.sync="query.page"
:limit.sync="query.limit"
@pagination="getList"
/>
</el-card>
@ -127,7 +127,7 @@
</el-table-column>
<el-table-column label="巡检锁定" width="120">
<template scope="scope">
<el-tag :type="scope.row.checkLock?'primark':'info'">{{ scope.row.checkLock ? '是' : '否'}}</el-tag>
<el-tag :type="scope.row.checkLock?'primark':'info'">{{ scope.row.checkLock ? '是' : '否' }}</el-tag>
</template>
</el-table-column>
<el-table-column label="变更次数" width="100" prop="changeCount"/>
@ -161,28 +161,36 @@
>设备码
</el-button>
</el-popover>
<el-button v-if="isChoose&&scope.row.status==deviceStatus.NORMAL.key&&scope.row.checkLock==false" type="text"
<el-button v-if="isChoose&&scope.row.status==deviceStatus.NORMAL.key&&scope.row.checkLock==false"
type="text"
@click="chooseFunc(scope.row)"
>选择
</el-button>
<el-button
type="text"
size="small"
@click.native.stop="printDevLabel(scope.row)"
>打印
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="detailTotal>0"
:total="detailTotal"
:page.sync="detailQuery.page"
:limit.sync="detailQuery.limit"
@pagination="getDetailList"
v-show="detailTotal>0"
:total="detailTotal"
:page.sync="detailQuery.page"
:limit.sync="detailQuery.limit"
@pagination="getDetailList"
/>
</el-card>
<el-dialog
:title="`设备变更日志——${productRow.productName}(${productRow.deviceCode})`"
:visible="true"
v-if="showLog"
@close="showLog = false"
:title="`设备变更日志——${productRow.productName}(${productRow.deviceCode})`"
:visible="true"
v-if="showLog"
@close="showLog = false"
>
<el-timeline>
<el-timeline-item placement="top"

@ -1,6 +1,7 @@
import {detailByUserPage, deviceLogs, devicePage, genDeviceQR} from "@/api/dev/deviceInfoApi";
import {detailByUserPage, deviceLogs, devicePage, genDeviceQR, printDevLabel} from "@/api/dev/deviceInfoApi";
import {deviceChangeStatus, deviceChangeType, deviceStatus} from "@/utils/enum";
import {downloadBase64Image} from "@/utils";
import {stockQRCodeTextPDFFromTemplateFile} from "@/api/itextpdf/itextpdf";
let query = {
page: 1,
@ -129,6 +130,27 @@ export default {
}).catch(e => {
this.loading = false
})
},
printDevLabel(row) {
let tQuery = {
labelId: 5,
deviceCode: row.deviceCode
};
printDevLabel(tQuery).then((response) => {
//将pdf文件转换为url。
const binaryData = [];
binaryData.push(response);
//获取blob链接。
let url = window.URL.createObjectURL(
new Blob(binaryData, {type: "application/pdf"})
);
this.loading = false;
window.open(url);//打开新标签页预览pdf。
}).catch(() => {
this.loading = false;
});
}
}
}

@ -631,7 +631,7 @@ import selectRlDialog from "./DialogSelectRl";
import DialogSelectSpace from "./DialogSelectSpace";
import {isBlank} from "@/utils/strUtil";
import {getDetailBizs} from "@/api/inout/orderDetailCode";
import {page} from "@/api/basic/sicker/skPersonApi";
import {filterNoPage, page} from "@/api/basic/sicker/skPersonApi";
import {selectSysParamByKey} from "@/api/param/systemParamConfig";
export default {
@ -958,7 +958,7 @@ export default {
limit: 10,
key: key,
};
page(sickQuery).then(res => {
filterNoPage(sickQuery).then(res => {
this.fromSickOptions = res.data.list || []
}).catch(() => {
});

Loading…
Cancel
Save