Commit ca1b4601 by wangli

修改

1 parent 3aea13c8
......@@ -100,7 +100,8 @@ public class EngineerTimelineServiceImpl implements EngineerTimelineService {
// 获取配送站location
LambdaQueryWrapper<OrgWarehouseInfo> lqw = new LambdaQueryWrapper<>();
lqw.eq(OrgWarehouseInfo::getBranchId, branchId);
OrgWarehouseInfo w = warehouseInfoMPDao.selectOne(lqw);
List<OrgWarehouseInfo> wares = warehouseInfoMPDao.selectList(lqw);
OrgWarehouseInfo w = wares.get(0);
return String.format("%s,%s", w.getX(), w.getY());
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!