Merge remote-tracking branch 'origin/dev2.5_scan' into dev2.5_scan

dev2.5_scan
yewj 3 days ago
commit 748ea0c382

@ -26,11 +26,7 @@
<el-table-column label="应扫码数量" prop="scanActCount"> <el-table-column label="应扫码数量" prop="scanActCount">
<template v-slot="scope"> <template v-slot="scope">
<div :style="getCellStyle(scope.row)" style="display: flex; align-items: center; height: 100%; min-height: 40px;"> <div :style="getCellStyle(scope.row)" style="display: flex; align-items: center; height: 100%; min-height: 40px;">
{{ {{ scope.row.scanCount }}/{{ scope.row.shouldCount }}
scope.row.shouldCount === 0
? '无需扫码'
: `${scope.row.scanCount}/${scope.row.shouldCount}`
}}
</div> </div>
</template> </template>
</el-table-column> </el-table-column>

@ -533,7 +533,6 @@ export default {
item => /^YPCFTF/.test(item.documentTypeCode || "") // item => /^YPCFTF/.test(item.documentTypeCode || "") //
); );
this.formData.busType = this.formDataVisible.documentTypeCode this.formData.busType = this.formDataVisible.documentTypeCode
console.log("djdjjdj",this.formData.busType)
//scanType //scanType
// 1. // 1.
// 2. // 2.
@ -932,7 +931,9 @@ export default {
this.curRow = this.formData this.curRow = this.formData
this.$refs.inputRef.focus() this.$refs.inputRef.focus()
this.refreshCodesPanel(this) this.refreshCodesPanel(this)
}else { }else if(res.code == 502){
return this.$message.error("非此单追溯码")
} else{
return this.$message.error(res.message) return this.$message.error(res.message)
} }
}).catch(() => { }).catch(() => {
@ -1000,6 +1001,7 @@ export default {
const audio = new Audio(require('@/assets/audioFiles/order.mp3')) const audio = new Audio(require('@/assets/audioFiles/order.mp3'))
audio.play() audio.play()
this.reset() this.reset()
return this.$message.success("退货成功")
if (this.formDataVisible.scanType != 1) { if (this.formDataVisible.scanType != 1) {
this.findCurOrder() this.findCurOrder()
} }
@ -1112,6 +1114,7 @@ export default {
this.formData = row this.formData = row
this.formData.workPlaceCode = this.workplaceId this.formData.workPlaceCode = this.workplaceId
this.startDeal() this.startDeal()
this.selectPrescriptionVisible = false
// this.generateBarcode() // this.generateBarcode()
}, },

@ -137,12 +137,11 @@
</el-table-column> </el-table-column>
<el-table-column label="应扫码数量" prop="scanActCount"> <el-table-column label="应扫码数量" prop="scanActCount">
<template v-slot="scope"> <template v-slot="scope">
<div :style="getCellStyle(scope.row)" style="display: flex; align-items: center; height: 100%; min-height: 40px;"> <div v-if="scope.row.autoTagStatus == 2" :style="getCellStyle1(scope.row)" style="display: flex; align-items: center; height: 100%; min-height: 40px;">
{{ 无需扫码
scope.row.shouldCount === 0 </div>
? '无需扫码' <div :style="getCellStyle(scope.row)" style="display: flex; align-items: center; height: 100%; min-height: 40px;" v-else>
: `${scope.row.scanCount}/${scope.row.shouldCount}` {{ scope.row.scanCount }}/{{ scope.row.shouldCount }}
}}
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
@ -384,6 +383,14 @@ export default {
return rowBackground return rowBackground
}, },
getCellStyle1(row) {
let cellStyle = {}
if (row.autoTagStatus == 2) {
cellStyle.fontSize = '30px'
cellStyle.color = '#E6A23C'
return cellStyle
}
},
getCellStyle(row) { getCellStyle(row) {
let cellStyle = { let cellStyle = {
fontSize: '50px' fontSize: '50px'
@ -404,13 +411,14 @@ export default {
// return { height: '60px' }; // return { height: '60px' };
// }, // },
getTagColor(row) { getTagColor(row) {
if (row.autoTagStatus == 2) {
this.codingStatus = '预赋码'
return 'warning' //
}
if (row.scanActCount < row.count) { if (row.scanActCount < row.count) {
this.codingStatus = '未赋码' this.codingStatus = '未赋码'
return 'danger' // return 'danger' //
} else if (row.autoTagStatus == 2) { } else if (row.scanActCount >= row.count) {
this.codingStatus = '预赋码'
return 'warning' //
} else if (row.scanActCount >= row.count) {
this.codingStatus = '已赋码' this.codingStatus = '已赋码'
return 'success' // 绿 return 'success' // 绿
} }

@ -394,7 +394,7 @@
<!-- v-if="(curAction.checkWebNew !== 2 || viewType !== 1) && orderFormData.billNo"--> <!-- v-if="(curAction.checkWebNew !== 2 || viewType !== 1) && orderFormData.billNo"-->
</el-button </el-button
> >
<el-button size="mini" type="primary" @click="triggerFileUpload" icon="el-icon-upload2" <el-button size="mini" type="primary" @click="triggerFileUpload" icon="el-icon-upload2" :loading="this.loading"
v-if="curAction.checkWebNew != 2 || viewType !=1" v-if="curAction.checkWebNew != 2 || viewType !=1"
> >
导入阳采追溯码 导入阳采追溯码
@ -848,14 +848,26 @@ export default {
this.$refs.fileInput.click(); this.$refs.fileInput.click();
}, },
triggerFileUpload2() { triggerFileUpload2() {
this.$refs.fileInput2.click(); this.$refs.fileInput2.click();
}, },
handleFileUpload(event) { handleFileUpload(event) {
//
const loading = this.$loading({
lock: true,
text: '数据提交中,请稍候',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
const file = event.target.files[0]; const file = event.target.files[0];
const billNo = this.orderFormData.billNo; const billNo = this.orderFormData.billNo;
const uploadUrl = process.env.VUE_APP_BASE_API + '/udiwms/inout/order/yc/fileUpload'; const uploadUrl = process.env.VUE_APP_BASE_API + '/udiwms/inout/order/yc/fileUpload';
if (this.$isBlank(this.orderFormData.billNo)) { if (this.$isBlank(this.orderFormData.billNo)) {
//
loading.close();
this.$message.error("单据编号不可以为空!"); this.$message.error("单据编号不可以为空!");
return; return;
} }
@ -876,12 +888,16 @@ export default {
}) })
.then(response => { .then(response => {
if (!response.ok) { if (!response.ok) {
//
loading.close();
throw new Error(`HTTP error! Status: ${response.status}`); throw new Error(`HTTP error! Status: ${response.status}`);
} }
return response.json(); return response.json();
}) })
.then(data => { .then(data => {
if (data.code === 20000) { if (data.code === 20000) {
//
loading.close();
// //
if (data.data && data.data.billNo) { if (data.data && data.data.billNo) {
this.orderFormData.billNo = data.data.billNo; this.orderFormData.billNo = data.data.billNo;
@ -895,6 +911,8 @@ export default {
} }
}) })
.catch(error => { .catch(error => {
//
loading.close();
console.error('File upload failed:', error); console.error('File upload failed:', error);
this.$message.error('文件上传失败:' + error.message); this.$message.error('文件上传失败:' + error.message);
}); });
@ -902,8 +920,19 @@ export default {
// //
event.target.value = ''; event.target.value = '';
//
loading.close();
}, },
handleFileUpload2(event) { handleFileUpload2(event) {
//
const loading = this.$loading({
lock: true,
text: '数据提交中,请稍候',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
const file = event.target.files[0]; const file = event.target.files[0];
const uploadUrl = process.env.VUE_APP_BASE_API + '/udiwms/inout/order/yc/orderFileUpload'; const uploadUrl = process.env.VUE_APP_BASE_API + '/udiwms/inout/order/yc/orderFileUpload';
@ -925,12 +954,16 @@ export default {
}) })
.then(response => { .then(response => {
if (!response.ok) { if (!response.ok) {
//
loading.close();
throw new Error(`HTTP error! Status: ${response.status}`); throw new Error(`HTTP error! Status: ${response.status}`);
} }
return response.json(); return response.json();
}) })
.then(data => { .then(data => {
if (data.code === 20000) { if (data.code === 20000) {
//
loading.close();
// //
if (data.data && data.data.billNo) { if (data.data && data.data.billNo) {
this.orderFormData.billNo = data.data.billNo; this.orderFormData.billNo = data.data.billNo;
@ -954,15 +987,21 @@ export default {
} }
}) })
.catch(error => { .catch(error => {
//
loading.close();
console.error('File upload failed:', error); console.error('File upload failed:', error);
this.$message.error('文件上传失败:' + error.message); this.$message.error('文件上传失败:' + error.message);
}); });
} else { } else {
//
loading.close();
this.$message.warning('请选择要上传的文件'); this.$message.warning('请选择要上传的文件');
} }
// //
event.target.value = ''; event.target.value = '';
//
loading.close();
}, },
// //
findInvListByUser() { findInvListByUser() {
@ -2034,6 +2073,7 @@ export default {
<style scoped> <style scoped>
</style> </style>

Loading…
Cancel
Save