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
7
votes
2 answers

Add callback to DOM element created in subclass of web.list.Column

I am trying to modify the web_tree_image widget. Instead of just showing a small image in the column, I would like a larger image to appear when hovering or clicking. In order to achieve this, I am trying to add a callback after the widget is…
ValarDohaeris
  • 6,064
  • 5
  • 31
  • 43
7
votes
2 answers

Pop up the window of exsiting view through click event in odoo

I have created a button in jobs by using inheritance in (hr.recruitment form view) , how could I open another module("Resumes and Letters -sub menu in Human Resource " ) form_view during buttons click event is done.my aim is that I just want open…
PKS ks
  • 116
  • 1
  • 3
  • 8
7
votes
3 answers

How can I make a "for-loop" with a specific number of loops in Qweb?

I would like to make a loop to print elements an exact amount of times. Something like this: ... Where o.label_qty is an integer number. But I can use only a t-foreach loop in qweb:
ChesuCR
  • 9,352
  • 5
  • 51
  • 114
7
votes
3 answers

What is the difference between OpenERP and Odoo?

What all are the difference between OpenERP and Odoo. I know Odoo(v8) is lastest version of OpenERP(v7) and also explain something about Odoo V9. Here difference in the sense it means what are all the additional feature available in Odoo and also…
Tintumon M
  • 1,156
  • 2
  • 14
  • 36
7
votes
1 answer

Using with_context in super call turns into infinite call in odoo

In odoo context dictionary is frozen so no one can update it, for that one solution is also available is calling method using with_context. ctx = self.env.context.copy() ctx.update({'additional_parameter' :…
7
votes
8 answers

How to set PDF name in qWeb report, Odoo?

I'm making reports using qWeb in Odoo 8. Those generated PDF files are saved with a "default" name. I would like to set a specific name to every generated file (not after file was saved, but in "generation" time). Is that possible? If it is, how to…
Breba
  • 163
  • 2
  • 4
  • 11
6
votes
1 answer

postgresql closed connection : could not receive data from client: Connection reset by peer

I have 3 odoos running normal into ec2 in aws with ubuntu16, and postgresql 9.5, but days ago 1 odoo instance died, in my log odoo I saw: 2018-01-11 06:15:56,343 28311 ERROR ? openerp.addons.bus.bus: Bus.loop error, sleep and retry Traceback (most…
jordy
  • 73
  • 1
  • 1
  • 6
6
votes
2 answers

Odoo widget js code is working for version 8 but not for version 9?

Why the below code is not working for odoo 9 but its working for odoo 8... openerp.petstore = function(instance, local) { instance.web.form.widgets = instance.web.form.widgets.extend( { 'test' : 'instance.web.form.message', …
Mani
  • 2,675
  • 2
  • 20
  • 42
6
votes
1 answer

How can a portal user modify his own partner data in Odoo 8?

I was trying to create a module, where portal users could modify the associated partner data. But I get a security error that only admin users could modify configs. File ".../server/openerp/addons/base/res/res_config.py", line 541, in execute …
Mariano DAngelo
  • 920
  • 5
  • 18
  • 39
6
votes
1 answer

How to hide a field in editable mode in odoo (version 8 to 15)

In odoo v8, I want some fields to be shown only in view mode but when the user clicks on edit or create, then those fields should be invisible (Only visible in view mode).
DarkSide
  • 113
  • 2
  • 6
6
votes
5 answers

How do I change the odoo default port?

In Odoo, by default the port is set to 8069, I want to change it to another port. I've tried changing in the openerp-server.conf, the value of xmlprc, but even after restating the server, the new port doesn't work
Maysam AL
  • 249
  • 1
  • 4
  • 18
6
votes
2 answers

Exception: bus.Bus unavailable Odoo 8 multiprocessing with nginx as a proxy server

i'm working on Odoo 8 in a multiprocessing Mode with nginx as a proxy server, i read a lot of issues about this error but i still can't fix my problem,i think that i couldn't run the odoo in a gevent mode, i already configured the nginx with the…
IsmaeelSameed
  • 61
  • 1
  • 5
6
votes
3 answers

odoo context field. default value for popup

I work with Odoo(v9). I have custom: form(for model 1), action and popup with form(for model 2). Here example main form: my_name_form
Danila Ganchar
  • 10,266
  • 13
  • 49
  • 75
6
votes
2 answers

What is the use of ir.ui.view in odoo?

Currently I am learning odoo. I would like to know what is ir.ui.view? This is my sample code course.search
Akhil Mathew
  • 1,571
  • 3
  • 34
  • 69
6
votes
2 answers

Trouble upgrading odoo 8 to odoo 9

I have never used odoo, how do I upgrade from odoo 8 to odoo 9. EDIT: I have found the answer to this question and have posted the steps along. I will develop a efficient process write it down as well as any difficulties if anyone would like that…