Archived
0

print station name in offers and orders desc

This commit is contained in:
iMoHax
2014-11-27 10:35:50 +03:00
parent 449d5df5bd
commit b673914852
8 changed files with 23 additions and 15 deletions

View File

@@ -38,7 +38,7 @@ public interface Offer extends Comparable<Offer> {
}
default String toPString(){
return String.format("%s (%.0f)", getVendor().getPlace().getName(), getPrice());
return String.format("%.0f (%s - %s)", getPrice(), getVendor().getPlace().getName(), getVendor().getName());
}
default String toIString(){