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

How can I remove "Powered by Odoo" on odoo 8.0 (OpenERP)?

How can I remove "Powered by Odoo" on odoo 8.0 (OpenERP) ?
Ayyappadhas
  • 330
  • 1
  • 2
  • 9
3
votes
1 answer

How to sum other columns when using "Group by" in a Tree View?

I have a custom module with three different amount fields for money: Total a pagar is a float field Total pendiente and Total pagado are calculated from functions This is how my Tree View looks like: When using a group by filter, I want to show…
César
  • 9,939
  • 6
  • 53
  • 74
3
votes
1 answer

I want to add 'show more comments..' button in my odoo | openerp module

I am working in one of the odoo | openerp module. However in my module comments section displays all the comments on page. So i wanted to add show more comment button. Here is my view content:
user4130410
3
votes
2 answers

Ability to distinguish server OpenERP/Odoo version

I'm developing mobile app that has to be able work with either 7 and 8 version protocols through raw json rpc requests. And after few hours of searches I'm still curious, how to determine which version of OpenERP/Odoo server uses? Any ideas or may…
Metaphore
  • 749
  • 1
  • 7
  • 15
3
votes
1 answer

Inheritance of customized module in Odoo

I'm trying to create a module (project_photo) for uploading photos related to customer projects with a button next to "Documents": Since I need the photo count for each project, I'm inheriting the project.project module so I can add the photo_count…
César
  • 9,939
  • 6
  • 53
  • 74
3
votes
3 answers

Import products into odoo (openerp)

I would like to import some products into odoo/openerp for the point of sale module. Howewer I have a category called "Chalet" which is not found during import. Where can I find the external id of the product category? This is the .csv which I would…
joelschmid
  • 828
  • 1
  • 16
  • 32
2
votes
2 answers

Generating a sequence using a field value of other class in the same model file

I am trying to create a sequence that would be on the form_serial_no field of a formdownload model at the click of save button. This form_serial_no field will pick the company_short_code field of companyname model in the same models.py file and…
Ropo
  • 144
  • 1
  • 13
2
votes
3 answers

ImportError: No module named psycogreen.gevent

I tried run odoo 8 instance with workers=1, but i getting this error. ImportError: No module named psycogreen.gevent. I have tried so many tutorial to resolve this. nothing works. Please suggest any solution.
KbiR
  • 4,047
  • 6
  • 37
  • 103
2
votes
1 answer

How to install multiple odoo 10 instances with subdomain filtering on CentOs

I have been stuck with installing mutiple odoo 10n instances on a server with subdomain filtering, for example: xxxx.mydomain.com: an odoo instance installed at /opt/xxxx/ yyyy.mydomain.com: an odoo instance installed at /opt/yyyy/ To be more…
Joel
  • 57
  • 2
  • 10
2
votes
2 answers

Add sheet tag inside form tag using xpath odoo 8

I need add tag inside
using xpath. I have tried below code: The sheet added but after the form tag. How can i do it?
KbiR
  • 4,047
  • 6
  • 37
  • 103
2
votes
0 answers

Hide some groups from Access Rights page in res.users

I need to hide default Access Rights groups in res.users page. I have tried to hide these groups by create a new group and assign to it but didn't work. I tried
KbiR
  • 4,047
  • 6
  • 37
  • 103
2
votes
1 answer

AccessError when users edit many2one field in custom module

I created a custom module to add some fields into Partner data. Everything seems to work well but no admin users can't edit many2one fields. It shows the following message (as if any permissions configurations were wrong with that model): After…
Ler VS.
  • 65
  • 4
2
votes
2 answers

How self in odoo represent more than one class instance using normal traditional python class definition and iterate over them using for i in self

I was confused when I wrote my question, I felt that it was a vague question for some readers. So I rewrote the question again to be clear ? I learned object oriented programming using Java. My knowledge about self in python that it's like this in…
2
votes
0 answers

How to make an Odoo addons(module) installation

How to make an Odoo addons(module) installation without manually copy and pasting the created module to addons_path directory. Is it possible? I searched possible solutions Using pip to package and install Odoo addons Using odoo-autodiscover Does…
Andoy Abarquez
  • 1,119
  • 4
  • 17
  • 30
2
votes
2 answers

Display list of values in sale order form

I'm able to extend the sale order view and add 2 static fields. My code is like this: class MysaleOrder(models.Model): _inherit = 'sale.order' rule_name=fields.Char('Règle') rule_total = fields.Float('Montant de…
Oumar Diarra
  • 355
  • 4
  • 16