openerp

OpenERP, data restore problem

Dears, I am trying to restore a database backup through the client interface of open ERP. A message appeared "Could not restore DB". I am using Postgresql 8.4.1 Please help! ...

Problem installing OpenERP server with buildout !

I'm trying to deploy OpenERP with a buildout and my own piece of code. In fact I would like to build a complete deployement structure allowing me to use OpenERP with custom modules and patch. First of all, before adding any personnal configuration, I was trying to create a buildout which will have the responsability to configure everyth...

Integrating Drupal with OpenERP.

Hi, We have a requirement that we need to integrate OpenERP with Drupal. I investigated but could not find any Drupal addon/module which will do the desired job. I also investigated and found that OpenERP is based on client server architecture, where Server exposes XMl-RPC/SOAP based webservices and client uses these services for all ...

hide button according to group

I have a defined groups and i want to display a button according a group. <button name="assign_ticket" states= "pending_assignment,draft" groups="group_centricare_care_agents" string="Assign to me"/> i want this button to be displayed to the group "roup_centricare_care_agents" but when adding groups tag it cause an exception. P.S.: T...

School Management with OpenERP

I want to make an School Management. Any once let me know how to make it by using OpenERP? ...

OpenERP cache features

I want to cache some results in my OpenERP module, so I dug around a bit and found the cache decorator. Unfortunately, the most documentation I've been able to find is in the class declaration: Use it as a decorator of the function you plan to cache Timeout: 0 = no timeout, otherwise in seconds Can anybody recommend a good example ...

Meta programming in OpenERP

Here a way to develop OpenERP class stock_incoterms(osv.osv): _name = "stock.incoterms" _description = "Incoterms" _columns = { 'name': fields.char('Name', size=64, required=True), 'code': fields.char('Code', size=3, required=True), 'active': fields.boolean('Active'), } _defaults = { 'active': lambda *a: True, } stoc...

Avoid OpenERP audittrail bug

I'd like to manage OpenERP user's activity by installing the audittrail module. After creating some rules ( define which user, which object and which activity (create, update..) will be monitored). I update a product to see it works. When I've tried to update a product i got the system error. Seeing the log, I get [2010-08-31 12:53:35,0...

what is the use of related fields in openerp ?

I want to know the something about related fields, how it can be helped, and for which kind of scenario I should use fields.related, if anybody can provide small example for real use of fields.related it would be great Thanks in advance....... ...

Openerp : new module is not showing into module list

Basically I have two problems: My newly coded module is not showing into module list , so I am unable to install. I want to debug my module before installation , is there any way through i can do that ...

Optional parameters in OpenERP field definitions

I couldn't find any documentation of the optional parameters that are available to all field types in OpenERP models, so I added what I knew to the fields documentation page. (Until the web site gets regenerated, you can see it in the documentation source.) There are a bunch of parameters that I don't understand, so I'd appreciate help...