使用移动网络创建具有新记录的图像,该移动网络具有保存在数据库中的重复数据,但是WiFi连接正常,移动网络数据才有问题。(使用Oddo集成android应用)参考API链接:https://github.com/oogbox/odoo-mobile-api < / p>
OdooValues values = new OdooValues();
values.put("post_code", mPostalCode.getText());
client.create("ryot.master", values, new IOdooResponse() {
@override
public void onResult(OdooResult result) {
int serverId = result.getInt("result");
Toast.makeText(getActivity(), "Save Successfully", Toast.LENGTH_LONG).show();
getActivity().onBackPressed();
}
});