Browse Source

分拣bug

dev
常熟吴彦祖 2 weeks ago
parent
commit
26bfeba25b
  1. 7
      src/views/modules/haianAutoWarehouse/haianPalletAssembly.vue
  2. 7
      src/views/modules/haianAutoWarehouse/haianPalletPacking.vue
  3. 11
      src/views/modules/haianAutoWarehouse/haianPalletSorting.vue

7
src/views/modules/haianAutoWarehouse/haianPalletAssembly.vue

@ -508,9 +508,11 @@ export default {
return
}
this.palletScanLoading = true
// / sortFlag=0 - rqrq
checkPalletExists({
site: this.site,
palletId: this.palletCode.trim()
palletId: this.palletCode.trim(),
sortFlag: 0
}).then(({ data }) => {
if (data && data.code === 0) {
this.palletCode = data.palletId
@ -857,7 +859,8 @@ export default {
deletePalletDetail({
site: this.site,
palletId: this.palletCode,
serialNo: this.scanCode
serialNo: this.scanCode,
sortFlag: 0
}).then(({ data }) => {
if (data && data.code === 0) {
if (scanOutItem) {

7
src/views/modules/haianAutoWarehouse/haianPalletPacking.vue

@ -548,9 +548,11 @@ export default {
return
}
this.palletScanLoading = true
// sortFlag=0/ pack_able - rqrq
checkPalletExists({
site: this.site,
palletId: this.palletCode.trim()
palletId: this.palletCode.trim(),
sortFlag: 0
}).then(({ data }) => {
if (data && data.code === 0) {
this.palletCode = data.palletId
@ -910,7 +912,8 @@ export default {
deletePalletDetail({
site: this.site,
palletId: this.palletCode,
serialNo: this.scanCode
serialNo: this.scanCode,
sortFlag: 0
}).then(({ data }) => {
if (data && data.code === 0) {
if (scanOutItem) {

11
src/views/modules/haianAutoWarehouse/haianPalletSorting.vue

@ -101,7 +101,7 @@
刷新
</button>
</div>
<!-- 被分拣源盘提示站点命中 R1-R4 后按放回标签处理 - rqrq -->
<!-- 被分拣源盘提示后端按海安新增被分拣站数组判定R1-R4 是手工分拣区不走这里 - rqrq -->
<div v-if="sortedSourceFlag" style="margin-top: 6px; color: #e6a23c; font-size: 12px;">
当前为被分拣站点扫进=放回标签提交=通知回库
</div>
@ -304,7 +304,7 @@ export default {
currentPalletType: '',
currentAutoSort: 'N',
currentPalletStation: '',
// location_code R1-R4 - rqrq
// R1-R4 - rqrq
sortedSourceFlag: false,
forceFullPalletOut: false,
palletTypeDisabled: false,
@ -451,9 +451,11 @@ export default {
return
}
this.palletScanLoading = true
// sortFlag=10 - rqrq
checkPalletExists({
site: this.site,
palletId: this.palletCode.trim()
palletId: this.palletCode.trim(),
sortFlag: 1
}).then(({ data }) => {
if (data && data.code === 0) {
this.palletCode = data.palletId
@ -815,7 +817,8 @@ export default {
deletePalletDetail({
site: this.site,
palletId: this.palletCode,
serialNo: this.scanCode
serialNo: this.scanCode,
sortFlag: 1
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message.success('解绑标签成功')

Loading…
Cancel
Save