Commit 6c6c7aa85abdd0474553888f25d406c4f89d6272

Authored by 谭毅彬
1 parent d5103c59

重入处理库位传错问题修复

Signed-off-by: TanYibin <5491541@qq.com>
huaheng-wms-core/src/main/java/org/jeecg/modules/wms/api/wcs/service/WcsServiceImpl.java
... ... @@ -629,7 +629,7 @@ public class WcsServiceImpl implements WcsService {
629 629 // 9. 封装返回的数据格式,包括任务号和重新分配的库位号
630 630 TaskReentryEntity taskReentryEntity = new TaskReentryEntity();
631 631 taskReentryEntity.setTaskNo(Integer.parseInt(taskNo));
632   - taskReentryEntity.setRedirectionLocationCode(toLocationCode);
  632 + taskReentryEntity.setRedirectionLocationCode(locationCode);
633 633 LogRecordContext.putVariable("taskHeader", taskHeader);// 操作日志收集
634 634 return Result.ok(taskReentryEntity);
635 635 }
... ...