We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e17323 commit e356fdfCopy full SHA for e356fdf
README.md
@@ -40,11 +40,12 @@ Add those jar files to your classpath and you should be ok.
40
41
## Context manipulation
42
43
-Values must be passed as string
+Values must cast in correct forma
44
45
```
46
Map inputMap = new java.util.HashMap();
47
- inputMap.put("active_id", move_id.toString());
+ inputMap.put("active_id", Integer.valueOf(move_id.toString()));
48
+ inputMap.put("active_ids", new Object[]{ Integer.valueOf(move_id.toString()) } );
49
openERPSession.getContext().putAll(inputMap);
50
51
0 commit comments