Questions tagged [openerp-7]

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.

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 web client for web browsers 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 Apps:

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 apps reached more than 2500.

Development environment:

Module development mainly relies around editing Python and XML files.

879 questions
0
votes
1 answer

no reference field 'parent_column' for 'object_child'

I'm new to OpenERP for a week now and I've been working on a module that I wanted to add into OpenERP. This is a part of the module I'm working on: class vehicle_details(osv.osv): _name = "work_order.vehicle_details" _description = "Vehicle…
Idzham
  • 15
  • 3
0
votes
1 answer

how to set name of multiple textbox in openerp using qweb template engine?

Here is my code: So here, Textbox are generated dynamically. Now I want to set textbox name to the value that is generated on
Jamin
  • 133
  • 12
0
votes
0 answers

How to change the OpenERP column limit in tables?

I have been working on OpenERP-7 module development and I have come across a very strange issue when adding new fields to my model. It says that I have exceeded the column limit for the tables. Now I want to either change this limit or what? When I…
Arsalan Sherwani
  • 889
  • 2
  • 25
  • 60
0
votes
2 answers

How can i validate for Creation of Lead in my Custom Module in Openerp

I have my custom module. When i create a new lead, it is validation for Subject (field name="name"), if that field is not filled we cannot create a Lead. But I want to create the Lead only if I enter either of Email or Phone number. How can I check…
nitesh
  • 266
  • 3
  • 18
0
votes
1 answer

openerp7.0 In what table of the database is the employee active status

In the Human Resources Module we go >> Employees >> HR Settings Tab >> Active [x] Active If we uncheck this the Employee is not visible any more in Openerp. He will not disappear from the DB but will not be visible any more in Openerp. If we take a…
user1986815
0
votes
1 answer

Filename stored in binary field in OpenERP 7.0

I've got a binary field and it works fine, but when I download the stored file, it has no extension. I specified 'pdf' extension, but it doesn't seems to work and I don't know why! Here's the code class exc(osv.osv): _name = "exc" _description =…
Nant
  • 41
  • 2
0
votes
3 answers

Custome module is not showing to users XML,CSV access rights issue

Hello Openerp Developers. I have created a custom module today, It's working fine when accessing by Admin, But module menu is not appear on top menu bar when access by other users. I created the access rights in security folder, I think I done some…
user2088432
  • 375
  • 1
  • 4
  • 17
0
votes
2 answers

Customer Invoice validate button

I have created a button named 'Confirm' in customer invoice. When i click 'Confirm' button 'state1' will be 'confirmed'. I want to hide Validate button when 'state1'='draft' and show the Validate button when 'state1'='confirmed'. I tried below code…
sajadkk
  • 764
  • 1
  • 5
  • 19
0
votes
1 answer

How to stop openerp 7 from redirecting to message tab after installing or upgrading a module

I was wondering how to stop openerp- 7 from redirecting to message tab after I installed a module, im developing a module every time I want to test the module I have to go to settings > installed modules > search for the module and upgrade this is…
0
votes
2 answers

add customize field in openerp 7, but no result

I'm trying to customize customer form in my openerp by adding 1 field (ex. Hobby field), I've already make __init__.py, __openerp__.py, customer_inher.py, customer_inher_view.xml, but nothing changed. I use Openerp 7 and Windows 7, please check my…
wasis
  • 39
  • 1
  • 2
  • 9
0
votes
1 answer

Error when I'm trying to create opportunity when converting lead to opportunity in my custom module in OpenERP

I successfully inherited the CRM module into my custom module. Now I need to convert lead to opportunity and schedule a call.I'm getting the following error when I try to convert Lead to opportunity. Error: Client Traceback (most recent call last): …
nitesh
  • 266
  • 3
  • 18
0
votes
1 answer

I need to show Tree view instead of Form view after i inherit CRM Module to my Custom Module in Openerp

I had successfully inherited the CRM module into my custom module.I'm able to view the Form view but i need to show Tree view first.When i click Lead button in the main menu i'm able to show the form view (like in img1), but i need to show the tree…
nitesh
  • 266
  • 3
  • 18
0
votes
1 answer

OpenERP bug fixing / testing process

What is the authentic way to fix bug / test openerp modules.
0
votes
1 answer

No database selection openerp connection

I imported a database through psql interface, the database exists but on the OpenERP connection interface, the database imported is not listed. What should I do to get the database imported listed in the connection interface of OpenERP ?? Cheers
renard
  • 1,368
  • 6
  • 20
  • 40
0
votes
1 answer

Master-detail relation, variable scope, passing variables, etc in openerp

I'm writing a warehouse management module and I came to the inventory step. I need to make an inventory every now and then for each warehouse separately and each inventory operation will be kept in the database as a master-detail relation, ie:…
Ehab
  • 566
  • 6
  • 24