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

Correct syntax to write to Odoo many2many field with php API

I am trying to update an existing sale.order by linking an existing invoice to it. I have tried several things to add the invoice id to the invoice_ids array of the sales order, but nothing is working. Here is my code: $link =…
user2846736
  • 71
  • 1
  • 4
2
votes
3 answers

How to skip demo data in Odoo instance

I'm using Odoo on ubuntu server, I want to skip the demo data, I tried the following way, but it does'nt help me out. --without-demo=True Then I deleted the demo xml files in __openerp__.py for CRM module, but there is still demo data in customers…
Knight
  • 363
  • 2
  • 7
  • 24
2
votes
2 answers

Which python version is recommended with odoo?

What is the recommended version of python to use with openerp/odoo? Is it 2.7 or 3 All these days I was using 2.7 if I choose ver 3 will it cause any problems?
Kiran
  • 1,481
  • 6
  • 36
  • 66
2
votes
0 answers

How to add 'available variables' in openerp salary rule python code?

Currently openerp salary rule has python code writing options where we can grab fields by predefined object (available variables). Like- contract.wage gets the value of basic salary field in contract. I want to add more variables for same purpose.…
2
votes
2 answers

Data Tables are not loading when i redirect my page using self.do_action in odoo(openERP7) qweb screen

When i redirect my page using self.do_action in odoo(openERP7) it is not loading Data Tables in the new page. In other pages it was working fine. But in a particular page if i redirect using this self.do_action is not working. But self.act_window is…
Vanjith
  • 520
  • 4
  • 23
2
votes
0 answers

"TypeError: self.records.find(...) is undefined" when selecting records in multiple pages in openERP 7

In my openERP screen Im getting "TypeError: self.records.find(...) is undefined" when selecting records in multiple pages. Im having a page with search button.If the results loaded for more than 1 page(80 records per page)and if I selected a…
Vanjith
  • 520
  • 4
  • 23
2
votes
1 answer

AssertionError: External ID must be fully qualified in odoo

I am working on Odoo CRM. I inherited CRM.lead I added some functionality I added new user roles to them. Admin thing is working fine when I given user roles which I created now it's throwing error. File ".........base/res/res_users.py", in…
2
votes
1 answer

How to import file on openerp 7?

I tried to import file to openerp 7 and I use the field binary but it doesn't give me the name of the file, just the content binary. How can I recover the file name?
2
votes
0 answers

Domain Filter is not working on many2many field in OpenERP 7.0

I have added new many2many fields into the wizard view and also put invoice filed of many2many fields Field on py file : 'sup_inv_entries':fields.many2many('account.invoice', 'sup_inv_rel', 'sup_inv_id1', 'sup_new_inv_id', 'Invoice…
DASADIYA CHAITANYA
  • 2,850
  • 3
  • 18
  • 41
2
votes
1 answer

Insert image encoded in base 64 in a word document with python-docx?

I use python-docx to generate word document. the user want that he create a template(in a field description) and when he write for example %(company_logo)s in the template, I replace this expression by the picture of the company that I recupered…
Kais Dkhili
  • 399
  • 1
  • 5
  • 18
2
votes
1 answer

OpenERP. Add image into field dynamically in a tree view

I am using v7 and I want to show in a tree view a field with image icons (like a semaphore) depending of other field values in the same row. Actually, I get the functionality I want with a function field and put the result as string but I really…
2
votes
0 answers

Can we create Security permission/access rights for each fields

I have users called Admin and Users. I given all access rights for admin. As i know we can give permissions for a table but not for particular fields. Is it possible to give permissions/access rights for fields? For Example: In table 'x' there…
iam supreeth
  • 497
  • 4
  • 16
2
votes
0 answers

How to refresh a particular div in a page that contains a dashboard?

I work with OpenEprp 7.0 and i want to refresh a particular div in a page that contains a dashboard. the code of the first part of the dashboard is the following:
Kais Dkhili
  • 399
  • 1
  • 5
  • 18
2
votes
1 answer

TypeError: 'int' object is not iterable in rml

I want to display for my report released in RML for openerp x columns from an array per page. For this I have done two function. The first will give the size of the table divided per x (=7 because I want to display 7 columns per page). And the…
2
votes
0 answers

ManyToMany relationship via XML-RPC JAVA

I'm using OpenERP 7.0 and I want to set a ManyToMany relationship between my objects in XML-RPC. According to the documentation (Unfortunately for Odoo 8.0) , I have to use special commands that permit to edit those relationships. For example to set…
GuiHash
  • 21
  • 1
  • 2