Commit 409b3b04 by 丁伟峰

Merge branch 'feature-dingwf-0715' into develop

2 parents b789baee 8d3b1c83
...@@ -108,7 +108,7 @@ public class OrderCreateServiceImpl implements OrderCreateService { ...@@ -108,7 +108,7 @@ public class OrderCreateServiceImpl implements OrderCreateService {
entity.setExpectTimeEnd(LocalDateTimeUtil.parse(req.getExpectEnd(), PATTERN_DATETIME)); entity.setExpectTimeEnd(LocalDateTimeUtil.parse(req.getExpectEnd(), PATTERN_DATETIME));
entity.setExpectTimeDesc(req.getExpectDesc()); entity.setExpectTimeDesc(req.getExpectDesc());
entity.setDescription(req.getDescription()); entity.setDescription(req.getDescription());
entity.setDt(LocalDateTimeUtil.parseDate(req.getExpectBegin(), PATTERN_DATE)); entity.setDt(LocalDateTimeUtil.parseDate(req.getExpectBegin().substring(0, 10), PATTERN_DATE));
// location // location
LocationDTO location = req.getLocation(); LocationDTO location = req.getLocation();
entity.setProvince(location.getProvince()); entity.setProvince(location.getProvince());
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!