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
4
votes
1 answer

How to create a One2one relationship in Odoo 8?

I have two sets of data that exhibit a one-to-one relationship. I am not able to merge the two sets of data because: Particular records may be present only in set A, only in set B, or both in set A and in set B; and The association between records…
Monica For CEO
  • 499
  • 6
  • 20
4
votes
2 answers

How to use if in Odoo template language

I'm trying to use the same functionality as in Django:
In Odoo I have:
Mariano DAngelo
  • 920
  • 5
  • 18
  • 39
4
votes
1 answer

Error on res.users.form when update a custom module

I have created a new custom module for Odoo 8 and I have created a new group for secure this module. The security.xml is like this: Test
Carlos Mayo
  • 2,054
  • 1
  • 19
  • 35
4
votes
3 answers

In OpenERP, What is the difference between "send a message" and "log a note"?

In OpenERP, What is the difference between "send a message" and "log a note". I found two option "send a message" and "log a note" in form view under Leads, Quotations, Sales Orders, etc., You'll find it. What is the difference between them and what…
Tintumon M
  • 1,156
  • 2
  • 14
  • 36
4
votes
0 answers

How to make a tree only editable inline (no creation, no deletion) in Odoo8?

I'm trying to make a tree editable inline. I don't want to be able to create or remove records from that tree. So what I did is the next: But this is not working…
forvas
  • 9,801
  • 7
  • 62
  • 158
4
votes
1 answer

QWebException: "'NoneType' object is not callable" while evaluating 'has_shortage_so_lines(data)==True'

I found the another question at here. But there is no answer. I got the error QWebException: "'NoneType' object is not callable" while evaluating 'has_shortage_so_lines(data)==True' This is my report_view.xml
Thu Ra
  • 2,013
  • 12
  • 48
  • 76
4
votes
3 answers

Odoo 8.0 product_product inherit extend class

I'm getting my first step into odoo. I'm trying to extend product model class like this. from openerp.osv import osv,fields as fields class product_product(osv.osv): _name = 'product.product' _inherit = 'product.product' _columns = { …
Mariano DAngelo
  • 920
  • 5
  • 18
  • 39
4
votes
1 answer

How can I run a sql query after clicking a button in Odoo?

I use Odoo8 and I'm trying to create a custom module to generate a report after adding a date to the datefield. So my question is: How can I run a SQL query in python class after cliking a button in form view?
4
votes
3 answers

How to hide the edit button form based on state field of invoice Odoo v8?

I want to hide the edit button when a invoice' state is paid, just like the image below. And I was inheriting the invoice_form and add the corresponding attribute.
Juan Salcedo
  • 1,598
  • 1
  • 16
  • 28
4
votes
3 answers

How do I make a class (that already exist) inherit another class?

For example class res.partner. I want res.partner to inherit class A. How do I do that? I don't think this will work: class custom_res_partner(osv.osv): _name = "res.partner" _inherit = "A" custom_res_partner()
William Wino
  • 3,599
  • 7
  • 38
  • 61
4
votes
2 answers

Odoo (on Debian) - longpolling port is never used/opened

There seems to be a problem with Debian distributions (tested for both Wheezy and Squeeze) using Odoo for longpolling port. longpolling port is never used. It supposed to be used wen workers parameter is set to be greater than 0, but it is not used…
Andrius
  • 19,658
  • 37
  • 143
  • 243
4
votes
0 answers

How to execute custom function when data loaded in Odoo 8.x

All I hope that execute custom function when all data load is complete, I can use ajaxStop in previous versions $(document).ajaxStop(function () { //Do Something. }); But this does not work in the new version on github. Is there a global method…
gudaoxuri
  • 103
  • 7
4
votes
1 answer

Get values from method in Odoo 8 API

I'm trying to interact with Odoo 8 API and get a list of fields. The method is called by ripcord XMLRPC library and this is the sentence: $models = ripcord::client($url.'/xmlrpc/2/object'); $models->execute_kw($dbname, $username,…
David
  • 2,283
  • 2
  • 14
  • 16
4
votes
6 answers

After odoo installation, either CSS nor JS are found

After a lot of tries, I could finally install odoo 8, however, when I connect to it, browser redirects to /web/database/manager and the HTML is loaded (the logo appears and in the title Tag appears Odoo. The problem is that JavaScripts and CSS are…
jstuardo
  • 3,901
  • 14
  • 61
  • 136
4
votes
3 answers

openERP function for validate date range

I have two fields in my module,(start_date and end_date). I want to validate the date range as end_date must be greater than start_date and display error message like "End Date Should be greater than Start Date" This is mu cord. from openerp.osv…
Chamal
  • 235
  • 1
  • 7
  • 13