Hello MattLG

I don't know how the domain can be restricted via the Custumization Tool of the 
Administrator.
But here is another workaround:
Go to the folder OpenERP\Server\addons
here you'll find all the modules that are available
Find the module you would like to customize and open that folder.
There you'll see a file named like the module with .py at the end.
Open this file with an editor.
Now you need to look for the correct Object (e.g. res.partner.address)
under _columns = {
you''ll find all fields
here you add the new field 
x_using_competitor : fields.many2one('res.partner','Competitor', 
domain=[('category_id', '=', 'Competitor')] ),

If the field isn't added in the view then you have to add from.
Administration/Customization/User Interface/Views

Greetings




-------------------- m2f --------------------

--
http://www.openobject.com/forum/viewtopic.php?p=46224#46224

-------------------- m2f --------------------


_______________________________________________
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users

Reply via email to