feat: 优化细节

20240912_adapter_z
chenhc 8 months ago
parent 78d53333d9
commit e35352fe89

@ -267,7 +267,7 @@ export default {
showSearch: true,
filterQuery: {
tagStatus:1, //
tagStatus:"1", //
billNo: null,
page: 1,
limit: 10,

@ -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>
@ -54,6 +53,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">
@ -159,7 +206,7 @@ import {convertDate} from "@/utils/date";
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";
import {draftOrder, finishOrder, tagCode} from "@/api/collect/splitCreateOrder";
import {delDrugLevel} from "@/api/basic/product/drugUdiinfos";
@ -173,7 +220,6 @@ export default {
return {
//
//
workplaceId: this.$route.query.workplaceId,
loading: false,
tableHeader: [],
queryList: [],
@ -192,10 +238,16 @@ export default {
total: 0,
defaultSort: {prop: 'createTime', order: 'desc'},
curWorkPlaces: [],
erpList: [],
formData: {
tagStatus: -1,
invCode:null,
workPlaceCode:null,
erpId:null,
},
selectPrescriptionVisible: false,
corpOrderIdDisabled: false,
curRow: null,
panelALive: false,
@ -234,6 +286,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);
@ -433,6 +501,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);
}
}

@ -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);
}
}

@ -308,7 +308,11 @@ export default {
addOrder, errOrder, prescribeOriginPanel, prescribeCodePanel
},
methods: {
linkPage(_this,row) {
let url = window.location.origin + `#/dept/use/prescribeDir/prescribe/tagCode` + `?billNo=` + row.billNo
window.open(url, '_blank');
},
//------------
executeFuc(row, type, clickFuc, value) {
return executeFuc(this, row, type, clickFuc, value);

Loading…
Cancel
Save