Merge branch '20240912_adapter' of http://116.204.71.86:3000/UDI/udiwms-vue-frame into 20240912_adapter

20240912_adapter
qyt 5 months ago
commit d87bb86c4f

@ -6,7 +6,7 @@ ENV = 'development'
# 开发环境
# VUE_APP_BASE_API = 'https://mudi.dsxyy.org/UDI_WMS_MC/'
VUE_APP_BASE_API = 'http://127.0.0.1:9991'
VUE_APP_BASE_API = 'http://192.168.0.166:9991'
VUE_APP_SYNC_API ="http://127.0.0.1:10001"
# VUE_APP_BASE_API = 'http://dm.xmglxp.com:81/UDI_WMS_MC/'
# 应用访问路径 例如使用前缀 /admin/

@ -234,4 +234,11 @@ export function getYbDrugDetail(query) {
});
}
export function getCodeRelDetail(query) {
return axios({
url: "/spms/udchs/codeRe/list",
method: "post",
data: query
});
}

@ -1149,7 +1149,7 @@ import {
removeDiRl,
removeRl,
thirdSysDetail,
updatetSingleUdiInfo, updatetUdiInfos
updatetSingleUdiInfo, updatetUdiInfos,getCodeRelDetail
} from "@/api/basic/product/udiRelevance";
import {isBlank} from "@/utils/strUtil";
import {filterByUuid, levelByUuid} from "@/api/basic/product/udiInfo";
@ -1251,6 +1251,7 @@ export default {
measname: null,
manufactory: null,
ybbm: null,
sptm: null,
cpms: null,
productsType: 2,
//
@ -1745,6 +1746,20 @@ export default {
this.selectedIndex = null
this.getDetailList()
this.getDiLevel();
//
if (!this.$isNotBlank(this.editQuery.sptm) && !this.$isNotBlank(this.editQuery.ybbm)) {
getCodeRelDetail({drugcode:row.nameCode}).then((response) => {
if (response.code == 20000) {
if (this.response.data != null && this.response.data.length > 0) {
this.editQuery.sptm = this.response.data[0].sptm;
this.editQuery.ybbm = this.response.data[0].ybbm;
}
}
}).catch(() => {
})
}
} else {
this.isSave = true
this.$message.error(res.message)

@ -517,6 +517,7 @@ export default {
if (foundTab) {
//
this.menuActive = foundTab.number
//
this.$set(this.resetKeys, foundTab.name, Date.now());
this.$store.commit('tabActive/SET_MENU_ACTIVE', foundTab.number);
}

@ -195,7 +195,8 @@
</el-row>
<el-row :gutter="0">
<el-col :span="20" style="margin-top: 0px;margin-bottom: 10px;margin-left: 80px">
<el-checkbox v-model="checked" v-if="!this.formData.billNo && this.formDataVisible.scanType != 1"></el-checkbox>
<el-checkbox v-model="checked" v-if="!this.formData.billNo && this.formDataVisible.scanType != 1">
</el-checkbox>
</el-col>
</el-row>
<el-alert
@ -505,6 +506,7 @@ export default {
warnVisible: false,
errVisible: false,
workplaceId: null,
ws: null,
}
},
@ -539,9 +541,9 @@ export default {
this.formData.workPlaceCode = this.workplaceId
this.checked = false
}
}else {
} else {
this.checked = true
this.formData.billNo = null
this.formData.billNo = null
this.$message.error(res.message)
}
})
@ -571,7 +573,7 @@ export default {
this.findFromInvList("");
this.getInvList();
this.placeholder = '请点击输入框进行扫码生成业务单据';
}else {
} else {
this.findCurOrder();
}
@ -586,7 +588,7 @@ export default {
this.findFromInvList("");
this.getInvList();
this.placeholder = '请点击输入框进行扫码生成业务单据';
}else {
} else {
this.findCurOrder();
}
}
@ -795,7 +797,7 @@ export default {
});
},
enterBillNoKey() {
enterBillNoKey(billNo) {
this.checkSuccess = true;
this.filterQuery.code = this.scanCode;
let tQuery = {
@ -805,6 +807,9 @@ export default {
busType: this.formData.busType,
code: this.filterQuery.code.trim(),
};
if (billNo != null) {
tQuery.code = billNo
}
enterCodeBillNo(tQuery).then((response) => {
if (response.code === 20000) {
this.$refs.inputRef.focus();
@ -1173,7 +1178,7 @@ export default {
vailOrderFinish() {
if (!this.autoFinishOrderFlag){
if (!this.autoFinishOrderFlag) {
return
}
vailOrderFinish(this.formData).then(res => {
@ -1353,6 +1358,23 @@ export default {
});
},
handleScanComplete(fullScanData) {
console.log("Scan complete:", fullScanData.join(";"));
if (this.formData.billNo == null && this.formDataVisible.scanType != 1) {
this.enterBillNoKey(fullScanData[0])
return;
}
let params = {
codeList: fullScanData,
};
if (this.formData.billNo == null) {
this.$message.error("请先选入单据!");
return
}
this.batchVailCode(params)
//
},
parseString(str) {
// 1. "MA"
if (str.startsWith("MA")) {
@ -1382,6 +1404,62 @@ export default {
// false
return false;
},
socketListener() {
let lastScanTime = Date.now();
let scanBuffer = [];
let scanTimeout = null;
const SCAN_TIMEOUT = 1000; // 1
const self = this;
console.log("启用监听")
this.ws.onmessage = function (event) {
let scanData = event.data; //
let currentTime = Date.now();
console.log(scanData)
//
if (currentTime - lastScanTime > SCAN_TIMEOUT) {
//
if (scanBuffer.length > 0) {
self.handleScanComplete(scanBuffer);
}
//
scanBuffer = [];
}
//
lastScanTime = currentTime;
//
scanBuffer.push(scanData);
//
if (scanTimeout) {
clearTimeout(scanTimeout);
}
//
scanTimeout = setTimeout(() => {
//
self.handleScanComplete(scanBuffer);
scanBuffer = [];
}, SCAN_TIMEOUT);
};
},
handleVisibilityChange() {
if (document.visibilityState === 'visible') {
console.log('用户切回到了处理页面');
if (this.ws == null || this.ws.readyState === WebSocket.CLOSED) {
this.ws = new WebSocket("ws://127.0.0.1:9988");
const self = this;
this.ws.onopen = function (evt) {
console.log("处理单据WebSocket 连接中 ...");
self.socketListener()
};
}
} else {
if (this.ws && this.ws.readyState === WebSocket.OPEN) {
this.ws.close();
console.log("关闭处理单据websocket成功")
}
}
},
},
mounted() {
this.$refs.inputRef.focus();
@ -1391,9 +1469,36 @@ export default {
window.removeEventListener('djcl', this.handleRecCodesEvent);
window.addEventListener('djcl', this.handleRecCodesEvent);
}
document.addEventListener('visibilitychange', this.handleVisibilityChange);
// window.addEventListener('storage', (event) => {
// if (document.visibilityState == 'hidden') {
// console.log("websocket")
// if (this.ws && this.ws.readyState === WebSocket.OPEN) {
// this.ws.close();
// console.log("websocket")
// }
// } else {
// if (!this.ws) {
// this.ws = new WebSocket("ws://127.0.0.1:9988");
// this.ws.onopen = function (evt) {
// console.log("WebSocket ...");
// };
// this.socketListener()
// }
// }
// });
},
beforeDestroy() {
window.removeEventListener('djcl', this.handleRecCodesEvent);
document.removeEventListener('visibilitychange', this.handleVisibilityChange);
this.ws.close();
this.ws.onclose = function (evt) {
console.log("处理单据 Connection closed.");
};
},
created() {
getHead("prescribeTagCodeDeal", "1").then((re) => {

@ -14,7 +14,6 @@
<el-button-group
style="display: flex; margin-top: 5px; float: right"
>
<el-button size="mini" type="primary" @click.native="selectPrescribe()" :loading="submitLoading"
v-if="splitType=='out'" style="margin-right: 8px;border-radius: 5%;" v-show="isLinkDisabled"
>选入已完成单据
@ -2089,9 +2088,71 @@ export default {
this.$message.error("获取错误")
}
})
},
handleScanComplete(fullScanData) {
console.log('接收 recCodes event:', fullScanData.join(";"));
let params = {
codeList: fullScanData,
};
this.batchVailCode(params)
},
socketListener() {
let lastScanTime = Date.now();
let scanBuffer = [];
let scanTimeout = null;
const SCAN_TIMEOUT = 1000; // 1
const self = this;
console.log("启用监听")
this.ws.onmessage = function (event) {
let scanData = event.data; //
let currentTime = Date.now();
console.log(scanData)
//
if (currentTime - lastScanTime > SCAN_TIMEOUT) {
//
if (scanBuffer.length > 0) {
self.handleScanComplete(scanBuffer);
}
//
scanBuffer = [];
}
//
lastScanTime = currentTime;
//
scanBuffer.push(scanData);
//
if (scanTimeout) {
clearTimeout(scanTimeout);
}
//
scanTimeout = setTimeout(() => {
//
self.handleScanComplete(scanBuffer);
scanBuffer = [];
}, SCAN_TIMEOUT);
};
},
handleVisibilityChange() {
if (document.visibilityState === 'visible') {
console.log('用户切回到了工位页面');
if (this.ws == null || this.ws.readyState === WebSocket.CLOSED) {
this.ws = new WebSocket("ws://127.0.0.1:9988");
const self = this;
this.ws.onopen = function (evt) {
console.log("工位上货WebSocket 连接中 ...");
self.socketListener()
};
}
}
} else {
if (this.ws && this.ws.readyState === WebSocket.OPEN) {
this.ws.close();
console.log("关闭处理单据websocket成功")
}
}
},
},
filters: {},
mounted() {
@ -2126,9 +2187,31 @@ export default {
window.removeEventListener('gwsh', this.handleRecCodesEvent);
window.addEventListener('gwsh', this.handleRecCodesEvent);
}
document.addEventListener('visibilitychange', this.handleVisibilityChange);
// window.addEventListener('storage', (event) => {
// console.log("websocket")
// if (this.ws && this.ws.readyState === WebSocket.OPEN) {
// this.ws.close();
// console.log("websocket")
// } else {
// if (!this.ws) {
// this.ws = new WebSocket("ws://127.0.0.1:9988");
// this.ws.onopen = function (evt) {
// console.log("WebSocket ...");
// };
// this.socketListener()
// }
// }
// });
// window.dispatchEvent(new CustomEvent('storage', null));
},
beforeDestroy() {
window.removeEventListener('gwsh', this.handleRecCodesEvent);
this.ws.close();
this.ws.onclose = function (evt) {
console.log("工位上货Connection closed.");
};
document.removeEventListener('visibilitychange', this.handleVisibilityChange);
},
created() {
// this.splitType = this.$route.query.splitType;

@ -909,14 +909,14 @@ export default {
let query = {
code: this.orderFormData.invCode,
editType: 2, //
productType:1
productType: 1
};
if (this.viewTypeKsck) {
query = {
code: this.orderFormData.invCode,
editType: 2, //
useDyCount: 2, //
productType:1
productType: 1
};
}

Loading…
Cancel
Save