|
|
|
@ -8,7 +8,6 @@
|
|
|
|
|
type="warning">
|
|
|
|
|
</el-alert>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="0" style="margin-top: 15px">
|
|
|
|
|
<el-col :span="24" align="right">
|
|
|
|
|
<el-button-group>
|
|
|
|
@ -48,6 +47,54 @@
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item prop="workPlaceCode" class="query-form-item" label="当前工位:">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="formData.workPlaceCode"
|
|
|
|
|
placeholder="当前工位"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
:disabled="corpOrderIdDisabled"
|
|
|
|
|
filterable
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in curWorkPlaces"
|
|
|
|
|
:key="item.workplaceId"
|
|
|
|
|
:label="item.workplaceName"
|
|
|
|
|
:value="item.workplaceId"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.workplaceName }}</span>
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{
|
|
|
|
|
item.workplaceId
|
|
|
|
|
}}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item prop="erpId" class="query-form-item" label="往来单位:">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="formData.erpId"
|
|
|
|
|
placeholder="往来单位"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
filterable
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in erpList"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<div style="border: 1px solid #ebeef5;border-radius: 2px;margin-top: 15px;padding: 15px">
|
|
|
|
|
<el-row :gutter="0" style="margin-top: 5px">
|
|
|
|
|
<el-col :span="20">
|
|
|
|
@ -127,7 +174,7 @@
|
|
|
|
|
</el-tabs>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="选择处方"
|
|
|
|
|
title="选入业务单据"
|
|
|
|
|
:visible.sync="selectPrescriptionVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
@ -154,7 +201,7 @@ import {detail, page as prescribePage, tagCode} from "@/api/basic/sicker/prescri
|
|
|
|
|
import selectPrescribeDialog from "@/views/collect/selectCollectOrderDialog";
|
|
|
|
|
import prescribeCodePanel from "./PanelOrderTagCode";
|
|
|
|
|
import PannelOrderBiz from "./PannelOrderBiz";
|
|
|
|
|
|
|
|
|
|
import {listPage} from "@/api/basic/sysWorkplaceManage";
|
|
|
|
|
import {enterCodeWeb} from "@/api/inout/order";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -166,7 +213,6 @@ export default {
|
|
|
|
|
return {
|
|
|
|
|
//界面配置相关
|
|
|
|
|
//患者处方
|
|
|
|
|
workplaceId: this.$route.query.workplaceId,
|
|
|
|
|
loading: false,
|
|
|
|
|
tableHeader: [],
|
|
|
|
|
queryList: [],
|
|
|
|
@ -184,9 +230,15 @@ export default {
|
|
|
|
|
list: [],
|
|
|
|
|
total: 0,
|
|
|
|
|
defaultSort: {prop: 'createTime', order: 'desc'},
|
|
|
|
|
|
|
|
|
|
formData: {},
|
|
|
|
|
curWorkPlaces: [],
|
|
|
|
|
erpList: [],
|
|
|
|
|
formData: {
|
|
|
|
|
invCode:null,
|
|
|
|
|
workPlaceCode:null,
|
|
|
|
|
erpId:null,
|
|
|
|
|
},
|
|
|
|
|
selectPrescriptionVisible: false,
|
|
|
|
|
corpOrderIdDisabled: false,
|
|
|
|
|
curRow: null,
|
|
|
|
|
panelALive: false,
|
|
|
|
|
|
|
|
|
@ -207,7 +259,7 @@ export default {
|
|
|
|
|
methods: {
|
|
|
|
|
handleClick(blankName) {
|
|
|
|
|
// let url = window.location.origin+`#/tagCodeBlank?workplaceId=`+ this.stationList[index].workplaceId
|
|
|
|
|
let url = window.location.origin+`#/`+ blankName+`?workplaceId=`+ this.workplaceId
|
|
|
|
|
let url = window.location.origin + `#/` + blankName + `?workplaceId=` + this.workplaceId
|
|
|
|
|
// this.$router.push( workplaceId)
|
|
|
|
|
window.open(url, '_blank');
|
|
|
|
|
},
|
|
|
|
@ -223,6 +275,22 @@ export default {
|
|
|
|
|
// this.$router.push( workplaceId)
|
|
|
|
|
window.open(url, '_blank');
|
|
|
|
|
},
|
|
|
|
|
//获取当前货位
|
|
|
|
|
findCurWorkPlaces(val) {
|
|
|
|
|
let query = {
|
|
|
|
|
key: val,
|
|
|
|
|
status: 1,
|
|
|
|
|
invCode: this.formData.invCode,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 100,
|
|
|
|
|
}
|
|
|
|
|
listPage(query).then((res) => {
|
|
|
|
|
this.curWorkPlaces = res.data.list || [];
|
|
|
|
|
if (this.curWorkPlaces.length == 1 ) {
|
|
|
|
|
this.formData.workPlaceCode = this.curWorkPlaces[0].workplaceId;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
//界面配置相关------------
|
|
|
|
|
executeFuc(row, type, clickFuc, value) {
|
|
|
|
|
return executeFuc(this, row, type, clickFuc, value);
|
|
|
|
@ -462,6 +530,13 @@ export default {
|
|
|
|
|
this.queryList = re.data.queryList;
|
|
|
|
|
this.fromList = re.data.fromList;
|
|
|
|
|
});
|
|
|
|
|
this.formData.invCode = this.$store.getters.locInvCode;
|
|
|
|
|
this.findCurWorkPlaces();
|
|
|
|
|
if (this.$route.query.workplaceId != null){
|
|
|
|
|
this.corpOrderIdDisabled = true
|
|
|
|
|
this.formData.workplaceCode = Number(this.$route.query.workplaceId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|