Questions tagged [odoo-8]

Odoo S.A. is the software vendor of the Odoo Apps (formerly OpenERP).

                     Odoo (formerly known as OpenERP)

enter image description here

Odoo was formerly known as OpenERP until May 2014. It was re-branded because version 8 of the software included apps including website builder, e-commerce, point of sale and business intelligence. The software conforms to standard expectations of ERP systems, while providing additional modules beyond the coverage of traditional ERP systems.

Odoo S.A. provides a web site referencing the officially supported modules as well as community modules. Community modules can be referenced for free as long as they respect the open source license of Odoo. As of June 2014, the number of Odoo apps reached more than 4000.

Module development mainly relies around editing Python and XML files. Some application logic (i.e. work-flows and data structure) can be changed through the client interface using a developer mode.

The official Odoo apps are organized in 6 groups:

  • Front-end apps: Website builder, Blog, E-Commerce
  • Sales management apps: CRM, Point of Sales, Quotation builder
  • Business operations apps: Project management, Inventory, Manufacturing, Accounting, Purchase
  • Marketing apps: Mass mailing, Lead automation, Events, Survey, Forum, Live chat, Live support
  • Human Resources apps: Employee directory, Enterprise social network, Leave management, Timesheet, Payroll management, Fleet management
  • Productivity apps: Business intelligence, Instant messaging, Notes

The software is actively programmed, supported, and organized by OpenERP S.A. Odoo is similar to many open source projects where customized programming, support, and other services are also provided by an active global community and a network of more than 500 official partners.

Internal Links:

2300 questions
38
votes
2 answers

Which are the available domain operators in Openerp / Odoo?

I know few operator in openerp domain. I dont get the details of available domains and their explanation. Particularly for these negation domains. Can anyone tell me the detail list?
cracker
  • 445
  • 1
  • 5
  • 10
35
votes
3 answers

What is Main difference between @api.onchange and @api.depends in Odoo(openerp)?

In Odoo v8 there are many API decorators used. But I don't understand the main difference between @api.depends and @api.onchange. Can anyone help me out from this one? Thank You.
bud-e
  • 1,511
  • 1
  • 20
  • 31
24
votes
3 answers

What does |= (pipe equal) sign do in python?

I saw a piece of code in a project where following is written: move = Move.create({ 'name': repair.name, 'product_id': repair.product_id.id, 'product_uom': repair.product_uom.id or repair.product_id.uom_id.id, 'product_uom_qty':…
Tanzil Khan
  • 942
  • 1
  • 9
  • 20
23
votes
1 answer

How can I enable the sync option by default when false in app?

I use odoo mobile framework. How can I enable the sync option on app startup? (The option is disabled by default.)
Naitik
  • 796
  • 11
  • 32
18
votes
4 answers

How to make field readonly based on group and status?

I want to make field readonly based on group, and status. Like I have two groups: Manager Group User Group If I give User Group to any user and then change Status to Done, then field will be readonly for this user. Hope I was able to make it clear…
user1576199
  • 3,217
  • 3
  • 20
  • 32
15
votes
2 answers

Odoo 8: Many2many domain filter

I have several organization types with a many2many relation describing which types that may be parent to other types (e.g. department can be parent to sub-department and working group). It's NOT a strict hierarchy (working group can be parent to…
cgs
  • 322
  • 1
  • 4
  • 15
14
votes
7 answers

Odoo - prevent button from closing wizard

I have a transient model that serves as a dialog. In my form view I have a button like this:
The button invokes this function (I can confirm it…
Aron Lorincz
  • 1,677
  • 3
  • 19
  • 29
12
votes
1 answer

WARNING Error-prone use of @class

> WARNING 11_test1 odoo.addons.base.ir.ir_ui_view: Error-prone use of > @class in view report_invoice_document > (account_invoice_report.report_invoice_document): use the > hasclass(*classes) function to filter elements by their classes Can someone…
Chaban33
  • 1,362
  • 11
  • 38
12
votes
4 answers

What is difference between @api.one, @api.multi and @api.model?

I am confused regarding @api.one, @api.multi, and @api.model in Odoo. What are the differences between the three and what are their use cases?
user3567808
12
votes
1 answer

Detect when odoo interface is fully loaded

I need to run some javascript code to check when odoo has ended loading. I know that querying jQuery.active == 0 does the trick in version 7 but that does not work in odoo because it always keep one connection open for the longpolling. Does anybody…
yucer
  • 4,431
  • 3
  • 34
  • 42
11
votes
4 answers

How to recompute stored functional field values in Odoo?

Sometimes stored fields must be recomputed, but triggers can not be launched (e.g. in case of SQL injection). How to recompute them an easy way?
and3p
  • 994
  • 2
  • 10
  • 23
11
votes
2 answers

How to group a tree/list view inside a fom view in Odoo 8?

I have a tree view inside a form view and want to group it by a specific category (in this case material), just like in a normal tree view. Is that possible? I tried to insert a filter before and inside the but that did not work:
dnl.re
  • 373
  • 6
  • 23
10
votes
3 answers

How to get JSON data in an Odoo controller using type='json'?

A few days ago I did a similar question here: How to get JSON data in an Odoo controller? But now, I need to create a controller which receives only JSON data. So, I am doing the request from a Python console, this way: import requests import…
forvas
  • 9,801
  • 7
  • 62
  • 158
10
votes
2 answers

What is a "worker" in Odoo?

What is the purpose of workers? Are these workers for multi-threading or something else? When the Odoo instance start I see at least 6 workers on command line that informed: 2016-03-10 13:55:09,602 15504 INFO ? openerp.service.server: Worker…
vildhjarta
  • 574
  • 2
  • 5
  • 16
10
votes
2 answers

How to set default values with methods in Odoo?

How to compute the value for default value in object fields in Odoo 8 models.py We can't use the _default attribute anymore in Odoo 8. field_name = fields.datatype( string=’value’, default=compute_default_value ) In the above field…
Jay Venkat
  • 397
  • 2
  • 5
  • 18
1
2 3
99 100