Skip to Content
Menu
This question has been flagged
1 Reply
4318 Views

How do i create a configuration screen for a module in openerp 6.0, the configuration will have a few fields but there can be only one record in the database for the config.

How do i accomplish it in openerp-6

Avatar
Discard
Best Answer

To accomplish only one record in the for the table is little bit tricky. but we can do it by over ridding the create method. here is my sudo code.

def create(self, cr, uid, vals, context=None):
    records = self.search(cr, uid, [])
    for id in records:
        self.unlink(cr, uid, id, context)
    return super("CLASS_NAME", self).create(cr, uid, vals, context=context)

Hope it will help.

Avatar
Discard
Related Posts Replies Views Activity
2
Apr 24
3428
0
Mar 15
6589
1
Mar 15
6028
2
Mar 24
7728
2
May 23
11379