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

Run OpenERP 7 unittests in PyCharm

I can run unit tests of my OpenERP v7 add-on as described here. In PyCharm I did it by adding a Python configuration in Run/Debug Configuration as follows: Script: /home/juliocesar/work/projects/my_project/openerp-server Script…
juliocesar
  • 5,706
  • 8
  • 44
  • 63
37
votes
0 answers

View Product Quantity based on Base UoM and Purchase UoM in OpenERP 7

I am using different units of measure for the same products. Say 1 mL as a base unit of measure, 1 Litre can as purchase unit of measure. Is it possible in OpenERP7 to view the product quantity based on both UoMs? For example, if I buy 5…
Umar Ibrahim
  • 391
  • 2
  • 5
10
votes
3 answers

Odoo/OpenERP: hiding create button from treeview

I have a situation here. I am using OpenERP 7. I am trying to hide Create button from tree view of my products. this can be done using
Saghir A. Khatri
  • 3,429
  • 6
  • 45
  • 76
9
votes
1 answer

Odoo - Write null to numeric column

In Odoo/OpenERP 7, I have a nullable numeric column called balance 'balance': fields.float(string='Balance',digits=(20,2)) I am trying to use Python code to update None into the field self.write(cr, uid, [1], { 'balance':None }) but, rather…
Daryl Van Sittert
  • 857
  • 12
  • 24
8
votes
2 answers

binary field download link use in treeview or listview inside one2many field in Odoo

I'm using Odoo 8 version. I have created a new model called enquiry_customer_date In that model, I have set following four fields. partner_id (many2one), enquiry_date (date), file_name (char) and excel_file (binary) I have given mention model…
Bhavesh Odedra
  • 10,990
  • 12
  • 33
  • 58
8
votes
4 answers

table can have at most 1600 columns in postgres openerp

In my open-erp application I am getting error below: 2015-04-01 09:35:55,959 4169 ERROR new_db openerp.sql_db: bad query: ALTER TABLE "product_product" ADD COLUMN "location" VARCHAR Traceback (most recent call last): File…
user88
  • 1,174
  • 3
  • 27
  • 51
7
votes
1 answer

Openerp create() method returning new recordset ID but not updating database

I am developing a webservice in OpenERP 7 that create a new partner on the res_partner table with a POST method. My problem is that the create() method return me the new object ID, but the database is not updated. Here is my…
Tales Pádua
  • 1,331
  • 1
  • 16
  • 36
7
votes
2 answers

Pop up the window of exsiting view through click event in odoo

I have created a button in jobs by using inheritance in (hr.recruitment form view) , how could I open another module("Resumes and Letters -sub menu in Human Resource " ) form_view during buttons click event is done.my aim is that I just want open…
PKS ks
  • 116
  • 1
  • 3
  • 8
7
votes
1 answer

Difference between _sql_constraints and _constraints on OpenERP/Odoo?

I noticed there are 2 kinds of constraints on Odoo ERP. But I want to know what is the difference between _sql_constraints vs _constraints? _sql_constraints = { ('email_uniq', 'unique(email)', ' Please enter Unique Email…
user3291766
  • 133
  • 1
  • 8
7
votes
3 answers

What is the difference between OpenERP and Odoo?

What all are the difference between OpenERP and Odoo. I know Odoo(v8) is lastest version of OpenERP(v7) and also explain something about Odoo V9. Here difference in the sense it means what are all the additional feature available in Odoo and also…
Tintumon M
  • 1,156
  • 2
  • 14
  • 36
6
votes
1 answer

how to integrate Odoo with MySQL

I am trying to integrate Odoo(openerp-8) with MySQL on ubuntu server, to get the database access instead of postgresql. But I am unable to figure out the correct way to do that. I tried this link, but it didn't help…
Knight
  • 363
  • 2
  • 7
  • 24
6
votes
2 answers

Make a functional field editable in Openerp?

How to make functional field editable in Openerp? When we create 'capname': fields.function( _convert_capital, string='Display Name', type='char', store=True ), This will be displayed has read-only and we can't able to edit the text. How we…
Tintumon M
  • 1,156
  • 2
  • 14
  • 36
6
votes
6 answers

How to check if one2many field is empty in openerp xml views

I'm trying to make some field invisible if another field ( which is one2many ) has no value ( is empty). I'm trying something like Also tried
priyankarani
  • 91
  • 1
  • 2
  • 5
6
votes
4 answers

how to display openerp error message

In my student module I inherited res.partner. And I want to restrict to modify name in partner view if partner is a student. here is my cord. from openerp.osv import osv, fields class res_partner(osv.Model): _inherit = 'res.partner' …
Chamal
  • 235
  • 1
  • 7
  • 13
5
votes
4 answers

How to use related fields (fields.related) in odoo-8?

I am trying to retrieve comment field(customer internal notes) from res_partner to account invoice module.Right now I just want to print it later I will include it in xml code. I tried in three ways like this, 1)comment2 =…
Kiran
  • 1,481
  • 6
  • 36
  • 66
1
2 3
58 59