Browse Source

库位合并

zh 3 months ago
parent
commit
ebedd2e754
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/robot/merge/index.vue

+ 2 - 2
src/views/robot/merge/index.vue

@@ -812,8 +812,8 @@ const handleStationClick = (station: StationItem) => {
     showReissueConfirm(station)
     return
   }
-  // 空料箱状态弹出解绑确认框
-  if (station.status === 'emptyBox') {
+  // 空料箱状态弹出解绑确认框(仅当料箱无分割,即料箱即库位时才能触发)
+  if (station.status === 'emptyBox' && (!station.splitCount || station.splitCount === 1)) {
     showUnbindConfirm(station)
     return
   }