1/10 槽位优化1.0

20240912_adapter
wangwei 3 months ago
parent 465842381d
commit 345f1f6ee9

@ -126,7 +126,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
@click.native.stop="handleDel(scope.row)" @click.native.stop="handleDel(scope.$index, scope.row)"
>删除 >删除
</el-button </el-button
> >
@ -309,10 +309,10 @@ export default {
}, },
createLayerCode(lastLayer) { createLayerCode(lastLayer) {
let code let code
code = lastLayer.code.replace(this.formData.code, '') code = lastLayer.code.slice(lastLayer.code.indexOf('-') + 1);
code = parseInt(code, 10) + 1 code = parseInt(code, 10) + 1
let incrementedValue = code.toString().padStart(2, '0') let incrementedValue = code.toString().padStart(2, '0')
code = this.formData.code + incrementedValue code = this.formData.code + "-" + incrementedValue
return code return code
}, },
@ -353,7 +353,7 @@ export default {
} }
}) })
}, },
handleDel(row){ handleDel(index,row){
if (this.saveStatus == true){ if (this.saveStatus == true){
return this.$message.error("请保存数据") return this.$message.error("请保存数据")
} }
@ -369,6 +369,8 @@ export default {
if (res.code == 20000){ if (res.code == 20000){
this.getLayers() this.getLayers()
this.$message.success("删除成功") this.$message.success("删除成功")
}else if (res.code == 501){
this.layerList.splice(index, 1);
}else { }else {
this.$message.error("删除失败") this.$message.error("删除失败")
} }

@ -230,7 +230,7 @@ export default {
billNo: null, billNo: null,
tagStatus: 3, tagStatus: 3,
workPlaceCode: null, workPlaceCode: null,
busType: null busType: null,
}, },
codeQuery: { codeQuery: {
billNo: null, billNo: null,
@ -326,6 +326,10 @@ export default {
this.orderQuery.busType = this.busType this.orderQuery.busType = this.busType
orderFinish(this.orderQuery).then(res => { orderFinish(this.orderQuery).then(res => {
if (res.code == 20000) { if (res.code == 20000) {
if (res.data.list[0].checkCodeStatus == 1){
this.initData()
return this.$message.error("当前单据已经校验")
}
this.placeholder = '已选入单据,请扫描追溯码进行校验' this.placeholder = '已选入单据,请扫描追溯码进行校验'
this.scanTip = '扫码校验' this.scanTip = '扫码校验'
this.orderData = res.data.list[0] this.orderData = res.data.list[0]
@ -607,7 +611,20 @@ export default {
}) })
} else { } else {
this.commit() this.$confirm('是否完成当前单据校验', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
center: true,
closeOnPressEscape: false,// ESC
closeOnClickModal: false,//
distinguishCancelAndClose: true//
}).then(() => {
this.commit()
}).catch(() => {
})
} }
}, },
commit() { commit() {

Loading…
Cancel
Save