常熟吴彦祖 4 weeks ago
parent
commit
243fa2e96d
  1. 4
      src/views/modules/automatedWarehouse/callOutToStation.vue
  2. 7
      src/views/modules/automatedWarehouse/palletChangeStation.vue
  3. 2
      src/views/modules/automatedWarehouse/palletManualMove.vue

4
src/views/modules/automatedWarehouse/callOutToStation.vue

@ -355,7 +355,9 @@ export default {
site: this.site
}).then(({ data }) => {
if (data.code === 0) {
this.areaOptions = data.rows || [];
// Z199CallZ199 - rqrq
const allOptions = data.rows || [];
this.areaOptions = allOptions.filter(area => area.areaId !== 'Z199');
} else {
this.areaOptions = [];
this.$alert('获取区域选项失败', '错误', {

7
src/views/modules/automatedWarehouse/palletChangeStation.vue

@ -210,7 +210,7 @@ export default {
if (data.code === 0) {
// 6 - rqrq
this.palletCode = data.row.palletId;
// - rqrq
if (data.row.callingFlag === 'Y') {
this.$alert('栈板被调用,请选择其他栈板', '提示', {
@ -296,7 +296,10 @@ export default {
site: this.site
}).then(({ data }) => {
if (data.code === 0) {
this.areaOptions = data.rows || [];
// this.areaOptions = data.rows || [];
// Z199Z199 - rqrq
const allOptions = data.rows || [];
this.areaOptions = allOptions.filter(area => area.areaId !== 'Z199');
} else {
this.areaOptions = [];
this.$alert('获取区域选项失败', '错误', {

2
src/views/modules/automatedWarehouse/palletManualMove.vue

@ -258,7 +258,7 @@ export default {
if (data.code === 0) {
// 6 - rqrq
this.palletCode = data.row.palletId;
// - rqrq
if (data.row.callingFlag === 'Y') {
this.$alert('托盘被调用,无法进行移动操作', '提示', {

Loading…
Cancel
Save