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

how can i add a report record in openerp odoo?

I'm using OpenERP 8 odoo and I'm following the report creation tutorial but I get stuck at where i can but the report record code for example:
Hannah
  • 65
  • 1
  • 9
0
votes
1 answer

Pentaho Report Installation Issue For Odoo 8.0 in Ubuntu

I am in stuck with the installation of the pentaho For odoo 8.0 in Ubuntu 12.04.5 LTS. I have dowloaded the pentaho report module from the following links for git CLICK TO DOWNLOAD FROM THE GIT And install successfully from my ODOO 8.0 With…
DASADIYA CHAITANYA
  • 2,850
  • 3
  • 18
  • 41
0
votes
2 answers

Setting BoM type to set/phantom in odoo 8

I would like to invoice BoM products and from what I've seen this is really easy in odoo 7.0 , where you can set BoM type to phantom/set. However, in the newest version (8.0 for windows) there are only two types of BoM : normal and set. Neither…
Mikel
  • 466
  • 3
  • 16
0
votes
0 answers

changing port number but email still sent with older port in link

I changed the port from 8069 to 8070 using these iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8069 and then also in config.py I changed the port to 8070. It works with one exception. All the emails like password…
Asim Zaidi
  • 27,016
  • 49
  • 132
  • 221
0
votes
0 answers

OpenERP - Smsclient module

I try to install this module on Odoo https://apps.openerp.com/apps/7.0/smsclient/ but it fails during the installation, so i can't even try it as an sms solution for Odoo. Did anybody manage to install it? Or can suggest me another module to send…
MarBVI
  • 811
  • 2
  • 12
  • 34
0
votes
1 answer

add custom field that I already created to Invoice in OpenERP

I had created a new field in res.partner Model using this code and modified the form view of Partner to display the new field, and it worked very well. Now I am trying to refer to the new field in the Invoice View and make it get added to the Print…
0
votes
1 answer

How can i remove bitnami symbol and link from odoo pages?

Odoo 8 - We are installed odoo 8 in aws 2 server using bitnami we got the bitnami symbol and link in my odoo pages how can remove the bitnami from my odoo 8 ?? if u know please share ur valuable suggestions
0
votes
4 answers

different view form for edit and create in odoo

I'd like to know is it possible to have different form views for edit mode and create mode in odoo ? Actually I just want to hide some elements in create mode and show it in edit mode. I've tried to using attrs like :
qatz
  • 163
  • 2
  • 12
0
votes
1 answer

I defined a form view as primary inheriting of the regular one, but it's not showing up. Why?

I'm trying to create a special form view for an act_window but instead it's showing the regular one. This is what I've done: mrp.bom.master
Kit Sunde
  • 35,972
  • 25
  • 125
  • 179
0
votes
1 answer

Why would I get python UnboundLocalError when calling super()?

My class is simply this: from openerp import tools from openerp.osv import osv, fields import requests import logging import json _logger = logging.getLogger(__name__) class stock_move(osv.Model): _inherit = 'stock.move' def create(self,…
glimmertea
  • 189
  • 2
  • 11
0
votes
1 answer

Where is the directory for openERP on mac OS?

I am installing openERP following the manual in [1]: http://netbeam.in/blog/install-openerp-on-mac-osx/ I execute the next command: tar tvfz openerp-7.0-latest.tar.gz Before is supossed that I will execute: sudo mv openerp_XXXXXX to home…
Benja Garrido
  • 701
  • 1
  • 5
  • 17
0
votes
1 answer

Add Custome Field Error : Field does not exist openerp

Am trying to create a module that add some fields to product module . i did the structure very well which i create "init.py , openerp.py , product_rolls_code.py , product_rolls_code_view.xml " . After i run the Odoo , i get error : Field…
0
votes
3 answers

Odoo v8 server won't start from eclipse

I am trying to start Odoo v8 server from Eclipse ide. I have set the debug configurations and have given the config file path in the arguments as -c /etc/odoo-server.conf. When I do debug as python run, I do not get any error. The log file also…
Hassan Zaheer
  • 1,361
  • 2
  • 20
  • 34
0
votes
1 answer

How can I extend web module in OpenERP

In web module (addons/web) exist all of the routes (many of them) in Openerp, for example: / /web /web/login etc. But I want to extend the web module to create other ways (routes) of clients registration. I created a module web_aaa (for…
0
votes
2 answers

Compare dates in openerp 7

I have a custom module in openerp 7 with fields check-in time(date-time) and check-out time(date-time). When I click on save, i want to perform a validation on both fields to ensure check-out time is not less than check-in time. Thanks for any…