|
|
|
@ -156,6 +156,7 @@
|
|
|
|
|
type="tel"
|
|
|
|
|
placeholder="请点击输入框进行扫码设置或者扫码录入"
|
|
|
|
|
v-model="scanCode"
|
|
|
|
|
:disabled="scanDisabled"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -347,14 +348,14 @@ import prescribeOriginPanel from "./PannelOrderBiz";
|
|
|
|
|
import prescribeCodePanel from "./PanelOrderTagCode";
|
|
|
|
|
import PannelOrderBiz from "./PannelOrderBiz";
|
|
|
|
|
import {listPage} from "@/api/basic/workPlace/sysWorkplaceManage";
|
|
|
|
|
import {enterCodeWeb} from "@/api/inout/order";
|
|
|
|
|
import {enterCodeWeb,batchVailCode} from "@/api/inout/order";
|
|
|
|
|
import {draftOrder, finishOrder, startSplit, tagCode, updateOrder} from "@/api/collect/splitCreateOrder";
|
|
|
|
|
import {selectCorpList} from "@/api/basic/basicUnitMaintain";
|
|
|
|
|
import {getCurOrder, getNextOrder, findByBill, findFromCorp} from "@/api/collect/collectOrder";
|
|
|
|
|
import PanelOrderAllDetail from "@/views/collect/PanelOrderAllDetail";
|
|
|
|
|
import {getWorkBindBusTypes, removeBusTypeById} from '@/api/basic/workPlace/sysWorkplaceDocuments'
|
|
|
|
|
import {getInvListByUser} from "@/api/system/invWarehouse";
|
|
|
|
|
|
|
|
|
|
import {orderbatchAddCode} from "@/api/inout/splitCode";
|
|
|
|
|
export default {
|
|
|
|
|
/**
|
|
|
|
|
* 处理处方
|
|
|
|
@ -445,7 +446,9 @@ export default {
|
|
|
|
|
busTypeTotal: 0,
|
|
|
|
|
|
|
|
|
|
invList: [],
|
|
|
|
|
viewType: 1
|
|
|
|
|
viewType: 1,
|
|
|
|
|
scanDisabled: false,
|
|
|
|
|
valiCodes: []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -996,9 +999,54 @@ export default {
|
|
|
|
|
let corp = this.fromInvOptions.find(item => item.erpId === this.formData.fromCorp);
|
|
|
|
|
this.formData.fromCorpName = corp.name
|
|
|
|
|
},
|
|
|
|
|
//处理事件
|
|
|
|
|
handleRecCodesEvent(event) {
|
|
|
|
|
console.log('接收 recCodes event:',event.detail.recCodes);
|
|
|
|
|
let params = {
|
|
|
|
|
codeList: event.detail.recCodes,
|
|
|
|
|
};
|
|
|
|
|
//校验
|
|
|
|
|
batchVailCode(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.valiCodes = [];
|
|
|
|
|
console.log("==滴码接收==",res.data);
|
|
|
|
|
let list = res.data;
|
|
|
|
|
list.forEach(item => {
|
|
|
|
|
if (item.status === 1) {
|
|
|
|
|
this.valiCodes.push(item.code);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
if(this.valiCodes != null && this.valiCodes.length > 0){
|
|
|
|
|
//批量添加
|
|
|
|
|
let params2 = {
|
|
|
|
|
workPlaceCode:this.formData.workPlaceCode,
|
|
|
|
|
codeList:this.valiCodes
|
|
|
|
|
}
|
|
|
|
|
orderbatchAddCode(params2).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.$message.success("添加成功")
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.scanCode = this.valiCodes.join(";");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
//环境判断
|
|
|
|
|
if(window.navigator.userAgent.indexOf("GLXP_PC") != -1){
|
|
|
|
|
this.scanDisabled = true;
|
|
|
|
|
window.addEventListener('recCodes', this.handleRecCodesEvent);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
unmounted() {
|
|
|
|
|
window.removeEventListener('recCodes', this.handleRecCodesEvent);
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
getHead("prescribeTagCodeDeal", "1").then((re) => {
|
|
|
|
|