Commit 095b186e by 王力

Merge branch 'dev_engineer_work_dynamics' into 'develop'

修改

See merge request !234
2 parents bea16be9 ca1b4601
......@@ -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!