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
0 answers

openerp 7 functional field

I am trying to create a functional field by inheriting the account.invoice.line table, but I cant seem to get it working. Here is the python code class account_invoice_line(orm.Model): _name = 'account.invoice.line' _inherit =…
Eric
  • 1
  • 1
  • 4
0
votes
0 answers

OpenERP Migration to Centos 6.5

I have problem when i migrate my OpenERP addons to centos 6.5, Previously the addons runs well in Ubuntu 12.04 and Debian 7 But for now I have an error like this: 2014-03-06 03:28:35,223 21557 ERROR bac-erp openerp.tools.safe_eval: Cannot eval…
user1578301
  • 85
  • 2
  • 7
0
votes
1 answer

How to not store an integer field in openerp

I have an integer field in which i just display a value calculated with an 'on_change' function. Is there anyway to not store that value in my Database(another way than using a function field)? I also tried to put store=False but i guess it doesn't…
soukainas
  • 49
  • 1
  • 9
0
votes
1 answer

How do I get several records in a list view to update at once?

I have a editable list view with multiple records in a user defined sequence: Order # Date Sequence ------------------------------------ order #10 03-10-2014 1 order #17 03-10-2014 2 order #13 …
Ethan Furman
  • 63,992
  • 20
  • 159
  • 237
0
votes
1 answer

How to create a filter which compares only month in date type in OpenERP?

In HR module, in Employee form, I want to create a filter which gives me list of all employees whose birthday's appear in current month. Currently I am trying with static month, as below - but gives me…
0
votes
2 answers

How to add Mobile number with only integer in CRM module in OpenERP

In the CRM module there is a mobile number field. But it is a char field I can add alphabetic characters also. I'd prefer it to work with numerals only. So I replaced mobile:fields.char('Mobile',size=20) with mobile:field.integer('Mobile'), but I…
nitesh
  • 266
  • 3
  • 18
0
votes
0 answers

OpenERP 7 and Base Report Designer

I'm having difficulties with Base Report Designer for OpenERP 7. First of all, I can only make it work with Openoffice and not with Libreoffice. Then, when using OpenOffice connected to an OpenERP 7 local database, it takes forever to retrieve the…
MCL
  • 31
  • 6
0
votes
1 answer

OpenERP 7 - Can't install report_aeroo_ooo due to missing python dependencies (Uno)

I can't install report_aeroo_ooo in OpenERP 7 because there are some unmet python dependencies concerning the uno modules. Apparently, new versions of OpenOffice and LibreOffice come with a uno version for python 3 so you can't use it with python…
MCL
  • 31
  • 6
0
votes
1 answer

OpenERP7.0 When the confirmation of sales orders, message module generates a dynamic, how to achieve

I want to achieve a similar function in our own modules: when I create a record, dynamically generated in the message module, and not just in the bottom of the page. I found the sales module have similar functions, and the purchase module not,…
luckbo
  • 11
  • 3
0
votes
1 answer

Branch wise Division in CRM module in Openerp

For a company there can be different branches across the country. In Openerp,in CRM module Can i filter the Leads by Branches(here filter should be branch name) of that company.Thanks in advance. My Code…
nitesh
  • 266
  • 3
  • 18
0
votes
1 answer

Need to pass lead custom field value to partner when converting to lead to partner in OpenERP 7

I'm new to OpenERP 7 and I'm trying to pass a custom field value from Lead to Partner when I convert a Lead to Partner. I understand that I need to modify or add some functions in wizard directory of my new module (I assume I need to extend the crm…
XaRz
  • 46
  • 6
0
votes
4 answers

Unable to call python Function in Webkit report Openerp

My report file contains class AccountInvoice_Report(report_sxw.rml_parse): def __init__(self, cr, uid, name, context): super(AccountInvoice_Report, self).__init__(cr, uid, name, context=context) self.localcontext.update({ …
New_User123
  • 104
  • 11
0
votes
1 answer

openERP wizard issue with html iframe

i'm developing django website and embed OpenERP using