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
3
votes
3 answers

How to convert a SXW file into a RML file through openerp_sxw2rml.py?

I am trying to convert a SXW file into a RML file, using openerp_sxw2rml.py, but it is giving too errors and it is generating an empty RML file. I am sure that the content of the SXW is right, because I am using existing SXW files from the OpenERP…
forvas
  • 9,801
  • 7
  • 62
  • 158
3
votes
2 answers

Ability to distinguish server OpenERP/Odoo version

I'm developing mobile app that has to be able work with either 7 and 8 version protocols through raw json rpc requests. And after few hours of searches I'm still curious, how to determine which version of OpenERP/Odoo server uses? Any ideas or may…
Metaphore
  • 749
  • 1
  • 7
  • 15
3
votes
1 answer

Top menustrip not showing in openerp edit form

I am stuck in a problem. I want to open edit form when a button is clicked, instead of the items form that i have selected from drop down. Edit form is opening but there is not top menu strip ribbon that has save button to save the modifications…
Saghir A. Khatri
  • 3,429
  • 6
  • 45
  • 76
3
votes
2 answers

Tree view to be called through button in OpenERP-7

I wanted to know that how may I call the tree view(of different records) through a button . Because returning form view is easy but when I tried to do exact thing for tree view it shows a list only. The scenario is that I have a search product…
Arsalan Sherwani
  • 889
  • 2
  • 25
  • 60
3
votes
3 answers

Import products into odoo (openerp)

I would like to import some products into odoo/openerp for the point of sale module. Howewer I have a category called "Chalet" which is not found during import. Where can I find the external id of the product category? This is the .csv which I would…
joelschmid
  • 828
  • 1
  • 16
  • 32
3
votes
3 answers

OpenERP custom report filename

I would like to customize reports filename. For instance, when I download an invoice, I will have something like 'Invoice.pdf' as filename. What I would like is something like 'invoice_number.pdf' but I don't know how to use dynamic file name ?
Simon Rolin
  • 940
  • 13
  • 34
2
votes
2 answers

How to apply Domain Filter on product_id in sale.order.line based on pricelist selected in sale.order?

I have defined product_id in the class sale_order_line as below: class sale_order_line(osv.osv): _inherit = 'sale.order.line' def _get_product_ids(self): return [('sale_ok', '=', True), ('state', 'in', ['sellable', 'custom']),…
2
votes
2 answers

Generating a sequence using a field value of other class in the same model file

I am trying to create a sequence that would be on the form_serial_no field of a formdownload model at the click of save button. This form_serial_no field will pick the company_short_code field of companyname model in the same models.py file and…
Ropo
  • 144
  • 1
  • 13
2
votes
2 answers

Add sheet tag inside form tag using xpath odoo 8

I need add tag inside
using xpath. I have tried below code: The sheet added but after the form tag. How can i do it?
KbiR
  • 4,047
  • 6
  • 37
  • 103
2
votes
1 answer

Odoo: Customer Payment In Custom Module

I have a button in a wizard of my custom Module. When I click on the wizard. The following fields to be filled up. Service Product Name(Will get populated automatically) Amount Payment Method Date Description Partner Name(Which will get populated…
2
votes
1 answer

Can i set default value by server action in odoo

I want to set default value in many2one field. But i want to set it by python code in server action at on-creation. Problem is that, I don't know what are the rules and regulations of writing python code in server action. Is there any way to to set…
M Tahir Noor
  • 443
  • 2
  • 10
  • 31
2
votes
1 answer

Querying an object in OpenErp 7

I have two objects,'article' and 'mvt', the logic behind the module am trying to create is that an article is defined by a name and a price, but the quantity is calculated through a set of transactions or 'mouvements', each mouvement has a realtion…
2
votes
2 answers

Openerp information messages

Is it possible to create information message with options like proceed or cancel in OpenERP ? If it is possible how to create one ?
ManishaS
  • 45
  • 6
2
votes
0 answers

Openerp asynchronous process

This is very similar to Python asynchronous processing in existing loop; I have a time consuming python method that needs to be run (user initiated) asynchronously so user can keep working on something else while method is running on the backend. I…
Mayte
  • 21
  • 1
2
votes
1 answer

Hide EXPORT option in more button in OPENERP 7

How to hide the EXPORT Option in the more button for specific user group, and how to hide the 'MORE' button for specific user group in openerp 7.