Commit fa9266b606d491776c33d444ca582e346d50901d
1 parent
55b58128
修改提示字段
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/com/huaheng/pc/task/taskHeader/service/TransferTaskService.java
... | ... | @@ -79,10 +79,10 @@ public class TransferTaskService { |
79 | 79 | return AjaxResult.error("源库位:" + sourceLocation + "存在出库组盘,不能移库"); |
80 | 80 | } |
81 | 81 | if (StringUtils.isNull(desLocation)) { |
82 | - return AjaxResult.error("目标库位:" + desLocation + "未找到"); | |
82 | + return AjaxResult.error("目标库位:" + desLocationCode + "未找到"); | |
83 | 83 | } |
84 | 84 | if (!"empty".equals(desLocation.getStatus())) { |
85 | - return AjaxResult.error("目标库位:" + desLocation + "状态非空闲"); | |
85 | + return AjaxResult.error("目标库位:" + desLocationCode + "状态非空闲"); | |
86 | 86 | } |
87 | 87 | if (StringUtils.isNotEmpty(desLocation.getContainerCode())) { |
88 | 88 | return AjaxResult.error("目标库位:" + desLocationCode + "存在托盘"); |
... | ... |