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

How to inherit crm.lead to my custom module in openerp

I'm trying to inherit crm.lead into my custom module.Following is my code lead.py from osv import osv from osv import fields class res_partner(osv.osv): _name = _inherit = 'crm.lead' _description = "adding fields to crm.lead" _coloumns = { …
nitesh
  • 266
  • 3
  • 18
0
votes
1 answer

how to calculate no of days between two dates using with onchange function in openerp?

I've created a custom field called caldays in payslip screen and in this field I want to get days between from_date and to_date in openerp with onchange function please help me with code I got below code but how can I put it onchange function datej…
keshav
  • 11
  • 1
  • 6
0
votes
2 answers

Need to disable more that 10 Fields in Openerp

I have created a new module and added 10 fields to it.Now i should be able to enter only 5 fields first and on payment i should be able to enter next 5 fields.Can anyone please help me. I want my sales person to enter only Basic Details first(like…
nitesh
  • 266
  • 3
  • 18
0
votes
2 answers

openerp create database error

I am getting following error while creating a new database in openerp. kindly suggest how to proceed? OpenERP WebClient Error Client Traceback (most recent call last): File "C:\Program Files (x86)\OpenERP…
Vaibhav
  • 65
  • 6
0
votes
1 answer

Openerp Product Description

I have created a module for adding custom fields to product module. I would like to know how to add those fields values into the product description, right now product description takes the name by default.
S3dy
  • 1
0
votes
2 answers

Where is openerp 7.0-20140117-002509-1 installed folder after installation of openerp7.0?

I have installed openerp 7.0 in Ubuntu 12.04, after installed the openerp 7.0 i am seeking that openerp 7.0/server/addons folder to install new module but i can't find the correct path/location Could any one help me to solve this problem please....
Santhosh
  • 1
  • 2
0
votes
0 answers

get purchase order field value automatically from sale order

I am new to openerp v7, I want to automatically get the value of a field (a field which I have created) in a purchase order. Considering: in both sale order and purchase order form I have created the field and displayed it All my products have…
0
votes
0 answers

OpenERP7.0 form_view_ref can't ref inherit view

The above records in my definition of…
luckbo
  • 11
  • 3
0
votes
1 answer

How to attach zip file in email at OpenERP?

I want to attach Zip file in openerp. I see purchase order like that pdf is auto attached when the email widzard form is coming. But No idea how to create Email Widzard with attached file. I can create Zip file at backend but no idea how to put…
0
votes
1 answer

Generate Purchase From the sale order,

1.so inherit here sale order and m2o field for po but it has given me error i.e except_orm:Programming Error There is no reference available for purchase.order 2.I also want to subtract purchase order subtotal price from the sale order subtotal…
Atul Jain
  • 1,053
  • 11
  • 36
0
votes
1 answer

Projects should show up only if the user is a team member in openERP

We are implementing openERP for internal functioning of our software company and we have this requirement where a person should see a project only if he/she is a team-member of that project.
coding_idiot
  • 13,526
  • 10
  • 65
  • 116
0
votes
3 answers

OpenERP Apps for more than 3 users

one month before i installed openerp 7 all in one version in windows, i have successfully installed the apps when i have user less then 3 but when i create more users and try to install more app openerp account ask for email and password after that…
-1
votes
1 answer

OperationalError: FATAL: role "...." does not exist

I have a server (Ubuntu 12.4) with Openerp 7 and postgresql. When I run openerp with this command : sudo service openerp start it works (I think it's called the daemon). So i tried to execute it "directly" with the executable file: sudo…
Kishiro
  • 131
  • 1
  • 2
  • 15
-1
votes
1 answer

Hide lines on tree view - openerp 7

I want to hide all lines (not only there cointaner) in sequence tree view (the default view). I must hide all lines if code != 'foo' but the attrs atribute don't work on tree views, so how can i filter/hide this? I don't have any code already,…
JoseSilva
  • 517
  • 5
  • 29
-1
votes
1 answer

[Openerp]How to make SQL Query with another database user from python code?

I need to make SQL Query in Openerp with another user than postgres from python code that has only SELECT privileges. Is there a way that cursor(cr) receives connection string?
Tomislav Brabec
  • 529
  • 2
  • 14
  • 20