20240912_adapter
yewj 5 months ago
parent 5acebe350e
commit dbd697822e

@ -105,6 +105,21 @@
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="3">
<template slot="title">
<p class="form-title">拆零设置</p>
</template>
<el-row :gutter="20">
<el-col :span="8" class="el-col">
<el-form-item label="是否最后追溯码拆零:" prop="lastCodeSplit" style="margin-bottom: 0">
<el-radio-group v-model="formData.lastCodeSplit">
<el-radio :label="true"></el-radio>
<el-radio :label="false"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
</el-collapse-item>
</el-collapse>
@ -122,9 +137,10 @@ export default {
data() {
return {
activeNames: ['0','1','2','3'],
activeNames: ['0', '1', '2', '3'],
formData: {
startDownloadTime: null
startDownloadTime: null,
lastCodeSplit: true
},
systemParam: null,

@ -933,7 +933,7 @@ export default {
keyWords: null,
workPlaceCode: null
}
this.getCargowBindCollectList()
this.getCargowBindCollectList()
},
onQueueList() {
if (this.rowData.workplaceId == null) {
@ -1059,7 +1059,7 @@ export default {
chargeUser: null,
constituencies: '1001',
invRemindNumber: 0,
queueStatus: 0,
queueStatus:0,
remake: null
}
if (this.groupData != null) {
@ -1205,7 +1205,7 @@ export default {
},
edit(row) {
this.formData = row
this.formData.queueStatus = Number(row.queueStatus)
this.formData.queueStatus = Number(row.queueStatus)
// this.formData.invCode = String(row.invCode)
if (row.chargeUser == 0) {
this.formData.chargeUser = null
@ -1261,7 +1261,7 @@ export default {
},
printQueue(row) {
row.labelId = 8
printQueueLabel(row).then(res => {
printQueueLabel(row).then(res => {
const binaryData = []
binaryData.push(res)
let url = window.URL.createObjectURL(

@ -408,7 +408,14 @@ import {
vailOrderFinish
} from "@/api/collect/splitCreateOrder";
import {selectCorpList} from "@/api/basic/basicUnitMaintain";
import {getCurOrder, getNextOrder, findByBill, findFromCorp, orderDetail,removeByScanCode} from "@/api/collect/collectOrder";
import {
getCurOrder,
getNextOrder,
findByBill,
findFromCorp,
orderDetail,
removeByScanCode
} from "@/api/collect/collectOrder";
import PanelOrderAllDetail from "@/views/collect/PanelOrderAllDetail";
import {getWorkBindBusTypes, removeBusTypeById} from '@/api/basic/workPlace/sysWorkplaceDocuments'
import {getInvListByUser} from "@/api/system/invWarehouse";
@ -1147,6 +1154,7 @@ export default {
this.loading = false
if (res.code == 20000) {
this.formData = res.data;
this.startDeal();
} else {
this.$message.error(res.message)
@ -1233,6 +1241,7 @@ export default {
},
//
dealSplitOrder() {
this.formData.workPlaceCode = this.workplaceId;
startSplit(this.formData).then(res => {
this.loading = false
if (res.code == 20000) {
@ -1375,7 +1384,7 @@ export default {
this.$refs.inputRef.focus();
this.$refs.inputRef.select();
},
reset(){
reset() {
this.formData = {
tagStatus: -1,
workPlaceCode: this.formData.workPlaceCode,
@ -1484,18 +1493,18 @@ export default {
},
removeCodesTemp(query) {
removeByScanCode(query).then(res =>{
if (res.code == 20000){
this.$message.success('剔除成功')
this.scanCode = ''
this.panelALive = false
this.$nextTick(() => {
this.panelALive = true
})
this.result = ''
}else if (res.code == 501){
removeByScanCode(query).then(res => {
if (res.code == 20000) {
this.$message.success('剔除成功')
this.scanCode = ''
this.panelALive = false
this.$nextTick(() => {
this.panelALive = true
})
this.result = ''
} else if (res.code == 501) {
}else {
} else {
this.result = ''
this.scanCode = ''
this.$message.error(res.message)
@ -1626,7 +1635,7 @@ export default {
this.placeholder = "请点击输入框进行扫码剔除"
this.scanStatus = 1
this.scanCode = ''
if (!isBlank(this.warnResult)){
if (!isBlank(this.warnResult)) {
this.warnResult = ""
}
},

Loading…
Cancel
Save