11/8 页面优化,扫码剔除功能优化1

20240912_adapter
wangwei 5 months ago
parent fe57fef616
commit 130d4d7a0a

@ -1136,10 +1136,6 @@ export default {
} }
this.addWorkplaceDialogVisible = false this.addWorkplaceDialogVisible = false
this.$message.success('新增成功') this.$message.success('新增成功')
// this.query.code = this.groupData.code
// if (this.query.code == 1001) {
// this.query.code = null
// }
this.getList() this.getList()
}).catch(() => { }).catch(() => {

@ -9,8 +9,8 @@
> >
<el-card> <el-card>
<el-row style="margin-bottom: 8px"> <el-row style="margin-bottom: 8px">
<span style="font-size: 18px;font-weight: bold;color: red" v-if="redMesg"></span> <span style="font-size: 18px;font-weight: bold;color: red" v-if="redMesg"></span>
<span style="font-size: 18px;font-weight: bold">{{ curQueueName }}</span> <span style="font-size: 18px;font-weight: bold">{{curQueueName }}</span>
<el-button-group <el-button-group
style="display: flex; margin-top: 5px; float: right" style="display: flex; margin-top: 5px; float: right"
> >
@ -284,8 +284,10 @@
:curAction="curAction" :curAction="curAction"
:refreshPanel="refreshCodesPanel" :refreshPanel="refreshCodesPanel"
:viewType="viewType" :viewType="viewType"
:status="orderStatus"
v-if="isCodeDetailAlive" v-if="isCodeDetailAlive"
@clearBillNo="clearBillNo" @clearBillNo="clearBillNo"
@getOrderData="getOrderData"
></codeDetailPanel> ></codeDetailPanel>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="扫码明细" v-if="viewCodeDetailVisible"> <el-tab-pane label="扫码明细" v-if="viewCodeDetailVisible">
@ -439,7 +441,8 @@ export default {
this.$refs.inputRef.focus() this.$refs.inputRef.focus()
}, },
'orderFormData.billNo'(newValue) { 'orderFormData.billNo'(newValue) {
if (newValue === null) { if (newValue == null) {
this.overdeleteCode()
this.scanDeleteType = true; this.scanDeleteType = true;
} }
} }
@ -635,6 +638,8 @@ export default {
curQueue: null, curQueue: null,
redMesg: false, redMesg: false,
redMesgOld: false, redMesgOld: false,
productName: null,
orderStatus:false,//
} }
}, },
components: { components: {
@ -708,6 +713,7 @@ export default {
this.corpOrderIdDisabled = false this.corpOrderIdDisabled = false
this.curQueueName = ''; this.curQueueName = '';
this.redMesg = this.redMesgOld this.redMesg = this.redMesgOld
this.orderStatus = false
this.refreshCodesPanel() this.refreshCodesPanel()
}, },
// //
@ -1184,7 +1190,7 @@ export default {
if (this.curSpaceShow) { if (this.curSpaceShow) {
if (this.$isBlank(this.orderFormData.curSpaceCode)) { if (this.$isBlank(this.orderFormData.curSpaceCode)) {
this.$message.warning('请选择当前货位') this.$message.warning('请选择当前取货槽')
return return
} }
} }
@ -1387,6 +1393,8 @@ export default {
this.warnVisible = false this.warnVisible = false
this.errVisible = false this.errVisible = false
this.isCodeAlive = false this.isCodeAlive = false
this.isBizDetailAlive = false this.isBizDetailAlive = false
this.isCodeDetailAlive = false this.isCodeDetailAlive = false
@ -1414,8 +1422,14 @@ export default {
clearBillNo(data) { clearBillNo(data) {
if (data) { if (data) {
this.orderFormData.billNo = null this.orderFormData.billNo = null
this.orderStatus = false
} }
}, },
getOrderData(orderDetail){
this.productName = orderDetail.coName
this.curQueueName = "当前取货槽:" + this.productName + "(" + this.curQueue.code + ")"
this.orderStatus = true
},
refreshOrder(orderQuery) { refreshOrder(orderQuery) {
this.orderFormData = orderQuery this.orderFormData = orderQuery
@ -1532,6 +1546,7 @@ export default {
this.submitLoading = true this.submitLoading = true
} }
this.overdeleteCode() this.overdeleteCode()
this.orderStatus = false
if (this.viewType == 2) { // if (this.viewType == 2) { //
submitCodes(tQuery).then((response) => { submitCodes(tQuery).then((response) => {
if (val == 1) { if (val == 1) {
@ -1747,6 +1762,7 @@ export default {
this.$message.success('保存成功') this.$message.success('保存成功')
this.successCloseData() this.successCloseData()
this.result = '' this.result = ''
this.orderStatus = false
this.$refs.inputRef.focus() this.$refs.inputRef.focus()
} else { } else {
this.$message.error(response.message) this.$message.error(response.message)
@ -1804,19 +1820,19 @@ export default {
if (this.splitType == 'out') { if (this.splitType == 'out') {
if (!this.scanCode.includes("DMQ")) { if (!this.scanCode.includes("DMQ")) {
if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode) { if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode) {
this.$message.warning('当前工位无需按货位上架') this.$message.warning('当前工位无需按取货槽上架')
return; return;
} else if (this.queueStatus == "1" && isBlank(this.orderFormData.workPlaceQueueCode)) { } else if (this.queueStatus == "1" && isBlank(this.orderFormData.workPlaceQueueCode)) {
this.scanCode = '' this.scanCode = ''
this.$message.warning('当前工位需按货位上架') this.$message.warning('当前工位需按取货槽上架')
return; return;
} }
} else { } else {
if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode) { if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode) {
this.$message.warning('当前工位无需按货位上架') this.$message.warning('当前工位无需按取货槽上架')
return; return;
} else if (this.queueStatus == "1" && !this.orderFormData.workPlaceQueueCode) { } else if (this.queueStatus == "1" && !this.orderFormData.workPlaceQueueCode) {
this.$message.warning('当前工位需按货位上架') this.$message.warning('当前工位需按取货槽上架')
return; return;
} }
} }
@ -1854,6 +1870,7 @@ export default {
this.codeFormData.code = response.data.code this.codeFormData.code = response.data.code
this.scanCode = '' this.scanCode = ''
this.addCode() this.addCode()
} else { } else {
if (response.code == 502) { if (response.code == 502) {
this.checkSuccess = false this.checkSuccess = false
@ -1999,7 +2016,7 @@ export default {
} }
if (this.queueStatus == "0") { if (this.queueStatus == "0") {
this.scanCode = '' this.scanCode = ''
return this.$message.warning('当前工位无需按货位上架') return this.$message.warning('当前工位无需按取货槽上架')
} }
// if (!isBlank(this.orderFormData.billNo)){ // if (!isBlank(this.orderFormData.billNo)){
// this.scanCode = '' // this.scanCode = ''
@ -2016,7 +2033,7 @@ export default {
this.loading = false; this.loading = false;
if (response.code == 20000) { if (response.code == 20000) {
this.curQueue = response.data; this.curQueue = response.data;
this.curQueueName = "当前货位:" + this.curQueue.name + "(" + this.curQueue.code + ")" this.curQueueName = "当前取货槽:" + this.curQueue.code
this.redMesg = false this.redMesg = false
this.orderFormData.workPlaceQueueCode = this.curQueue.code this.orderFormData.workPlaceQueueCode = this.curQueue.code
this.scanCode = ''; this.scanCode = '';
@ -2281,7 +2298,7 @@ export default {
} }
} else if (this.queueStatus == "1" && this.orderFormData.workPlaceQueueCode != null) { } else if (this.queueStatus == "1" && this.orderFormData.workPlaceQueueCode != null) {
if (fullScanData != null && fullScanData[0].includes("DMQ")) { if (fullScanData != null && fullScanData[0].includes("DMQ")) {
this.$message.warning('当前上货已绑定货位,请勿重复绑定!'); this.$message.warning('当前上货已绑定取货槽,请勿重复绑定!');
return; return;
} }
} }

@ -64,6 +64,11 @@ export default {
type: Object, type: Object,
required: true, required: true,
}, },
status: {
type: Object,
required: true,
},
}, },
data() { data() {
return { return {
@ -79,6 +84,8 @@ export default {
selectRlVisible: false, selectRlVisible: false,
dialogTableVisible: false, dialogTableVisible: false,
editCodeVisible: false, editCodeVisible: false,
orderDetail:null,
} }
}, },
@ -99,6 +106,10 @@ export default {
this.detailList = response.data.list || []; this.detailList = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
this.loading = false; this.loading = false;
if (this.detailList.length > 0 && this.status == false){
this.orderDetail = this.detailList[0]
this.$emit('getOrderData', this.orderDetail)
}
this.$emit('clearBillNo', this.detailList.length > 0? false : true); this.$emit('clearBillNo', this.detailList.length > 0? false : true);
}) })
.catch(() => { .catch(() => {

Loading…
Cancel
Save