Commit d9d750d3 by guojuxing

营业时间格式修复

parent 7db9c878
......@@ -1628,7 +1628,7 @@ public class StoreApiServiceImpl implements StoreApiService {
if (CollectionUtils.isNotEmpty(businessTimeList)) {
businessTimeList.stream().filter(e -> e != null && StringUtils.isNotBlank(e.getWeekday())).map(e -> {
String businessHours = simpleDateFormat.format(e.getOpenTime()) + "-" + simpleDateFormat.format(e.getCloseTime());
return businessTime(e.getWeekday()) + businessHours;
return businessTime(e.getWeekday()) + ":" + businessHours;
}).forEach(e -> {
businessTime.append(e).append(";");
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment