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
6
votes
3 answers

overriding write() method in odoo 8 results in RuntimeError: maximum recursion depth exceeded

This seems to be a significant simple problem, but somehow I cant find a solution. As I press the save button the write method will be executed. I want to change a value (or call a function) of the current model every time the write method is…
dnl.re
  • 373
  • 6
  • 23
6
votes
2 answers

How to execute query in Odoo-8 from Python?

I have the following function in the class hr_evaluation_interview: @api.onchange('evaluation_id') def onchange_evalID(self): self.deadline=self.env.cr.execute('SELECT date FROM hr_evaluation_evaluation where id=119') Note: I'm just giving…
solving12
  • 255
  • 5
  • 16
6
votes
2 answers

Odoo custom form field widget - how to display field value?

I've created a custom widget in Odoo, and display it for a form field. My template looks like this: How can I put the field's value into the tag's src attribute?
Aron Lorincz
  • 1,677
  • 3
  • 19
  • 29
6
votes
1 answer

how to integrate Odoo with MySQL

I am trying to integrate Odoo(openerp-8) with MySQL on ubuntu server, to get the database access instead of postgresql. But I am unable to figure out the correct way to do that. I tried this link, but it didn't help…
Knight
  • 363
  • 2
  • 7
  • 24
6
votes
8 answers

Domain for one2many not working Odoo

In my module I want to filter one2many records based on current date. This is my xml code
javatar
  • 1,332
  • 1
  • 17
  • 24
6
votes
5 answers

Odoo Reload on button click

I want to reload a page in odoo on a click of a button. I tried this: object_name.refresh() return {'tag': 'reload'} but it's not working. How can I get it?
deepika bhojani
  • 71
  • 1
  • 1
  • 4
6
votes
4 answers

Why am I getting "Internal Server Error" running two Odoo instances (same domain but different ports)?

I have two instances of Odoo in a server in the cloud. If I make the following steps I get "Internal Server Error": I make login in the first instance (http://111.222.33.44:3333) I close the session I load the address of the second instance in the…
ChesuCR
  • 9,352
  • 5
  • 51
  • 114
6
votes
1 answer

How to change the order of form and tree views in Odoo?

I created a module with normal settings which shows a form view and a tree view. The default behavior is to show the form view at first. I need to change this and show the tree view as the default view. I tried to use the sequence attribute and…
user3259659
  • 77
  • 1
  • 2
  • 9
6
votes
6 answers

How can I output a odoo 8 datetime field without time on a qweb report?

I want to output a odoo 8 datetime field in the localization format but without time. I extended the t-field with the option hide_time. Is there a simpler built-in solution?
user2460152
  • 105
  • 1
  • 3
  • 5
5
votes
2 answers

Why some operators are not working as expected with recordsets in Odoo?

I have done some tests: >>> empty_recordset = self.env['res.users'] # empty recordset >>> not_empty_recordset = self.env['res.users'].search([('id', '=', 1)]) # recordset with one record >>> empty_recordset is…
ChesuCR
  • 9,352
  • 5
  • 51
  • 114
5
votes
1 answer

Apply Multiple filter in odoo at a time

Currently I am using odoov8, my problem is that I have created many filters from xml code as per my requirement and all are working fine ,but I can select only one filter at a time . so for example I want to apply any 3 Filters in tree view , then I…
Meet Vaishnani
  • 253
  • 1
  • 10
5
votes
3 answers

Why do I get the error "Expected singleton" in spite of sending only one id?

I added some fields to the model stock.move and I importing a CSV file in order to create some records. I go over the all the rows and I create the records one by one as you can see here: lot_id = self._get_lot_id( n, row, product_id,…
ChesuCR
  • 9,352
  • 5
  • 51
  • 114
5
votes
1 answer

How to use PHP7 Ripcord library to get Odoo data?

I am trying to get some data from Odoo through XMLRPC, and I am working with PHP and its Ripcord library (recommended on https://www.odoo.com/documentation/8.0/api_integration.html). So I am following the steps written on that page. Firstly, I…
forvas
  • 9,801
  • 7
  • 62
  • 158
5
votes
1 answer

Odoo 9.0 create Product Variants with python xml-rpc

I am trying to import some Product.templates and their product.variants over Odoo´s xml-rpc api with python. Actually my code is creating Product.templates with their attribute.line.ids perfectly fine, but somehow the product.variants are not…
MyPy
  • 51
  • 3
5
votes
1 answer

How to get the previous data or the latest data by id in Odoo?

I created a billing system where I have a fields of meter_no, prev_reading, current_reading and consumed. In my onchange method, when I select a meter number, my prev_reading will be automatically filled with the value of the last saved…
stonix26
  • 89
  • 1
  • 9