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
4
votes
1 answer

How I can make specific group of users see export/import?

Is there a way to make a specific group of users see export/import
Astr0
  • 113
  • 1
  • 2
  • 5
4
votes
2 answers

Odoo 8 - records browse equivalent with new api?

I read Odoo 8 new api documentation, but could not find it (if there is any). How to directly browse record/records with new api, when you have that models id/ids? For example let say I want to browse res.partner model and have list of ids: ids =…
Andrius
  • 19,658
  • 37
  • 143
  • 243
4
votes
1 answer

Response time is delayed when we have multiple requests in oodo server or openerp?

My Openerp version is 8.0. I am very new to the openerp module.My problem is that if i hit the server with the multiple requests I am getting the response after completion of the all the requests processing, to all the requests. What I want from…
bhadram
  • 714
  • 2
  • 8
  • 22
4
votes
6 answers

How to remove the Powered by Odoo #1 Open Source eCommerce footer from front end of Odoo 8?

How do you remove the backlinks from the public front end of Odoo 8? Location: lower right corner of the page, in the footer. HTML Code:
Powered by
Chris Coleman
  • 496
  • 1
  • 5
  • 9
4
votes
1 answer

odoo / OpenERP V8 - Tutorial on QWeb Reports

I am trying to start with odoo. One of the most import thing for us would be to generate different layout for sale orders. I've started with this document: https://github.com/odoo/odoodays-2014/blob/master/v8_reporting_engine/index.rst It is from…
bernhardrusch
  • 11,670
  • 12
  • 48
  • 59
3
votes
0 answers

Odoo 8: Many2One from computed value

I Have data coming in to my model from an external source. The 'Log' model takes an employee ID, a log message and a timestamp. In some cases, a location ID (refering to res.partner, for a delivery address) is contained within the log message. I use…
Arno
  • 305
  • 3
  • 14
3
votes
1 answer

How to create and show image in odoo

I need help about error in odoo. I have created models and xml for image in odoo. this is my models class Test(osv.osv): _name = "digital.test" _description = "Test" _columns = { 'Servicename': fields.char('Service Name'), 'prodescription':…
Ken Kaneki
  • 125
  • 5
  • 15
3
votes
1 answer

How to override create methode in odoo 10

i want to use same create method in odoo 10 as below means i want to convert below code in odoo 10, below code is working well for odoo 8 def create(self, cr, uid, vals, context=None): phase_obj = self.pool.get('hr_evaluation.plan.phase') …
M Tahir Noor
  • 443
  • 2
  • 10
  • 31
3
votes
0 answers

Odoo inheritance and (lack of) polymorphism

I would like to construct an object (objA), which over the course of its existence takes on many different types of status (objB). However, each different type of status is its own beast which varies depending on its type (type1, type2, type3,…
BenSmith
  • 163
  • 1
  • 9
3
votes
2 answers

Odoo do not add new XML file after module update

I have a module already installed inside my project with a couple of new tables. Now, I want to add XML associated with these tables to create menu items. In my openerp.py, I had this code: 'data': ['main.xml', 'security/ir.model.access.csv'] Now,…
Gabriel Robert
  • 3,012
  • 2
  • 18
  • 36
3
votes
2 answers

How to remove "Create: option in search view opened after clicking Search view in odoo 8?

How to remove the create option that appears in "search more" view. I tried with no_create and few things, but did not help. Anyone have any idea on this?
Shravy
  • 656
  • 1
  • 23
  • 61
3
votes
2 answers

Odoo - access to a field from xml when demo creation

I am developing a module in Odoo. I overload by delegation the class "project.task" form Project module of Odoo. py file class Intervention(models.Model): _name = "module.intervention" _inherits = { "project.task": "task_id" …
olive007
  • 760
  • 1
  • 12
  • 32
3
votes
2 answers

How to insert one2many values in odoo using xml-rpc

Currently I am using odoo 8.0. Actually I am creating the product using the XML-RPC API. Here the code for creating the product from xml-rpc using php. $url = "http://localhost:8069"; $db = "xmlcreate"; $username = "admin"; $password =…
balaraman
  • 397
  • 1
  • 7
  • 21
3
votes
2 answers

Multiple Colors in Odoo Tree View

Good Day! I just want to have a multiple color in tree view in Odoo, This will show if a Record state == approved colors is blue state == post colors is red Right now I only have a one color in Approved State. Many Thanks for the Help!!
Black and White
  • 452
  • 1
  • 9
  • 32
3
votes
2 answers

How to migrate an Openerp v7 database to Odoo v8?

I have a dump file of database backup(openerp-7). Now I want to continue my work in Odoo, the database is in openerp-7 format so I am not able to restore it in Odoo. How to convert this database to Odoo version in order to start working on it?
Kiran
  • 1,481
  • 6
  • 36
  • 66
1 2
3
30 31