Hi, I am trying to implement one module from Odoo (v8) to mobile, and it is not loading all the data from the server but when I change item on the website and refresh it on mobile the item I've changed appears there. Any ideas what is the problem?
Also I have problem with OSelection it does not show me the Label but the key
OColumn state = new OColumn("state", OSelection.class)
.addSelection("draft","Draft")
.addSelection("done", "Fixed")
.addSelection("cancel", "Canceled");
so for example I got done instead of Fixed.