Questions tagged [openerp-8]

OpenERP is an open-source enterprise resource planning (ERP) software actively programmed, supported, and organized by OpenERP S.A. OpenERP is an open source alternative to SAP ERP, Oracle E-Business Suite, Microsoft Dynamics, Netsuite, Adempiere, Compiere, OFBiz, Openbravo, and other enterprise resource planning software.

OpenERP 8.0 is the upcoming release version. In this version some modifications are in the database table, base class, and it adds some new modules. So OpenERP 8.0 related question/answer welcome.

Web application architecture:

The most recent versions of OpenERP (including version 7) are mostly implemented as a web application. OpenERP includes an application server/web server (known as the OpenERP Server) that focuses on ERP business logic, stores data through an interface with a database, and a web client for web browser access. The server and business logic portion of OpenERP is primarily written in the Python programming language. The web client is primarily written in JavaScript.

Modules:

Business features are organized into modules. A module is a folder with a predefined structure containing Python code and XML files. A module defines data structure, forms, reports, menus, procedures, work-flows, etc. Modules can also contain web components written in JavaScript.

Database:

OpenERP uses PostgreSQL as database management system.

OpenERP applications:

OpenERP S.A. provides a web site referencing the officially supported modules as well as contribution modules. Contribution modules can be referenced for free as long as they respect some submission rules. As of November 2012, the number of OpenERP applications reached more than 2500.

Development environment:

Module development mainly relies around editable Python and XML files.

465 questions
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
6 answers

How to do debugging in odoo on browser

How to debug in "Odoo" special in browses like Chrome and Firefox??? Would anybody provide information, it will be great. Thanks in advance
user1576199
  • 3,217
  • 3
  • 20
  • 32
6
votes
2 answers

Odoo - log archiving?

In older versions log archiving was on default and it would archive (mv older log to different log file) daily and kept archives for a week or so. Now on Odoo version 8, it puts everything on one log file and after some time it grows very big. It…
Andrius
  • 19,658
  • 37
  • 143
  • 243
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

odoo one2many default not set

I wrote a wizard which form view should show a one2many field with rows taken from context['active_ids']. I set the one2many default correctly, but when the form opens, no rows are showed. Did I miss anything? (I apologize for code bad…
Alessandro Ruffolo
  • 1,575
  • 1
  • 16
  • 34
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

QWebException: "'NoneType' object is not callable" while evaluating

im facing a problem in qweb report, i followed this tutorial http://blog.emiprotechnologies.com/create-qweb-report-odoo/ to create qweb report, it worked fine with the static data of my current module, but when i try to create a parser class for…
Hassan Wh
  • 97
  • 3
  • 13
5
votes
1 answer

How to hide field depend on condition odoo?

attrs="{'invisible': [('rule_id.type_test', '!=', 'A')]}" in code above not work, how i can fix this? class test_list(models.Model): _name = 'test.list' type_test = fields.Selection([('A', 'aaaa'),('B','bbbbb')], default='A',…
Astr0
  • 113
  • 1
  • 2
  • 5
5
votes
3 answers

How can I remove the space between header and body in PDF report?

I've customized my sales report to look from this: To this: I commented the code section that shows the company information inside external_layout_header view:
César
  • 9,939
  • 6
  • 53
  • 74
4
votes
1 answer

Odoo qWebException

When I add to my templates I get the following error QWebException: "'NoneType' object has no attribute 'name'" while evaluating 'res_company.name' the template code: