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

In Odoo how to force overwriting of a record rule which is defined in a base module and data is set to noupdate='1'?

The following record rule is defined in product module Product multi-company
Mustafa
  • 51
  • 1
  • 4
5
votes
2 answers

ImportError: No module named win32service

I am using odoo8 with python 2.7.9 (64 bit) on eclipse IDE. Python software got corrupted so I had to reinstall it.Now I am facing this new problem ImportError: No module named win32service
Kiran
  • 1,481
  • 6
  • 36
  • 66
5
votes
2 answers

How to fix 'HttpRequest' object has no attribute 'endpoint_arguments' in Odoo?

I was given a database backup (with filestore), the filestore folder and another folder with the installed modules on that database. I am expected to restore that backup in Odoo 8 with no more data. So what I did is create the PostgreSQL role who…
forvas
  • 9,801
  • 7
  • 62
  • 158
5
votes
1 answer

How to redirect to another form view in python code - Odoo 8

Through clicking a button the user should create a new order from given values and be directly redirected to the form view of the newly created order. Following method is called through the button: @api.one def method_name(self): [...] …
dnl.re
  • 373
  • 6
  • 23
5
votes
0 answers

How overwrite sum of field with read_group in odoo8

i want change sum of field obj_global but i can't do that I overwrite of function read_group but i don't have a correct Sum i want have Total sum= sum of group by section_id :130000=10000+70000+50000 think's for our help def read_group(self, cr,…
Dotcomtunisia
  • 123
  • 1
  • 9
5
votes
4 answers

How to run Odoo tests unittest2?

I tried running odoo tests using --test-enable, but it won't work. I have a couple of questions. According to the documentation Tests can only be run during module installation, what happens when we add functionality and then want to run tests? Is…
Aftab Naveed
  • 3,652
  • 3
  • 26
  • 40
5
votes
4 answers

How to use related fields (fields.related) in odoo-8?

I am trying to retrieve comment field(customer internal notes) from res_partner to account invoice module.Right now I just want to print it later I will include it in xml code. I tried in three ways like this, 1)comment2 =…
Kiran
  • 1,481
  • 6
  • 36
  • 66
5
votes
1 answer

Why the parameter --auto-reload is not working if the addons path content are links to modules?

Description Normally if you change your python code means, you need to restart the server in order to apply the new changes. If the --auto-reload parameter is enabled means, you don't need to restart the server. It enables auto-reloading of python…
ChesuCR
  • 9,352
  • 5
  • 51
  • 114
5
votes
2 answers

Changing the Filename of a Uploaded Binary File Field

I'm using Odoo8 I have a question I used the fields.binary to upload a file/s in Odoo. But when I try to download it the filename of the uploaded file is the model name. Is it possible to change the filename of the file? And second the filters…
Black and White
  • 452
  • 1
  • 9
  • 32
5
votes
1 answer

How can I see the emails address from marketing campaigns in Odoo?

I have sent some emailing campaigns form Marketing, at "Mass Mailings" at details I have "Emails" button. When I click on it I have columns "Mail ID (tech)", "Message-ID", "Sent" and others. But I do cannot see the email to which I have sent. How…
radu c
  • 4,138
  • 7
  • 30
  • 45
5
votes
1 answer

How to search multiple custom fields by one string in Odoo?

I created a custom odoo module and now I want to make a search filter that makes it easy to search multiple fields at the same time. I added this code to my xml and I am able to search each field individually but would like to group them into one…
Corey Huntley
  • 101
  • 1
  • 7
5
votes
2 answers

What is the correct format to use Unique in _sql_constraints in OpenERP?

I have tried unique in sql_constaints in OpenERP(Odoo) using two different methods using flower brackets {} or square brackets []. Both works fine. Which one is correct? _sql_constraints = { ('email_uniq', 'unique(email)', ' Please enter Unique…
Tintumon M
  • 1,156
  • 2
  • 14
  • 36
5
votes
1 answer

How can I hide a standard report from the print button pull down menu list on Odoo 8?

I have replaced a report from the odoo stock module with my own version. How can I hide the standard odoo report from the pull down menu list of the print button. I want to do it without deleting the standard report? I have tried, unsuccessfully,…
user2460152
  • 105
  • 1
  • 3
  • 5
5
votes
1 answer

Using function in domain filter

I want to load subject ids in my module related to lecturer id. I use api onchange as follows. @api.onchange('lecturer_id') def _onchange_lecturer(self): if self.lecturer_id: sub_id =[] a = [] lecturer =…
Chamal
  • 235
  • 1
  • 7
  • 13
5
votes
2 answers

Odoo Restrict access to database Manager page

How can I restrict access to database Manager page, by a password, for Odoo / OpenERP? So only master admin can see this page. I found a good module…
iouhammi
  • 1,108
  • 15
  • 29