Questions tagged [odoo-mobile]

Odoo Mobile framework: An open source mobile application development framework with Odoo integration. With the help of mobile framework developer can rapidly develop almost all Odoo supported application as faster as we can develop in Odoo. This framework contains its own ORM to handle mobile’s local database (SQLite). So you do not have to worry data coming from Odoo.

Odoo Mobile is open-source framework allows you to integrate Odoo into your Android app.

Odoo is a powerful open source framework. With help of this framework we can rapidly develop almost any application.

With the help of mobile framework developer can rapidly develop almost all Odoo supported application as faster as we can develop in Odoo. This framework contains its own ORM to handle mobile’s local database (SQLite). So you do not have to worry data coming from Odoo.

Links

24 questions
0
votes
1 answer

Insert new record(Odoo) - Odoo mobile framework

I have a method which accepts an OValue: getResults(OValues values) Inside the method are the ff. ORecordValues value = new ORecordValues(); value.put("order_partner_id", orderline.getPartner(values)); value.put("product_id",…
plexus
  • 101
  • 1
  • 11
0
votes
1 answer

how to change state from sent to read when click item

I need to update state of sales when I click in item list view but i can't this is my code public void onItemClick(AdapterView parent, View view, int position, long id) { ODataRow row =…
Caludio
  • 135
  • 11
0
votes
1 answer

OM2ORecord odoo framework android

this is my fragment i put information in list view @Override public void onViewBind(View view, Cursor cursor, ODataRow row) { OControls.setText(view, R.id.name, row.getString("name")); OControls.setText(view, R.id.email,…
Caludio
  • 135
  • 11
0
votes
1 answer

relation between two tables manyToOne odoo mobile

i need to show the person name actually i show the id of person public void onViewBind(View view, Cursor cursor, ODataRow row) { OControls.setText(view, R.id.name, row.getString("person_id")); } there are a relation manyToOne between class…
Caludio
  • 135
  • 11
0
votes
1 answer

How to access res.groups model in Odoo Mobile framework

I am creating an application using Odoo Mobile Framework. How can I get the information of the roles of the connected user? It is possible for me to get the table res.groups from that framework?
Tico1993
  • 59
  • 6
0
votes
1 answer

odoo mobile framework call method on odoo 10

can anyone help me out with my issue? i define a method called get_order_no on odoo 10 @api.one @api.returns('self') def get_order_no(self): order_no = self.env['ir.sequence'].next_by_code('car.seat') return order_no then i call it on…
zhixiao jiang
  • 131
  • 3
  • 11
0
votes
0 answers

OpenERP Android App connection?

i am new to android environment i have installed eclipse and android developer tool. my openerp application is running and i coded in "MainActivity.java" in "On create" method that is, import java.net.MalformedURLException; import…
user3664724
  • 425
  • 1
  • 6
  • 18
0
votes
1 answer

Getting multiple select checkbox value in android listview using Odoo mobile framework

I am using odoo mobile framework. My android app will connect to odoo server. I fetch the product from server and display in listview. I want to get multiple select value from listview. Here is my code. When I click a checkbox, another checkboxs…
Zaw Myo Htet
  • 540
  • 2
  • 7
  • 23
-1
votes
1 answer

Oselection reading state

this is my model OColumn state_order = new OColumn("state_order", OSelection.class) .addSelection("draft","New") .addSelection("paid","Paid") .addSelection("cancel","Cancelled") .addSelection("done","Posted") .addSelection("invoiced","Invoiced") In…
Caludio
  • 135
  • 11
1
2