Commit b8b28cfb by wangli

优化展示

1 parent df6c8246
......@@ -73,7 +73,7 @@ public class DispatchServiceImpl implements DispatchService {
item.setRemark(o.getApplyNote());
item.setCustomerName(o.getName());
String description = String.format("%s:%s%s-%s\n%s:%s%s%s", o.getOrderId(), o.getSkill(),
String description = String.format("%s:%s%s-%s\n%s:%s-%s-%s", o.getOrderId(), o.getSkill(),
o.getType(), o.getBrand(), o.getName(), o.getCity(), o.getCounty(), o.getAddress());
item.setDescription(description);
......
......@@ -119,7 +119,7 @@ public class OrderServiceListServiceImpl implements OrderServiceListService {
record.setSkill(o.getSkill());
record.setName(o.getName());
record.setPhone(o.getPhone());
record.setAddress(String.format("%s%s%s", o.getCity(), o.getCounty(),o.getAddress()));
record.setAddress(String.format("%s-%s-%s", o.getCity(), o.getCounty(),o.getAddress()));
record.setX(o.getX());
record.setY(o.getY());
record.setSource(o.getSource());
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!