odoo-mobile

OColumn with odoo functional in Odoo Mobile Framework not working

本小妞迷上赌 提交于 2020-07-23 06:32:19
问题 I have this OColumn partner_name = new OColumn("Partner", OVarchar.class).setLocalColumn(); in my sale order model class with odoo functional method that depends on partner_id column. I would like to search the partner_name in my list using that column partner_name, but I'm a little confused on how to achieve this. Please needed some help. This is what I've tried: BaseFragment @Override public void onViewBind(View view, Cursor cursor, ODataRow row) { getPartnerIds(row); OControls.setText(view

OColumn with odoo functional in Odoo Mobile Framework not working

…衆ロ難τιáo~ 提交于 2020-07-23 06:31:23
问题 I have this OColumn partner_name = new OColumn("Partner", OVarchar.class).setLocalColumn(); in my sale order model class with odoo functional method that depends on partner_id column. I would like to search the partner_name in my list using that column partner_name, but I'm a little confused on how to achieve this. Please needed some help. This is what I've tried: BaseFragment @Override public void onViewBind(View view, Cursor cursor, ODataRow row) { getPartnerIds(row); OControls.setText(view

insert into one To many and many To one fields

拥有回忆 提交于 2020-01-15 10:34:29
问题 I am using android odoo-mobile framework and this is how i am inserting a record online with the help of createRecord() now I want to insert record in manyTomany and oneTomany field in odoo database.I dont know how to insert it online.please help me. Thanks! this is how i am inserting/creating a new record online. protected OdooResult doInBackground(Void... voids) { ORecordValues values = new ORecordValues(); values.put("partner_id", Integer.parseInt(resPartnerArrayList.get(idc).get_id()));

Is there anyone integratted ODOO with Android?

夙愿已清 提交于 2019-12-10 10:07:28
问题 I am currently developing an android application for a client who is insisting to use Odoo for API.I don't have any single idea about it I am not getting it any even after referring this link.They provide a URL, Database name, username, and password.If any one did Odoo with Android before, Can you give any suggestions? 回答1: There are a lot of ways to connect Android to Odoo. Here they are: Json-RPC XML-RPC (especially aXMLRPC, this is what I am using) There is also a framework called Odoo

Is there anyone integratted ODOO with Android?

放肆的年华 提交于 2019-12-06 02:41:46
I am currently developing an android application for a client who is insisting to use Odoo for API.I don't have any single idea about it I am not getting it any even after referring this link .They provide a URL, Database name, username, and password.If any one did Odoo with Android before, Can you give any suggestions? There are a lot of ways to connect Android to Odoo. Here they are: Json-RPC XML-RPC (especially aXMLRPC , this is what I am using) There is also a framework called Odoo Mobile Framework . I have tried it but found a lot of issues and I was not able to get it work properly. You