Fix printing due to change in entry points that now use code instead of id

This regression was introduced in commit fd74722614.

FEA: ItEr77S04BugFixing
This commit is contained in:
Manuel Rego Casasnovas 2012-11-29 11:18:01 +01:00
parent b3f557f58a
commit 3db87e1a3f

View file

@ -114,7 +114,7 @@ public class CutyPrint {
private static Map<String, String> entryPointForShowingOrder(Order order) {
final Map<String, String> result = new HashMap<String, String>();
result.put("order", order.getId() + "");
result.put("order", order.getCode() + "");
return result;
}