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

Configuration of Google spreadsheets with Odoo

I want to get the report data in google spreadsheets in Odoo. I have done following steps to configure google spreadsheet with Odoo: Installed the Google Spreadsheet module in Odoo. Generated Google Authorization Code Tried to get a report on…
shruti
  • 459
  • 6
  • 24
4
votes
1 answer

OpenERP / Odoo using domain for many2one in xml view

I try to set invisible attribute to a field depending on a field in many2one relation: In fact, I have a model M1 with a field option and a field m2_id which is a m2o relation to model M2 that contains a field category (a selection field with values…
iouhammi
  • 1,108
  • 15
  • 29
3
votes
1 answer

Odoo sorting group by month

In the Account module, there is a group by filter by default. The group by Invoice month filter. When it is used, the invoices are grouped by month.Ascending Invoices month The group is sorted in ascending order. Is there any way to sort it by…
Ryan
  • 51
  • 1
  • 3
3
votes
1 answer

How do I change the default database schema in odoo?

By default when I create a new database in odoo, the tables are created in the public schema. Is there a way to change this configuration and that odoo create and use another defined scheme?
Dayana
  • 1,500
  • 1
  • 16
  • 29
3
votes
1 answer

protection not working with api.constrains

I want to forbid making product if there is no "qty_available". But this code is not working. It works only if i change @api.constrains to @api.onchange('move_lines') but if i do it with onchange there is still possibility to save record. as…
Chaban33
  • 1,362
  • 11
  • 38
3
votes
1 answer

How to inherit from a pure Python class in Odoo to modify a method?

I have to modify a method in Odoo. The problem is that the class which contains the method is not declared as usual (it's not using the Odoo API), so I don't know how to emulate the _inherit parameter of the Odoo API. This is the class which…
forvas
  • 9,801
  • 7
  • 62
  • 158
3
votes
1 answer

How to get inactive records in One2many/Many2many fields?

Let's put an example with an One2many, which is clearer: imagine that a person can have several pets, but a pet can only have an owner: class Pet(models.Model): _name='pet' owner_id = fields.Many2one( comodel_name='person', …
forvas
  • 9,801
  • 7
  • 62
  • 158
3
votes
4 answers

How to display man2many fields in list view in odoo 8?

I tried two ways to display many2many field in list view but none of them worked: 1) --> It shows just the number of records.(i.e. (3 records)) 2) --> It shows the ids of…
Ankit
  • 99
  • 1
  • 13
3
votes
1 answer

Why Odoo removes milliseconds in Datetime fields?

I have a method in which self is a simple stock.move record. Besides, as you may know, stock.move model has a Datetime field named date. If I write this code inside the method: lines = self.search([ ('date', '=', self.date), ]) It should return…
forvas
  • 9,801
  • 7
  • 62
  • 158
3
votes
1 answer

Hide fields from Odoo graph view

I'm working on an Odoo graph view. An SQL view was needed to display all the fields in the graph view. This is the python code: from openerp import fields, models, tools, api class omzettenperdag_sql_view(models.Model): _name =…
RobbeM
  • 727
  • 7
  • 16
  • 36
3
votes
1 answer

Loop through record lines method - Odoo v8

I have this method: @api.onchange('qty', 'consumed_qty') def _remaining_func(self): for qty in self.isbn: if self.qty or self.consumed_qty: self.remaining_qty = self.qty +(-self.consumed_qty) But I need it to loop through…
NeoVe
  • 3,857
  • 8
  • 54
  • 134
3
votes
1 answer

How to hide button on create mode in Odoo

I know I can hide form button using built-in css class like oe_edit_only or oe_read_only But how to hide an button when creating an item (and show the button only after the item is created, regardless when at read or edit mode)? I tried to look at…
strike_noir
  • 4,080
  • 11
  • 57
  • 100
3
votes
0 answers

Odoo/OpenERP - Error "Model not found" while importing Module

I have been searching for hours now but I can't find a solution. In Odoo I'm trying to import the document_page module which I got from the official Odoo Apps Page (https://www.odoo.com/apps/modules/8.0/document_page/). The import stops with the…
pixelmusik
  • 510
  • 5
  • 19
3
votes
3 answers

How to hide "Create And Edit" button in all form odoo And also "Search More" Button in every line

I want to hide "Create and Edit" button in all form and also I want to show "Search More" button in all form Currently Im using odoo 10. Let's see this addons https://apps.openerp.com/apps/modules/9.0/web_m2x_options/ I have tried to using that…
Kode Kite
  • 328
  • 5
  • 15
3
votes
1 answer

@api.constrains is not working properly

In the 'project.project' model I wrote a function to validate 'start Date' and 'end date' for this I used onchange function.The function is working and giving warning but record is creating. Actually if there is any error means record cannot be…
phani
  • 121
  • 1
  • 15