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:
parent
b3f557f58a
commit
3db87e1a3f
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue