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

What is the correct format to use Unique in _sql_constraints in OpenERP?

I have tried unique in sql_constaints in OpenERP(Odoo) using two different methods using flower brackets {} or square brackets []. Both works fine. Which one is correct? _sql_constraints = { ('email_uniq', 'unique(email)', ' Please enter Unique…
Tintumon M
  • 1,156
  • 2
  • 14
  • 36
5
votes
2 answers

What do I return for function field value?

I have a function field, but I don't know what should the function return. Here's my code: the function: def _property_expense_preset_expenses(self, cr, uid, ids, expenses, arg, context): spus = self.browse(cr, uid, ids) _spu = False for…
William Wino
  • 3,599
  • 7
  • 38
  • 61
5
votes
2 answers

How to add autoincremental field in OpenERP 7?

I searched and modified the source code of a simple custom module of openerp, I give the code below init.py import sim openerp.py { 'name': 'Student Information Management', 'version': '0.1', 'category': 'Tools', 'description': """This module is…
Praveen Srinivasan
  • 1,562
  • 4
  • 25
  • 52
5
votes
1 answer

OpenERP 7 How to give users access to custom module in OpenERP 7?

I have developed a custom Module in OpenERP 7, My administrator user can only see this module. 1-How can I give access to normal users to my custom modules? 2-What are the steps to solve this problem. Please give a detailed example.
MJ X
  • 8,506
  • 12
  • 74
  • 99
4
votes
1 answer

How to add entry to 'More' menu or top menu to add action on multiple selections?

Goal I want to create delivery from a selection of order lines, but I can't get the button to appear. Module compose_delivery_order/ ├── delivery_order_button.py ├── delivery_order_button.xml ├── images/ │   └── delivery_order_button.png ├──…
Édouard Lopez
  • 40,270
  • 28
  • 126
  • 178
4
votes
1 answer

error: python-dateutil 1.5 is installed but python-dateutil>=2.4.0 is required by set(['vobject'])

I am new to OpenERP-7.0 and already installed python-dateutil_2.4.0 version. How to fix it please.
BERARM
  • 247
  • 1
  • 6
  • 14
4
votes
3 answers

Calculate total days from two dates in python openerp

I have three fields start_date, end_date and total_days. If i enter start_date and end_date field it should automatically display total_days. This is my Function which is not working.
iam supreeth
  • 497
  • 4
  • 16
4
votes
3 answers

In OpenERP, What is the difference between "send a message" and "log a note"?

In OpenERP, What is the difference between "send a message" and "log a note". I found two option "send a message" and "log a note" in form view under Leads, Quotations, Sales Orders, etc., You'll find it. What is the difference between them and what…
Tintumon M
  • 1,156
  • 2
  • 14
  • 36
4
votes
3 answers

How do I make a class (that already exist) inherit another class?

For example class res.partner. I want res.partner to inherit class A. How do I do that? I don't think this will work: class custom_res_partner(osv.osv): _name = "res.partner" _inherit = "A" custom_res_partner()
William Wino
  • 3,599
  • 7
  • 38
  • 61
4
votes
1 answer

How to expand and collapse a menu in OpenERP?

Is there any module to expand or collapse the sidebar-menus in OpenERP 7. or how can we do this in OpenERP 7.
iam supreeth
  • 497
  • 4
  • 16
4
votes
3 answers

openERP function for validate date range

I have two fields in my module,(start_date and end_date). I want to validate the date range as end_date must be greater than start_date and display error message like "End Date Should be greater than Start Date" This is mu cord. from openerp.osv…
Chamal
  • 235
  • 1
  • 7
  • 13
4
votes
1 answer

Keeping custom module synced in OpenERP7

SO i'm using Open ERP 7 and wanted to make a custom module. I've put everything into PyCharm to edit parts there, but sometimes I edit some forms or add some fields with in OpenERP itself under the Database structure. Any changes I make under the…
RandomPerson
  • 790
  • 2
  • 8
  • 29
4
votes
1 answer

Yum not installing certain packages on CentOS 7

I have been trying to solve this problem, but no luck. I am trying to install OpenERP 7.0 on CentOS 7. I am following this link I am unable to install python required packages. When i gave the python installation packages i.e. yum -y install…
iam supreeth
  • 497
  • 4
  • 16
4
votes
1 answer

How do you run the Openerp 7 built in unit tests?

How do you run the unit tests for the built in modules? I've tried starting the server with: ./openerp-server -c /path/to/config -d my_database -u stock --log-level=test but nothing shows up in the logs. In my config, I've also tried…
frodo2975
  • 10,340
  • 3
  • 34
  • 41
4
votes
2 answers

Change Logo and Powered by OpenERP on Openerp 7 login page

I am doing Customization on OpenERP 7. I want to change the Login page of Openerp. I want to replace the "Powered by OpenERP" to "Powered by ABCXYZ" and when we click on it should redirect to https://www.ABCXYZ.com And also I want to change the Logo…
Ramesh Somalagari
  • 525
  • 3
  • 11
  • 35
1
2
3
58 59