[Openerp-community] buttons in list views

2011-07-22 Thread Viktor Nagy
Hi, I would like a view as the following: mrp.bom.change.production mrp.bom tree

[Openerp-community] set context depending on the current record in ir.actions.act_window

2011-08-02 Thread Viktor Nagy
hi, I would like to set the context of an action given in a record xml tag depending on some value of the model instance being loaded is this possible? Viktor ___ Mailing list: https://launchpad.net/~openerp-community Post to : openerp-community@li

[Openerp-community] running test files from the cli

2011-08-15 Thread Viktor Nagy
Hi, I've tried to play the good patriot and write a test for a coming commit, but can't run the pre-existing yaml test file. Could someone help me out? I have a db loaded with demo data and some basic modules (accounting is important now only), I've edited account/test/account_customer_invoice.ym

[Openerp-community] how to get ir.attachment instance as a file-like object?

2011-09-12 Thread Viktor Nagy
Hi, I'm building a wrapper-addon for hylafax (lp:~toolpart/openobject-addons/sendfax), and would need a simple way to get back ir.attachment objects as file-like objects (actually, I just need a read method. Could someone post me a way to do it, please? thanks, Viktor ___

[Openerp-community] how to define an eval'd domain?

2011-09-14 Thread Viktor Nagy
hi, I have some custom product views where I would like to restrict the shown categories using a domain attribute. The categories to be restricted for are defined in xml, thus using ref and eval would do the work. But the following does not work product.consumable.inherit

[Openerp-community] auto completion for char widgets

2011-09-30 Thread Viktor Nagy
Hi, I would like to know if there is already any support for auto-completion for non m2o widget, especially simple char fields? If not, then I would be interested in implementing it. So all your comments, suggestions are welcome. Viktor ___ Mailing lis

[Openerp-community] treegrid & colors

2011-10-12 Thread Viktor Nagy
is it possible to use the colors attribute in a hierarchical tree? (I mean field_parent set) if not, could someone give me some ideas where to add this functionality? as far as I see it's in listgrid.py in web client. What would be the equivalent to this for trees? treegrid.py or tree_view.py? th

[Openerp-community] workflow depending on user

2011-10-12 Thread Viktor Nagy
hi, I'm thinking on how to implement a project management workflow where every user should be able to do everything with tasks created by himself, but for assigned tasks (created by the project manager or someone else) they should only be able to some limited set of functionalities, like making t

[Openerp-community] from addons import x and addons_path list

2011-10-17 Thread Viktor Nagy
hi, in my server config file I've specified the addons_path as a list addons_path = /home/akasha/versioning/bzr/openerp-6/addons/core,/home/akasha/versioning/bzr/openerp-6/addons/installed now I'm trying to install a module that would like to import base_calendar, and the module install fails wi

[Openerp-community] most effective b-q-i test running

2011-10-20 Thread Viktor Nagy
hi, I would like to run base_quality_interrogation locally and often from the buildbot addon I've found out more or less the code to be called, but even a single run takes ages. Is there a recommended way to run test files quickly and reliably with openerp? my shell script (to replace $1) is the

[Openerp-community] bqi script error when importing files

2011-10-21 Thread Viktor Nagy
hi, I'm trying to run the bqi script to import test files written in yaml BQI> import -m aperam -l yaml -t ../../addons/toolpart/aperam/test/test_slit.yml Trying to import ~/addons/toolpart/aperam/test/test_slit.yml as yaml for aperam in test mode xmlrpc exception: warning -- Object Error Object

[Openerp-community] webkit report headers don't show up in pdf

2011-10-25 Thread Viktor Nagy
hi, I've just started to play around with report_webkit, and was using the sample addon to find out its features. I've found all the setting (I guess), and managed to put the "Base Sample" header with the C2C logo to the sample report when I switch on debug mode for the report, but the logo and te

[Openerp-community] Translating "Cancel" invoice

2011-11-08 Thread Viktor Nagy
hi, I would like to find a solution to a translation problem. The problem is relatively simple: One option on the cancel/refund invoice wizard is to choose an invoice type "Cancel". Actually, there are languages where Cancel invoice and Cancel button can not be translated with the same string, but

[Openerp-community] wrong ir.translations "field name" value for webkit report

2011-11-10 Thread Viktor Nagy
hi, I'm writing a mako template for a sale order, the strings are loaded to be translated, but the "translating machine" can not find it after some work I've found out that the reason behind this problem is that the field name in the ir_translations table is populated with data like "addons/laxun

Re: [Openerp-community] wrong ir.translations "field name" value for webkit report

2011-11-10 Thread Viktor Nagy
your pointer was correct, thanks for your help On Thu, Nov 10, 2011 at 10:43 PM, Lorenzo Battistini < lorenzo.battist...@agilebg.com> wrote: > 2011/11/10 Viktor Nagy : > > > > after some work I've found out that the reason behind this problem is > that > > th

[Openerp-community] 6.1 view relaxng changes

2011-11-30 Thread Viktor Nagy
hi, is there a documentation about the changes in relaxng from 6.0 to 6.1? I've just received these error messages: [2011-12-01 04:21:34,372][stonemine] ERROR:init::15:0:ERROR:RELAXNGV:RELAXNG_ERR_NOELEM: Expecting an element field, got nothing [2011-12-01 04:21:34,372][stonemine] ERROR:init::15:

[Openerp-community] storno of a storno invoice

2012-01-02 Thread Viktor Nagy
hi, I run into the problem of creating a storno invoice of a storno invoice what is the problem? original invoice has positive invoice lines, and title should be (by regulation) Invoice first storno invoice has negative invoice lines, and title should be "Storno Invoice" second storno invoice has

[Openerp-community] setting the context in act_window

2012-01-30 Thread Viktor Nagy
hi, is it possible to set the context from a database query in an ir.actions.act_window definition? my example code is here http://pastebin.com/kciDSURZ thanks, Viktor ___ Mailing list: https://launchpad.net/~openerp-community Post to : openerp-com

[Openerp-community] adding custom views to the web client

2012-07-31 Thread Viktor Nagy
hi, we are moving a 5.0.7 OpenERP installation to 6.1 we have some web-client based reports (not pdf) of the following form Product | Week 1 | Week 2 | Week 3 | ... | Week 12 product 1| 100 | 100 | 100 | ...| 100 product 2| 100 | 100 | 100 | ...| 100 product

Re: [Openerp-community] adding custom views to the web client

2012-08-01 Thread Viktor Nagy
erver all in all, it's indeed possible to implement 100% custom views in OpenERP 6.1 ! On Tue, Jul 31, 2012 at 11:41 PM, Viktor Nagy wrote: > hi, > > we are moving a 5.0.7 OpenERP installation to 6.1 > > we have some web-client based reports (not pdf) of the following form >

[Openerp-community] openerp 7.0 roadmap

2012-08-03 Thread Viktor Nagy
I've read today's blog post about the new graph look in version 7.0, it looks impressive and I would like to know whether there is a development roadmap for OpenERP, I know that there were such plans and discussions, but couldn't find anything specific thanks for your answer, Viktor __