OpenERP (previously known as TinyERP) is an open source integrated enterprise resource planning (ERP) software manufactured by OpenERP s.a.

learn more… | top users | synonyms

1
vote
2answers
20 views

OpenERP 7: Adding a button on a product view

I am currently playing with openERP 7. I am doing some testing and I am building my first add-on. I want to add on every product view a "synchronize" button on a tab named "special" that has been ...
0
votes
1answer
11 views

how to initialize a default one2many fields in OpenERP

"python code for account_invoice.py and i want to know how to initialize a default one2many fields in OpenERP " class account_invoice(osv.osv): def _tax_line_default(self, cr ,uid, context=None): ...
0
votes
0answers
5 views

How to use dynamic values in domain filter?

The following is my line of code and is working, 'user_id': fields.many2one('res.users', 'Responsible', track_visibility='onchange', domain="[('emp_department_id', '=', 10)]"), Now i want replace ...
0
votes
0answers
8 views

Unable to export Groups and users list in openerp 7

I would like to export all groups customized by me, and all users created by me in openerp 7, and to import them into another database so that i get all users with their appropirate access rights. ...
0
votes
0answers
7 views

How do i clear testing entries in all forms in openerp 7 before final deployment?

After setting up the openerp system, How do i clear testing entries in all forms in openerp 7 before final deployment? Or Is there a seperate testing methodology to test openerp 7. Thanks a lot
1
vote
2answers
29 views

OpenERP Reports Creation for Beginners

I'm going to create reports for my module from OpenERP 7. as per forums i used Web kit Report method. first, from using below command i installed wkhtmltopdf on my machine. sudo apt-get install ...
0
votes
0answers
8 views

integrating .net app with opnerp

I am looking forward to design an application in .net . It will allow the submitted information to be exported to a CSV file . After that the app will be integrated to openerp. But how will it be ...
1
vote
1answer
38 views

SQL JOIN query Optimization with subqueries

I used below subquery for get attached records. i need to know is it Optimized query for my task (seems within three month its exists records more than 10,000 ).then is it support for that data load.? ...
0
votes
1answer
8 views

Error occured while adding security to a module in openerp

I have created a new module in openerp now I want to give security for the module for that I have created a folder named "security" inside my module folder and created a xml file and ...
0
votes
0answers
11 views

Restricting Create and Edit for fields with domain filter doesnt work

I have a one2many field. I would like to block the "create and Edit" when referring it in another class. The below are Working Field with domain filter <field name="prod_ser_no_id" ...
0
votes
0answers
16 views

Alert on date-field expiration - Python - OpenErp

I need to add an alert to a date type field in openerp. This is the code of my custom module: import time from datetime import datetime from osv import osv, fields class solvencia(osv.osv): _name ...
0
votes
0answers
16 views

OpenErp form designing with open object

I wanted to design a user customized form for open erp . I am using win xp. What framework should I use ?, Can I be able to do it with open object , if yes then what will be the further steps to start ...
0
votes
1answer
31 views

Error occured while overriding the search function of a class in openerp

I tried to override search function of class 'project' to filter the projects.But its not give a list, which i need. It just load all value from the model . From where I need to pass the context.Below ...
0
votes
1answer
22 views

Many to one relation not working in fields.selection() in openerp

I need to create a selection field in openerp , it's values should load from a function and also this field needs many2one relation with another table.I have created the selection field and values are ...
0
votes
2answers
48 views

Relationship between fields - classes OpenErp

I need to relate a field first declared on product.py to a custom module i'm making. The fields are in the product.product class as follows: _name = "product.product" _description = "Product" _table ...
0
votes
1answer
14 views

Openerp employee consultant contract management

I have been planning to manage a consultant employee contract in Openerp. I want to record all details of the employee which is being hired by the consultant. Including starting date , ending date , ...
1
vote
3answers
51 views

How to convert Python Multiple list to list

here is my python list when i debug it list: [[4, 1, False], [4, 2, False], [4, 3, False], [4, 4, False], [4, 5, False]] now i need to convert it to this type list list: [1,2,3,4,5] please ...
0
votes
1answer
51 views

Many2one field with our own function in openerp

I need to create many2one field.but it should need to filter data as per my logic in function.It should be selectbox also.then how to implement this in OpenERP ver 7 ? i tried with below code.But its ...
0
votes
0answers
18 views

Stock moves & multi-company

Structure: I created companies (A, B, C, D). B and C, D are children of A. Companies B,C,D has own warehouses. Company A don't have - it's main office. I need to move some stock from B to C - i use ...
0
votes
0answers
18 views

How to remove a cell from a single row table?

What is the correct way to remove a single cell from a single row table based on a condition? I have the following formula that is supposed to print "Great Client" if the word "Great" is located ...
0
votes
2answers
36 views

OpenERP 7 many2one with current month filter

here is my festival model class. class festival_registration(osv.osv): _name = "bpl.festival" _description = "Festivals" _columns = { 'relegious_places_id': ...
0
votes
1answer
21 views

OpenERP 7 absorbing tax

Need assistant in OpenERP 7 Tax absorbing. I need to know if it possible to do so in OpenERP 7 if yes, where should I add/deduct the absorbing of tax formula. Sales/Pricelist Accounting/Taxes ...
0
votes
0answers
24 views

Alert on custom module - OpenErp - Python

I need to add an alert code based on a date field, the alert can be in the form of the crm app alerts (opportunities, leads... etc) I don't know where to look or study this, i just need to add an ...
0
votes
2answers
55 views

OpenERP many2one field with function

I need to create many2one field.but it should need to filter data as per my logic in function.then how to implement this in OpenERP ver 7 ? i tried with below code.but its not give a list.just load ...
0
votes
0answers
19 views

OpenERP Home Action & Menu Action

I'm trying to customize users home page but without success so far. I have tried a few values in both the "Home Action" and the "Menu Action" fields but I always get messaging feed on startup. How ...
0
votes
3answers
28 views

TypeError: <function context_today at 0xaaa7064> is not JSON serializable

I need to return date to the date field when i change my division Here is my Python code tea_worker_ids = self.pool.get('bpl.worker').search(cr, uid, [('bpl_division_id', '=', division_id), ...
0
votes
1answer
26 views

Openerp javascript debugging

Is there a way to debug the javascript code from an openerp module? I am using Eclipse. I tried Firebug, but the javascript code is already minified and is very hard to follow.
0
votes
1answer
38 views

Error Occuring during module upgrade in Openerp

I am new in openerp. I have created a new module, it was successfully installed and everything works fine. But when I try to upgrade the module I got an error like this: > 2013-05-09 14:59:45,117 ...
1
vote
1answer
23 views

how create a rule for user can only see their own customers in openerp

I need to create a rule to a user can only see their own customers (SALES / CUSTOMERS in OpenERP menu), similar at rules "personal phone calls" or "personal initiative" in the "Sales / User: Own Leads ...
0
votes
0answers
26 views

How to tell to buildout to use setup.py from subdirectory?

I'm trying to install aeroolib with buildout. Unfortunately when I get module from bzr there is one more level, so setup.py is not inside aeroolib, but inside aeroolib/aeroolib. How can I tell ...
0
votes
1answer
28 views

how can I get logo of curent comoany in openERP and us it in webkit Report

how can I get logo of curent comoany in openERP and us it in webkit Report without pass the name of Imge to mako file
0
votes
2answers
46 views

How to add dictionary (list object) to dictionary object in Python

here is my error when i going to do that in my code TypeError: unhashable type: 'list' Here is my python dictionary list object. in my code tea_list_data [ {'bpl_division_id': 1, 'over_kgs': 2, ...
0
votes
1answer
31 views

OpenERP 7 Reports Error

report.bpl.daily.transaction (<type 'exceptions.KeyError'>, KeyError(u'report.bpl.daily.transaction',), <traceback object at 0xb1911f04>) now I'm going to report generating part.i ...
0
votes
1answer
46 views

How to access Pgadmin3 on Ubuntu - OpenErp

On windows the allinone package automatically installs the pgadmin3 manager. On Ubuntu i've installed the all-in-one .deb package of openerp 7, it comes with the postgresql db on it, but i just can't ...
0
votes
0answers
39 views

Adding an 'alert' to custom module

I have a module called solvencia.py which manages the solvencies for my client. I'll need to add an alert or alarm, based on the Fecha_de_Vence field: import time from datetime import datetime from ...
0
votes
0answers
10 views

openerp Filtering messages not working on the partner form view

I prepare a domain filter on the message_ids but this not work, what is the problem? I want to filter all emails only for this view, related to the partner, on the parter form. <?xml ...
0
votes
0answers
20 views

strategy for a gnome shell extension to communicate with xml-rpc

I am trying to make a gnome shell extension that controls parts of OpenERP. So far I found it difficult to find documentation so I am asking for some directions to get started properly. OpenERP has ...
0
votes
0answers
15 views

How to Merge Purchase Requisitions OpenERP 7 [ bug ? ]

I have 3 questions to sort out regarding OpenERP Purchase flow. (1.) can we merge multiple Purchase Requisitions ? (because its difficult to manager to send one by one sometimes.) ex : in XYZ company ...
0
votes
2answers
34 views

Product UOM field not showing on Purchase and Quotations - OpenErp

I'm using th purchase app on OpenErp. I know this field is declared on purchase.py and called on purchase_view.xml but strangely it doesn't appears when i'm trying to add a new product quotation or ...
0
votes
1answer
14 views

Internal Server Error right after installation of OpenERP 7.0

I am new at OpenERP and I just installed OpenERP 7.0 on Ubuntu 12.04 using the All-In-One ".deb" file. But when I tried to open it it gave me this error message: Internal Server Error: The server ...
0
votes
1answer
21 views

location of the res.users model definition

When i retrieve a record from openERP with xml-rpc of the res.users model, for company_id i get following value company_id : System.Object[] I assume this is because of a many2one relationship. ...
1
vote
1answer
34 views

OpenERP 6.0.4 XML Domain by Python Context List

I've been trying to create a domain filter on an XML domain for the past few days with no positive results as yet. I have a field on my form tied to a function def _return_reviewer_exempt(self, cr, ...
1
vote
0answers
51 views

OpenERP Workflow (ver 7)

I go through openerp doc for create work flow to my model.its worked correctly in first 3 stages. ex : 'new','assigned','negotiation' but not worked for 'won','lost' levels. here is my relevant codes ...
0
votes
1answer
14 views

How to allow write rights only to specific users building a new module in OpenErp?

I'm new to OpenErp and I'm trying to undestand access rights writing a new module. Let's say I have this module called Project, with title, description and a many2many relation with res.users called ...
0
votes
0answers
15 views

Openerp many2one field in qweb

I would like to add a many2one field in a custom widget so I have to add it in the qweb template but I have no idea how to do this ? Thanks a lot in advance!
0
votes
1answer
30 views

Error In hr_recruitment module in open erp 7

I am Vaibhav new in open ERP 7 and got error while inheriting hr_recruitment module. I override search method for hr_recruitment to filter out applications I added job_code char field in hr_job and ...
0
votes
1answer
52 views

How to add approval workflow OpenERP 7

Here shows my model class which i need to add approval work flow. class bpl_work_update(osv.osv): _name = "bpl.work.update" _description = "BPL Work Update" _columns = { ...
1
vote
3answers
50 views

How to Date deduction with Python?

here shows date of birth field in my openerp model 'date_of_birth': fields.date('Date of Birth'), need to change its default date to 25years earlier.because its easier to user to pick year. ( in ...
0
votes
1answer
42 views

How to modify css in OpenERP 7?

here is my requirement.i already created worker registration screen.its shows below i need to change align and set EPF No field after Employer No field(with no label). here shows my code in ...
1
vote
1answer
41 views

Create OpenERP model interaction with HR_Payroll

I am new to OpenERP 7 I was create my own model to store student data , Now I need to deal with the objects in OpenERP 7 for example how to view Basic salary for Employee in My New Model or in other ...

1 2 3 4 5 17