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

How can I disable many2many_tags widget from having create and edit?

I have something like this: When I edit the many2many_tags has a create and edit option. But since I'm dealing with weekdays I just have a…
Kit Sunde
  • 35,972
  • 25
  • 125
  • 179
0
votes
1 answer

Hide the Form View in OpenErp (formally as Odoo)

How can I hide the Form View Based on User Access I have created one user (student) in school Management System in openerp. The Admin user is the default user in OpenErp. Admin have all the access rights to acees the Tree view and Form View while…
DASADIYA CHAITANYA
  • 2,850
  • 3
  • 18
  • 41
0
votes
1 answer

OpenERP OSError: [Errno 13] Permission denied: '/.local'

I have a OpenERP from code (git repo) in my server in path /home/openerp/openerp and /home/openerp is home of openerp user, I'm using uwsgi and if I use: uwsgi --ini myconf.ini --http 80 it's work but when I use supervisord for start uwsgi it has a…
user2006656
0
votes
2 answers

Install Odoo V8 on ubuntu?

What is the step-by-step process to install Odoo on Ubuntu platform? Also, what is major difference between OpenERP and Odoo?
user3729500
0
votes
2 answers

How to ForceDownload a file in OPENERP

I'm generating a pdf and storing it on my server using Openerp.Can any one please tell me how to Force Download that file using Openerp.If can upload the pdf using fields.binary and download it automatically.But i don't want to store the file in…
nitesh
  • 266
  • 3
  • 18
0
votes
3 answers

Could not find client action (openERP 8/Odoo)

I was trying to follow this guide of building a web-module: https://doc.openerp.com/trunk/web/module/ I created the following files according to guide: // static/src/js/first_module.js openerp.web_example = function (instance) { …
Tumetsu
  • 1,661
  • 2
  • 17
  • 29
0
votes
1 answer

How to restrict entires for one2many field in Openerp

When i creating Quotation i need to give only 2 Orderline items.How to restrict them to only 2 entries.Can any one help me? Thank's in advance
nitesh
  • 266
  • 3
  • 18
0
votes
1 answer

Run two Instances of OpenERP 8

I want to run two instances of OpenERP but once the first one is running I don't know why the second one access to the files of the first one, like ir_http.py from the first one. I noticed that it changes the directory, I did some debug on the files…
ocespedes
  • 1,233
  • 4
  • 14
  • 27
0
votes
2 answers

sale order/create all leads :Can't create Sales Orders

hello user belong to Sales /create all leads and can't create sale order for other Salesperson admin user can create sale orders of other salesperson
m3asmi
  • 1,252
  • 1
  • 16
  • 36
0
votes
1 answer

Connect OpenERP with mysql using cr?

I would like to get some data from mysql in OpenERP. In one way I can do it like that: #!/usr/bin/python import MySQLdb # connect db = MySQLdb.connect(host="localhost", user="appuser", passwd="", db="onco") cursor = db.cursor() # execute SQL…
user2529782
0
votes
0 answers

Report translation sales order/ quotation not working

I have added this code to the sale module sale -> i18n -> nl.po but it's not translated in the report/pdf file #. module: sale #: report:sale.order:0 msgid "Disc.(%)" msgstr "Krt. (%)" #. module: sale #: view:sale.report:0 #:…
Atul Jain
  • 1,053
  • 11
  • 36
0
votes
0 answers

OpenERP New column not showing up in DB Table

I am trying to access the field manufacturer_pref from the product.product table from the purchase order report. This is the module that created the field : class product_product(osv.osv): _inherit = 'product.product' _columns = { …
Mobidoy
  • 353
  • 1
  • 3
  • 11
0
votes
1 answer

How do I make a new tree view for res.partner without inheriting the default tree?

I need to make an alternate tree view for res.partner. This is my code CUSTOM res.partner
William Wino
  • 3,599
  • 7
  • 38
  • 61
0
votes
1 answer

how to create a column for a dynamic openERP field?

I have been working on dynamic fields for my OpenERP-7 module. My field is not storing the data entered to it . I think for that I will have to create a column for it . So that it will start storing the records. But I dont have any idea to create a…
Arsalan Sherwani
  • 889
  • 2
  • 25
  • 60
0
votes
1 answer

How to integrate Magento with OpenERP v8 (Odoo)

How to integrate the Maganto connector with OpenERP v8 (Odoo). I am trying to install it but it raises the error below. I also tried it with the addons path. The `web` module is provided by the addons found in the `openerp-web` project. Maybe you…
Atul Jain
  • 1,053
  • 11
  • 36
1 2 3
30
31